@artblocks/abx-cli 0.1.0-alpha.20 → 0.1.0-alpha.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/CHANGELOG.md +229 -0
  2. package/dist/commands/deploy.d.ts.map +1 -1
  3. package/dist/commands/deploy.js +300 -31
  4. package/dist/commands/deploy.js.map +1 -1
  5. package/dist/commands/project.d.ts.map +1 -1
  6. package/dist/commands/project.js +21 -5
  7. package/dist/commands/project.js.map +1 -1
  8. package/dist/commands/reads.d.ts.map +1 -1
  9. package/dist/commands/reads.js +33 -3
  10. package/dist/commands/reads.js.map +1 -1
  11. package/dist/commands/scaffold.d.ts.map +1 -1
  12. package/dist/commands/scaffold.js +17 -9
  13. package/dist/commands/scaffold.js.map +1 -1
  14. package/dist/commands/storage.d.ts.map +1 -1
  15. package/dist/commands/storage.js +11 -3
  16. package/dist/commands/storage.js.map +1 -1
  17. package/dist/flag-allowlists.d.ts +53 -0
  18. package/dist/flag-allowlists.d.ts.map +1 -0
  19. package/dist/flag-allowlists.js +148 -0
  20. package/dist/flag-allowlists.js.map +1 -0
  21. package/dist/flags.d.ts +2 -2
  22. package/dist/flags.d.ts.map +1 -1
  23. package/dist/flags.js.map +1 -1
  24. package/dist/kind.d.ts +8 -3
  25. package/dist/kind.d.ts.map +1 -1
  26. package/dist/kind.js +25 -0
  27. package/dist/kind.js.map +1 -1
  28. package/dist/main.js +41 -16
  29. package/dist/main.js.map +1 -1
  30. package/dist/ownerops.d.ts.map +1 -1
  31. package/dist/ownerops.js +87 -5
  32. package/dist/ownerops.js.map +1 -1
  33. package/dist/remote.d.ts.map +1 -1
  34. package/dist/remote.js +8 -2
  35. package/dist/remote.js.map +1 -1
  36. package/dist/update-check.d.ts +25 -0
  37. package/dist/update-check.d.ts.map +1 -1
  38. package/dist/update-check.js +40 -6
  39. package/dist/update-check.js.map +1 -1
  40. package/package.json +6 -6
  41. package/skill/SKILL.md +7 -5
  42. package/skill/reference/code-projects.md +22 -0
  43. package/skill/reference/decisions.md +26 -0
  44. package/skill/reference/operating.md +3 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,234 @@
1
1
  # @artblocks/abx-cli
2
2
 
