Skip to content

Commit 675adfa

Browse files
V48 (specification-implementation): Drop settle base; rename to read-synthesized-settled
Remove generic-asset-packs/settle — settlement is only the read buy path. Rename settled-read-synthesized → read-synthesized-settled (ReadSynthesizedSettledAssetPack, buildReadSynthesizedSettledAssetPack). settle-asset-pack-pipeline result field: readSynthesizedSettledAssetPack.
1 parent 43ad185 commit 675adfa

31 files changed

Lines changed: 95 additions & 223 deletions

BITCODE_SPEC_V48_NOTES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2060,7 +2060,7 @@ Settlement law upgraded for commercial read buy:
20602060
- BTD: `contracts/` and `src/erc1155/` are dual-maintained (not codegen); see
20612061
`packages/btd/README.md`.
20622062

2063-
## Pipeline product names + SettledReadSynthesizedAssetPack (2026-07-14)
2063+
## Pipeline product names + ReadSynthesizedSettledAssetPack (2026-07-14)
20642064

20652065
Product pipeline directories/packages renamed:
20662066

@@ -2076,4 +2076,4 @@ generic-asset-packs three products over shared synthesis base:
20762076

20772077
- DepositSynthesizedAssetPack
20782078
- ReadSynthesizedAssetPack
2079-
- SettledReadSynthesizedAssetPack (`settled-read-synthesized/`) — BTD rights, BTC finality, ERC1155 co-own, PR delivery after settle-asset-pack-pipeline
2079+
- ReadSynthesizedSettledAssetPack (`read-synthesized-settled/`) — BTD rights, BTC finality, ERC1155 co-own, PR delivery after settle-asset-pack-pipeline

FAMILIARIZATION.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,7 @@ uapi → HTTP + React adapters only
140140
@bitcode/generic-measurements-needinesses Needinesses surface (Gate 4)
141141
142142
@bitcode/generic-asset-packs-synthesis SynthesizeAssetPacksAbsolutesMeasureAgent + catalogs
143-
@bitcode/generic-asset-packs-settle settle-asset-pack-pipeline (Gate 6 surface)
144-
143+
@bitcode/ ↑
145144
@bitcode/asset-packs-pipelines-domain SDIVF pipeline host (static-analysis tools, phases)
146145
```
147146

@@ -225,15 +224,13 @@ inside `agent-generics` until inverted onto pure Execution + LLM registry.
225224
226225
@bitcode/generic-asset-packs-synthesis SynthesisAssetPack (only AP base)
227226
@bitcode/generic-asset-packs-synthesis Synthesize measurement catalogs / Absolutes agent
228-
@bitcode/generic-asset-packs-settle Settle product surface
229-
227+
@bitcode/ ↑
230228
@bitcode/asset-packs-pipelines-* synthesize-deposits / -reads / settle-reads
231229
@bitcode/asset-packs-pipelines-domain agents, tools, deposit options helpers
232230
```
233231

234232
Package paths: `packages/asset-packs-generics/`, `packages/generic-asset-packs/*`.
235-
Packages: `@bitcode/asset-packs-generics`, `@bitcode/generic-asset-packs-synthesis`, `@bitcode/generic-asset-packs-settle`.
236-
233+
Packages: `@bitcode/asset-packs-generics`, `@bitcode/generic-asset-packs-synthesis`, `@bitcode/
237234
| Layer | Type | Role |
238235
| --- | --- | --- |
239236
| Primitive | `AssetPack` | identity + source binding + patch descriptor + delivery |
@@ -464,8 +461,7 @@ Grouped by role. Names are `@bitcode/<name>` unless noted.
464461
| `generic-measurements-tech-types` | Tech/stack signals as absolute measurement vocabulary |
465462
| `asset-packs-generics` | AssetPack protocol primitive (`@bitcode/asset-packs-generics`) |
466463
| `generic-asset-packs-synthesis` | Synthesize measurement catalogs + product AbsolutesMeasureAgent |
467-
| `generic-asset-packs-settle` | Settle product surface (Gate 6) |
468-
| `llm-generics` | Pure LLM call contracts |
464+
| `| `llm-generics` | Pure LLM call contracts |
469465
| `generic-llms-models` | Model configs + USD pricing (`@bitcode/generic-llms-models`) |
470466
| `registry` | Hierarchical registry (Prompt is a Registry) |
471467
| `prompts` | Prompt + PromptPart + **all** raw prompt parts |

internal-docs/BITCODE_SOURCE_LAYOUT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ packages/generic-<family>/ # README only (no package.json)
218218
| `mcp-generics/` | (package root) | `@bitcode/mcp-generics` |
219219
| `generic-mcps/` | `bitcode/` | `@bitcode/generic-mcps-bitcode` |
220220
| `asset-packs-generics/` | (package root) | `@bitcode/asset-packs-generics` |
221-
| `generic-asset-packs/` | `synthesis/` (base of 3 products), `deposit-synthesized/`, `read-synthesized/`, `settled-read-synthesized/`, `settle/`, `synthesis/` (deprecated) | `@bitcode/generic-asset-packs-*` |
221+
| `generic-asset-packs/` | `synthesis/` (base of 3 products), `deposit-synthesized/`, `read-synthesized/`, `read-synthesized-settled/`, `synthesis/` (deprecated) | `@bitcode/generic-asset-packs-*` |
222222
| `execution-generics/` | (package root) | `@bitcode/execution-generics` |
223223
| `executor-generics/` | (package root) | `@bitcode/executor-generics` |
224224
| `generic-executors/` | (package root) | `@bitcode/generic-executors` |