3
+ ## 0.1.0-alpha.21
4
+
5
+ ### Patch Changes
6
+
7
+ - 528c6c6: Close most of the ERC-1155 edition CLI parity gaps (B28), give every command one unknown-flag posture
8
+ (B30), and add the per-holder edition balance read (B31).
9
+
10
+ Each B28 item was checked against the tree before any code was written: **none needed a Solidity
11
+ change.** The contracts and SDK ops were already per-id and standard-neutral, so all of this is CLI
12
+ plumbing and **no redeploy, address churn, or Etherscan re-verification is involved.**
13
+
14
+ **Edition custody is now symmetric with the 721 side** — each lane verified live on testnet, not just
15
+ by dry run:
16
+
17
+ - **`deploy-series --copies` gains pattern 2: off-chain image, on-chain JSON, nothing to run.** The 721
18
+ Series had the whole branch; `EditionImage` never got it, so a multi-artwork **raster** edition had no
19
+ no-server option at all. A uniform file extension uploads the folder as ONE directory and bakes a
20
+ single `{id}`-substituting collection field, so the collection costs one field instead of N; mixed
21
+ extensions fall back to per-id `url` fields. Verified at
22
+ `0x4e7e2d1aA951d99046323a620a2a5891b1195452`, where `uri(0|1|2)` resolve to `…/0.png`, `…/1.png`,
23
+ `…/2.png` off one template and all three fetch at their source byte sizes. This gap had real design
24
+ consequences: a cold agent asked for "3 artworks × 25 copies each", hit the SVG-only refusal, and
25
+ split the collection into **three separate single-artwork contracts** to get the permanence it wanted.
26
+ - **`--onchain-image` works on both edition lanes, on the hot AND wallet lanes.** It was refused
27
+ outright on `deploy-series --copies` and hot-lane-only on `deploy --copies`; one sign session now
28
+ covers the chunk writes plus the deploy, and the staging txs are counted in the `approvals` line the
29
+ session's own total is derived from. Verified at `0x0A71382207a980c23E26a54F2b815072da41761A`:
30
+ `uri(id)` returns a `data:image/svg+xml;base64` image with zero `http(s)` anywhere in the document.
31
+ `EditionImage` also now treats `--onchain-image` as implying on-chain resolution — every sibling lane
32
+ already did, and without it the flag would have demanded a resolver URL for a drop whose bytes are
33
+ already on-chain.
34
+ - **`deploy-code --copies` accepts on-chain `--dep`/`--dep-registry`.** `EditionCode` already inherited
35
+ the `Dependencies` extension and called `_initDependencies()`; the legs come from the SDK's shared
36
+ `dependencySetupCalls`, so the two lanes cannot encode `setDependency` differently. So "an edition of
37
+ my p5 sketch, with p5 coming from the chain" is a real lane now — verified on Sepolia at
38
+ `0xC403CB9B956Ca814F1934d8d2A44fc1D2023EFB3`, where `abx verify` reports **chain-complete — every
39
+ dependency resolves to proven on-chain bytes; no server, gateway, or CDN in the graph**, with a 233 KB
40
+ inline `animation_url`.
41
+ - **The cold lane stays refused for `--onchain-image`**, deliberately and identically on all four paths:
42
+ staging is a sequence where each chunk tx's receipt feeds the next, so it cannot be signed offline.
43
+ This replaces an edition-specific "tracked as a follow-up" note with the real, shared reason.
44
+
45
+ Still open on the edition lanes, and recorded in B28: `deploy-code --copies` has no `--code-dir` or
46
+ field renderers, and `deploy-code --resume` has no edition path (that one is genuinely new per-id diff
47
+ logic, not a port).
48
+
49
+ **Every command now has one unknown-flag posture.** Roughly 35 commands — `state`, `add`, `index`,
50
+ `migrate`, `configure-param`, `set-field`, `set-royalty`, `set-minter`, `pause`/`unpause`, `verify`, … —
51
+ silently ignored an unrecognized flag, so `abx set-royalty --bsp 500` did something quietly different
52
+ from what was asked. Allowlists now live in one file and are applied once in the dispatcher; it warns
53
+ rather than refuses (a false refusal would break a working script, and `deploy*` still refuses via its
54
+ own exhaustive sets).
55
+
56
+ The obvious implementation — deriving each allowlist from the command's own `usage` string — was tried
57
+ and **rejected on evidence**: shared helpers read flags that appear in no usage string anywhere
58
+ (`storageOverrides()` reads twelve, pulled in by six commands; `--remote-token` by five), so deriving
59
+ would have warned on valid flags. That is worse than the silence it replaces, because a notice people
60
+ learn to distrust stops working for the real cases too. The sets are explicit instead, composed from
61
+ named groups, and a test reads each command's `--help` to assert every flag it **documents** is accepted
62
+ — the direction that would produce false warnings.
63
+
64
+ **`abx tokens <addr> --holder 0x..`** adds a `held` column — `balanceOf(holder, id)` per id, a live head
65
+ read. It answers the one question supply/cap cannot, and the one a funded agent had to leave blank after
66
+ transferring a copy (it correctly declined to fabricate the recipient's balance rather than guess).
67
+ Refused on a 721, where the owner column already answers it. Also: `deploy-series`' `[2] On-chain
68
+ renderer` step now prints the renderer address instead of an empty header, and `abx verify` no longer
69
+ ends in two ⚠ on a healthy fully-on-chain **image** drop (the code-project checks are scoped to the code
70
+ twins; a static drop has no program and no `animation_url` by design).
71
+
72
+ - 528c6c6: ERC-1155 editions: the trust-anchor and on-chain-URI checks told the truth about 721s only, and four
73
+ membrane gaps around them (2026-08-05 wave-4 agent sweep — 12 cold agents, one funded end-to-end run
74
+ on Base Sepolia).
75
+
76
+ The 1155 contracts themselves were fine: a funded run took an edition from deploy through
77
+ `tokenuri` → mint more copies → transfer one copy → lower the per-id cap, verifying every step
78
+ against the chain. What shipped wrong was everything that _describes_ an edition.
79
+
80
+ - **`abx verify` reported EVERY canonical edition as `canonical: NO`.** `detectCanonicalFactory`
81
+ probed only the three 721 anchors and, on no match, fell back to the 721 1/1 factory — whose
82
+ `isAbxClone` answers **false**, not "unknown". So the one signal platforms allowlist against was
83
+ confidently inverted for the entire edition line (the function's own docstring promised
84
+ "canonicity just shows unverified, never wrong"). All six anchors are now probed. **Editions
85
+ registered before this fix keep the wrong factory in the local projection** — `abx forget <addr>`
86
+ then `abx add <addr>` re-detects it.
87
+ - **`abx verify`'s on-chain-URI probe called the ERC-721 `tokenURI` selector on editions**, which
88
+ exposes `uri(id)`. It reverted for every edition, so verify could never confirm that a
89
+ fully-on-chain edition resolves — and it printed the raw multi-line viem dump (Contract Call /
90
+ args / Docs / Version) into a creator-facing readout. The probe now switches on `contractType`
91
+ (matching `reconstruct.ts`, which already did), reports which accessor it read so an edition is
92
+ never described in 721 terms, and readout errors are trimmed to their first line.
93
+ - **An address with no contract was reported as a specific type: `OneOfOneImage`.**
94
+ `detectTokenKind`'s three probes are each `try/catch → false`, so nothing-deployed and
95
+ no-extensions-composed were indistinguishable and the ladder fell through to its `1of1` default.
96
+ `abx set-max-supply` and `abx minter buy` then told edition owners _"…is a OneOfOneImage (721) —
97
+ drop your edition flags"_ for a mistyped address or, far more often, the wrong `ABX_CHAIN` (the
98
+ default is base-sepolia, so any Sepolia contract hit this immediately) — advice that removes the
99
+ _correct_ flags. The existence check now lives inside `detectTokenKind`, so all 13 call sites
100
+ inherit it; it fails **open** on an unreadable `getCode`, so an RPC blip never becomes a
101
+ "no contract" claim.
102
+ - **`abx transfer --token-id <n>` silently transferred id 0.** `transfer` spells the id `--token`
103
+ while every sibling command (`mint`, `set-max-supply`, `minter …`) spells it `--token-id`, and an
104
+ unrecognized flag was simply ignored — so an agent that learned the name from `mint` moved the
105
+ **wrong artwork** with no warning. `--token-id` is now an accepted alias; disagreeing values are
106
+ refused rather than silently preferring one.
107
+ - **The edition deploy previews dropped lines their 721 twins print.** All three edition lanes
108
+ omitted `approvals N wallet approval(s)` from the dry-run readout — which the skill promises "every
109
+ preview" prints and tells the agent to state up front, so on an edition the agent had nothing to
110
+ tell the creator about how many wallet prompts were coming (`deploy-code --copies` had it only in
111
+ the `--confirm` sentence, which is off by default). `deploy --copies` and `deploy-series --copies`
112
+ also omitted the "resolves ON-CHAIN via the renderer — no resolver, no server" line, which is
113
+ precisely the guarantee an edition creator is asking about, and `deploy-series --copies` never
114
+ showed `paused`. All six lanes now print the approval count; the 1155 paths say `uri()`.
115
+ - **Owner-op writes now surface a stray flag instead of swallowing it.** `mint`, `transfer`,
116
+ `set-max-supply`, and `minter configure|show|buy` warn on an unrecognized flag (warn, not refuse —
117
+ per `unknownFlags`' contract, a false warning must never break a script). These are the commands
118
+ where the 1155 semantics live in _optional_ flags that default rather than fail: a typo'd
119
+ `--amount 50` minted 1 copy and a typo'd `--quantity 5` bought 1 and paid 1×, both in total
120
+ silence. The broader gap — ~35 commands with no unknown-flag notice at all — is filed as B30.
121
+
122
+ A second verification sweep (six more cold agents, one funded) confirmed each fix above from a fresh
123
+ start and turned up four more, all fixed here:
124
+
125
+ - **A supply cap could be raised in `--dry-run` and only revert on send.** Both twins —
126
+ `set-max-invocations` (721) and `set-max-supply` (1155) — printed the new cap as fact for a value
127
+ the chain forbids, then reverted for real. A clean dry run is read as permission to send. Both now
128
+ read the current cap first and refuse up front; the 1155 side also refuses a cap **below** live
129
+ supply (the second way it reverted). Both guards fail **open** on an unreadable getter, since the
130
+ chain enforces the invariant anyway. (The 721 guard needed the Series ABI — reading `maxInvocations`
131
+ through the 1/1 ABI that `read()` uses throws, which would have made the guard silently never fire.)
132
+ - **`abx refresh` told edition owners ERC-4906 had already pinged marketplaces.** An ERC-1155 edition
133
+ emits no ERC-4906 at all — that is precisely why `ping-uri` exists — so the one sentence a creator
134
+ reads after editing metadata said "already handled" when nothing had been, and `ping-uri --help`
135
+ said the opposite. Two commands contradicting each other on the new lane. `refresh` is now
136
+ kind-aware and names `ping-uri` for editions.
137
+ - **`abx verify` ended in two ⚠ on a perfectly healthy fully-on-chain image drop** — "generator
138
+ reports NO code" and "no animation_url" — because the code-project lane runs whenever a tokenURI
139
+ renderer is set, which is true for every on-chain project, image or code. A static image has no
140
+ program and no `animation_url` by design. Three separate agents named this as the worst thing about
141
+ `verify`, and one said plainly it would make a creator distrust future real warnings. The code-lane
142
+ checks are now scoped to the code twins; a static drop gets one informational line instead. (This
143
+ was pre-existing on the 721 path too, not an editions regression.)
144
+ - **`EditionImage`'s SVG-only refusal was a thinner copy of its 721 twin's** — the Series version names
145
+ three routes (`--onchain-image`, `--backend ipfs|arweave`, or host off-chain); the edition version
146
+ said only "drop `--onchain-uri`". A cold agent asked for "3 artworks × 25 copies each" read that,
147
+ concluded there was no no-server option for one contract, and **fanned the collection out into three
148
+ separate single-artwork contracts**. The refusal now states the real options for the lane and says
149
+ explicitly that the off-chain-image-URL-in-on-chain-JSON route exists only per-artwork via
150
+ `abx deploy --copies` — one contract per artwork, not one collection. The underlying capability gap
151
+ is recorded in B28.
152
+
153
+ One knock-on from the first fix: the `false` branch of the canonical readout said _"not a clone of the
154
+ **configured** factory"_ (singular), which now understates the check and misdirects the reader — six
155
+ anchors are probed, so a `false` means no trust anchor the CLI knows deployed this contract, and the
156
+ usual real cause is a **superseded** factory or a hand-deployed contract, not a misconfiguration. It
157
+ now says so, and points at `abx doctor` for the current anchors.
158
+
159
+ Also: `deploy --help` no longer calls the edition sale stack (`--minter`/`--primary-payee`/
160
+ `--unpaused`) "required" — it is optional, and an agent handed a creator hardcoded addresses as
161
+ mandatory because of it; `set-field --help` now lists all eleven `--representation` values (it showed
162
+ seven, omitting `url-template`, `renderer`, `sha256`, `inline-gzip`); and `abx doctor`'s label column
163
+ widened so `edition factory` no longer runs into its address.
164
+
165
+ The skill-drift ✗ now names **which** copy is stale and prescribes the command that actually clears
166
+ it — `abx skill install` writes the project-local copy only, so a stale **global** copy produced a ✗
167
+ whose own remedy could not fix it. Six agents hit it in one sweep; several re-ran the install
168
+ repeatedly and one left its sandbox to read `~/.claude/skills` to work out what the tool meant.
169
+
170
+ - 528c6c6: Wave-6 validation sweep: stop three help strings from denying features that work, make `storage show`
171
+ honor the flags it advertises, and name the byte custody on both Series lanes.
172
+
173
+ Nine cold agents re-drove the edition surface after the B28/B30/B31 work. **Every new lane is reachable
174
+ and no re-run regressed** — the situation that previously fanned "3 artworks × 25 copies" out into three
175
+ separate contracts now reports _"Contracts deployed: 1, not 3"_; `--onchain-image` + edition + browser
176
+ wallet went 4/5 at Haiku after being refused outright; the on-chain-dep edition lane went 3/5 → 4/5; the
177
+ wrong-chain diagnosis went 2/5 → 3/5 on the strength of the new monotonic-cap guard. **B30 produced zero
178
+ false warnings across all nine**, including a run that control-tested the mechanism with a deliberate
179
+ bogus flag, and a funded run that exercised ~10 commands with real writes.
180
+
181
+ What the sweep found was mostly **documentation still describing behavior the same branch had replaced** —
182
+ the failure mode a test suite cannot catch, because tests assert what the code does and none of them read
183
+ the prose that tells an agent what to try:
184
+
185
+ - **`deploy --help`** said `--onchain-image` is "hot lane only on an edition (not yet wired for `--sign`)".
186
+ It works on the wallet lane. Now states the real rule: hot and `--sign` both work; `--unsigned` is
187
+ refused everywhere, 721 and edition alike, because each chunk tx's receipt feeds the next.
188
+ - **`deploy-code --help`** listed `--dep`/`--dep-registry` among flags "refused in code" for `--copies`.
189
+ They work. An agent verified all four flags directly and called this out as _"the dangerous direction:
190
+ it would talk a creator out of a feature that actually works."_ Now says they work, and names the
191
+ Sepolia-only registry constraint.
192
+ - **The `EditionImage` SVG-only refusal** — a message rewritten earlier in the same branch — still said
193
+ `--onchain-image` "is not wired on the edition-series lane yet", after that branch wired it. It now
194
+ lists all four real routes for raster art in one contract.
195
+ - **`abx refresh`'s ERC-4906 claim had no edition caveat** in the skill or `site/using-abx/guides/operate`,
196
+ even though the CLI itself was made kind-aware earlier in the branch. The skill's _"`abx refresh` is the
197
+ only nudge"_ was flatly false for an edition, where `ping-uri` is required.
198
+
199
+ Two real product fixes, both surfaced by the new warning doing its job:
200
+
201
+ - **`abx storage show` now honors `--backend`/`--gateway`/the rest of the storage override set.** It read
202
+ env-only while its own output said _"choose per command: `--backend` … `--gateway`"_ — advertising flags
203
+ it then discarded and always reporting `backend: fs`. This was invisible until every command grew an
204
+ unknown-flag notice, which correctly flagged it (the flags really were ignored). A resolution preview
205
+ that can't preview a resolution is the one thing it exists to do. Provenance now reports `--backend` as
206
+ a source, alongside env and default.
207
+ - **Both `deploy-series` lanes now name the byte custody** (`storage: ipfs (--backend) — byte custody for
208
+ the image(s)`), as the 1/1 lane always has. A creator asking for "images on IPFS" had no way to confirm
209
+ from the preview that their collection would pin there; the flag was accepted in silence.
210
+
211
+ Also documented, not changed: the ids × copies arithmetic. `deploy-code --copies 100` takes its id space
212
+ from `--max`, which **defaults to 16** — so "an edition of 100" without `--max 1` means up to 16 different
213
+ variations × 100 copies each. The dry-run states the real shape (`up to N id(s), M copies each`) and always
214
+ did; nothing taught the translation, so the skill now does, for all three commands.
215
+
216
+ Three legibility nits were routed to B32 rather than fixed: `abx state` naming a contract "Series" where a
217
+ refusal calls it "SeriesCode"; the Base-Sepolia default appearing only in a subordinate clause of the
218
+ "no contract" error (three straight waves have lost time to it); and `--onchain-image` on a folder of large
219
+ rasters honestly reporting 35 wallet approvals with no nudge toward the cheaper lane.
220
+
221
+ Two agent claims were checked and **rejected** so they don't get "fixed" into regressions: the skill does
222
+ _not_ say `--onchain-image` is refused on an edition series (it documents the `--unsigned`-only refusal
223
+ correctly), and `abx predict` does _not_ silently pick the 721 factory without `--copies` — it labels the
224
+ lane, yields a different address, and echoes `--copies` in its reproduce line.
225
+
226
+ - Updated dependencies [528c6c6]
227
+ - @artblocks/abx-sdk@0.1.0-alpha.13
228
+ - @artblocks/abx-indexer@0.1.0-alpha.14
229
+ - @artblocks/abx-storage@0.1.0-alpha.13
230
+ - @artblocks/abx-token-api@0.1.0-alpha.16
231
+
3
232
  ## 0.1.0-alpha.20
4
233
 
5
234
  ### Minor Changes
@@ -1 +1 @@
1
- {"version":3,"file":"deploy.d.ts","sourceRoot":"","sources":["../../src/commands/deploy.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"deploy.d.ts","sourceRoot":"","sources":["../../src/commands/deploy.ts"],"names":[],"mappings":"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"}