packages/asset-packs-generics/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ provenance binding, path+op patch, and **measurements** (via
1212
→ @bitcode/generic-asset-packs-synthesis # shared synthesize base
1313
→ @bitcode/generic-asset-packs-deposit-synthesized
1414
→ @bitcode/generic-asset-packs-read-synthesized
15-
→ @bitcode/generic-asset-packs-settle # settle surface
16-
→ @bitcode/asset-packs-pipelines-* # product pipelines
15+
→ @bitcode/ → @bitcode/asset-packs-pipelines-* # product pipelines
1716
```
1817

1918
Measurements are **part of the AssetPack shape**, not an optional product add-on:

packages/asset-packs-generics/src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* → SynthesisAssetPack # generic-asset-packs/synthesis (base of all 3 products)
77
* → DepositSynthesizedAssetPack
88
* → ReadSynthesizedAssetPack
9-
* → SettledReadSynthesizedAssetPack
9+
* → ReadSynthesizedSettledAssetPack
1010
*
1111
* Measurements are part of the primitive shape via @bitcode/measurement-generics
1212
* (nested absolutes | needinesses kinds). Product packages refine commercial

packages/asset-packs-pipelines/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ import { factorySynthesizeReadAssetPacksSDIVFPipeline } from '@bitcode/asset-pac
2626
import { factorySettleAssetPackSimplePipeline } from '@bitcode/asset-packs-pipelines-settle-asset-pack-pipeline';
2727
```
2828

29-
AssetPack product types: `@bitcode/generic-asset-packs-{synthesis,deposit-synthesized,read-synthesized,settled-read-synthesized}`.
29+
AssetPack product types: `@bitcode/generic-asset-packs-{synthesis,deposit-synthesized,read-synthesized,read-synthesized-settled}`.

packages/asset-packs-pipelines/domain/jest.config.cjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,7 @@ module.exports = {
4141
'^@bitcode/asset-packs-generics/(.*)$': '<rootDir>/../../asset-packs-generics/src/$1',
4242
'^@bitcode/generic-asset-packs-synthesis$': '<rootDir>/../../generic-asset-packs/synthesis/src/index.ts',
4343
'^@bitcode/generic-asset-packs-synthesis/(.*)$': '<rootDir>/../../generic-asset-packs/synthesis/src/$1',
44-
'^@bitcode/generic-asset-packs-synthesis$': '<rootDir>/../../generic-asset-packs/synthesis/src/index.ts',
45-
'^@bitcode/generic-asset-packs-settle$': '<rootDir>/../../generic-asset-packs/settle/src/index.ts',
46-
'^@bitcode/agent-generics/agents/factories$': '<rootDir>/../../agent-generics/src/agents/factories.ts',
44+
'^@bitcode/generic-asset-packs-synthesis$': '<rootDir>/../../generic-asset-packs/synthesis/src/index.ts', '^@bitcode/agent-generics/agents/factories$': '<rootDir>/../../agent-generics/src/agents/factories.ts',
4745
'^@bitcode/agent-generics/types$': '<rootDir>/../../agent-generics/src/types.ts',
4846
'^@bitcode/generic-llms$': '<rootDir>/../../generic-llms/registry/src/index.ts',
4947
'^@bitcode/generic-llms/defaults$': '<rootDir>/../../generic-llms/defaults/src/index.ts',

packages/asset-packs-pipelines/domain/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,7 @@
6868
"@bitcode/generic-measurements-measure-agent": "workspace:*",
6969
"@bitcode/generic-measurements-absolutes": "workspace:*",
7070
"@bitcode/asset-packs-generics": "workspace:*",
71-
"@bitcode/generic-asset-packs-synthesis": "workspace:*",
72-
"@bitcode/generic-asset-packs-synthesis": "workspace:*",
73-
"@bitcode/generic-asset-packs-settle": "workspace:*"
71+
"@bitcode/generic-asset-packs-synthesis": "workspace:*"
7472
},
7573
"devDependencies": {
7674
"@types/node": "^20.0.0",

packages/asset-packs-pipelines/settle-asset-pack-pipeline/jest.config.cjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ module.exports = {
3232
'^@bitcode/btd/erc1155$': '<rootDir>/../../btd/src/erc1155/index.ts',
3333
'^@bitcode/btd/(.*)$': '<rootDir>/../../btd/src/$1',
3434
'^@bitcode/generic-vcs-git$': '<rootDir>/../../generic-vcs/git/src/index.ts',
35-
'^@bitcode/generic-asset-packs-settled-read-synthesized$':
36-
'<rootDir>/../../generic-asset-packs/settled-read-synthesized/src/index.ts',
35+
'^@bitcode/generic-asset-packs-read-synthesized-settled$':
36+
'<rootDir>/../../generic-asset-packs/read-synthesized-settled/src/index.ts',
3737
'^@bitcode/generic-asset-packs-read-synthesized$':
3838
'<rootDir>/../../generic-asset-packs/read-synthesized/src/index.ts',
3939
'^@bitcode/generic-asset-packs-synthesis/synthesis-asset-pack$':

packages/asset-packs-pipelines/settle-asset-pack-pipeline/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@bitcode/generic-pipelines-simple": "workspace:*",
1818
"@bitcode/generic-vcs-git": "workspace:*",
1919
"@bitcode/btd": "workspace:*",
20-
"@bitcode/generic-asset-packs-settled-read-synthesized": "workspace:*",
20+
"@bitcode/generic-asset-packs-read-synthesized-settled": "workspace:*",
2121
"@bitcode/generic-asset-packs-read-synthesized": "workspace:*"
2222
},
2323
"devDependencies": {

0 commit comments

Comments
 (0)