@artblocks/abx-cli 0.1.0-alpha.3 → 0.1.0-alpha.30

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 (148) hide show
  1. package/CHANGELOG.md +3663 -0
  2. package/assets/renderer-scaffold/README.md +2 -2
  3. package/assets/renderer-scaffold/src/MyRenderer.sol +2 -2
  4. package/assets/renderer-scaffold/src/interfaces/IAbxFieldRenderer.sol +1 -1
  5. package/assets/renderer-scaffold/src/interfaces/IAbxParams.sol +17 -0
  6. package/assets/renderer-scaffold/test/MyRenderer.t.sol +51 -2
  7. package/dist/commands/deploy.d.ts +242 -0
  8. package/dist/commands/deploy.d.ts.map +1 -0
  9. package/dist/commands/deploy.js +4764 -0
  10. package/dist/commands/deploy.js.map +1 -0
  11. package/dist/commands/project.d.ts +257 -0
  12. package/dist/commands/project.d.ts.map +1 -0
  13. package/dist/commands/project.js +1299 -0
  14. package/dist/commands/project.js.map +1 -0
  15. package/dist/commands/reads.d.ts +64 -0
  16. package/dist/commands/reads.d.ts.map +1 -0
  17. package/dist/commands/reads.js +701 -0
  18. package/dist/commands/reads.js.map +1 -0
  19. package/dist/commands/scaffold.d.ts +73 -0
  20. package/dist/commands/scaffold.d.ts.map +1 -0
  21. package/dist/commands/scaffold.js +674 -0
  22. package/dist/commands/scaffold.js.map +1 -0
  23. package/dist/commands/service.d.ts +41 -0
  24. package/dist/commands/service.d.ts.map +1 -0
  25. package/dist/commands/service.js +618 -0
  26. package/dist/commands/service.js.map +1 -0
  27. package/dist/commands/storage.d.ts +51 -0
  28. package/dist/commands/storage.d.ts.map +1 -0
  29. package/dist/commands/storage.js +370 -0
  30. package/dist/commands/storage.js.map +1 -0
  31. package/dist/commands/submit-app.d.ts +58 -0
  32. package/dist/commands/submit-app.d.ts.map +1 -0
  33. package/dist/commands/submit-app.js +512 -0
  34. package/dist/commands/submit-app.js.map +1 -0
  35. package/dist/config.d.ts +90 -2
  36. package/dist/config.d.ts.map +1 -1
  37. package/dist/config.js +285 -11
  38. package/dist/config.js.map +1 -1
  39. package/dist/conformance.d.ts +31 -0
  40. package/dist/conformance.d.ts.map +1 -0
  41. package/dist/conformance.js +393 -0
  42. package/dist/conformance.js.map +1 -0
  43. package/dist/deps.d.ts +6 -39
  44. package/dist/deps.d.ts.map +1 -1
  45. package/dist/deps.js +4 -68
  46. package/dist/deps.js.map +1 -1
  47. package/dist/errors.d.ts +20 -0
  48. package/dist/errors.d.ts.map +1 -0
  49. package/dist/errors.js +25 -0
  50. package/dist/errors.js.map +1 -0
  51. package/dist/flag-allowlists.d.ts +53 -0
  52. package/dist/flag-allowlists.d.ts.map +1 -0
  53. package/dist/flag-allowlists.js +157 -0
  54. package/dist/flag-allowlists.js.map +1 -0
  55. package/dist/flags.d.ts +45 -0
  56. package/dist/flags.d.ts.map +1 -1
  57. package/dist/flags.js +117 -1
  58. package/dist/flags.js.map +1 -1
  59. package/dist/jsonout.d.ts +37 -0
  60. package/dist/jsonout.d.ts.map +1 -0
  61. package/dist/jsonout.js +68 -0
  62. package/dist/jsonout.js.map +1 -0
  63. package/dist/kind.d.ts +61 -0
  64. package/dist/kind.d.ts.map +1 -0
  65. package/dist/kind.js +111 -0
  66. package/dist/kind.js.map +1 -0
  67. package/dist/main.js +699 -4736
  68. package/dist/main.js.map +1 -1
  69. package/dist/mintpage.d.ts +17 -2
  70. package/dist/mintpage.d.ts.map +1 -1
  71. package/dist/mintpage.js +241 -54
  72. package/dist/mintpage.js.map +1 -1
  73. package/dist/output.d.ts +179 -0
  74. package/dist/output.d.ts.map +1 -0
  75. package/dist/output.js +756 -0
  76. package/dist/output.js.map +1 -0
  77. package/dist/ownerops.d.ts +302 -51
  78. package/dist/ownerops.d.ts.map +1 -1
  79. package/dist/ownerops.js +1780 -357
  80. package/dist/ownerops.js.map +1 -1
  81. package/dist/preview.d.ts +81 -0
  82. package/dist/preview.d.ts.map +1 -0
  83. package/dist/preview.js +535 -0
  84. package/dist/preview.js.map +1 -0
  85. package/dist/prompt.d.ts +17 -0
  86. package/dist/prompt.d.ts.map +1 -0
  87. package/dist/prompt.js +19 -0
  88. package/dist/prompt.js.map +1 -0
  89. package/dist/provision.d.ts.map +1 -1
  90. package/dist/provision.js +16 -8
  91. package/dist/provision.js.map +1 -1
  92. package/dist/remote.d.ts +153 -52
  93. package/dist/remote.d.ts.map +1 -1
  94. package/dist/remote.js +406 -46
  95. package/dist/remote.js.map +1 -1
  96. package/dist/riskgate.d.ts +58 -0
  97. package/dist/riskgate.d.ts.map +1 -0
  98. package/dist/riskgate.js +212 -0
  99. package/dist/riskgate.js.map +1 -0
  100. package/dist/scaffold.d.ts +10 -0
  101. package/dist/scaffold.d.ts.map +1 -0
  102. package/dist/scaffold.js +52 -0
  103. package/dist/scaffold.js.map +1 -0
  104. package/dist/schema.d.ts +36 -1
  105. package/dist/schema.d.ts.map +1 -1
  106. package/dist/schema.js +121 -26
  107. package/dist/schema.js.map +1 -1
  108. package/dist/script-chunks.d.ts +8 -0
  109. package/dist/script-chunks.d.ts.map +1 -0
  110. package/dist/script-chunks.js +35 -0
  111. package/dist/script-chunks.js.map +1 -0
  112. package/dist/served.d.ts +30 -0
  113. package/dist/served.d.ts.map +1 -0
  114. package/dist/served.js +112 -0
  115. package/dist/served.js.map +1 -0
  116. package/dist/signer.d.ts +13 -0
  117. package/dist/signer.d.ts.map +1 -1
  118. package/dist/signer.js +84 -15
  119. package/dist/signer.js.map +1 -1
  120. package/dist/update-check.d.ts +83 -4
  121. package/dist/update-check.d.ts.map +1 -1
  122. package/dist/update-check.js +140 -19
  123. package/dist/update-check.js.map +1 -1
  124. package/package.json +10 -6
  125. package/skill/SKILL.md +350 -150
  126. package/skill/reference/code-projects.md +183 -26
  127. package/skill/reference/creator-token.md +99 -0
  128. package/skill/reference/decisions.md +174 -0
  129. package/skill/reference/hosting.md +63 -19
  130. package/skill/reference/operating.md +116 -12
  131. package/skill/reference/setup.md +55 -6
  132. package/skill/reference/troubleshooting.md +42 -5
  133. package/dist/inspect.d.ts +0 -48
  134. package/dist/inspect.d.ts.map +0 -1
  135. package/dist/inspect.js +0 -184
  136. package/dist/inspect.js.map +0 -1
  137. package/dist/migrate.d.ts +0 -65
  138. package/dist/migrate.d.ts.map +0 -1
  139. package/dist/migrate.js +0 -180
  140. package/dist/migrate.js.map +0 -1
  141. package/dist/onchain-uri.d.ts +0 -97
  142. package/dist/onchain-uri.d.ts.map +0 -1
  143. package/dist/onchain-uri.js +0 -243
  144. package/dist/onchain-uri.js.map +0 -1
  145. package/dist/upload.d.ts +0 -28
  146. package/dist/upload.d.ts.map +0 -1
  147. package/dist/upload.js +0 -41
  148. package/dist/upload.js.map +0 -1
@@ -0,0 +1,179 @@
1
+ import { SelfHostIndexer } from '@artblocks/abx-indexer';
2
+ import { type Address, type ProjectState, type PublicClient, type SendTx } from '@artblocks/abx-sdk';
3
+ import { type Flags } from './flags.js';
4
+ export declare const c: {
5
+ reset: string;
6
+ dim: string;
7
+ bold: string;
8
+ green: string;
9
+ purple: string;
10
+ orange: string;
11
+ red: string;
12
+ };
13
+ export declare const g: (s: string) => string;
14
+ export declare const p: (s: string) => string;
15
+ export declare const dim: (s: string) => string;
16
+ export declare const bold: (s: string) => string;
17
+ export declare let stepN: number;
18
+ export declare const step: (s: string) => void;
19
+ export declare const ok: (s: string) => void;
20
+ export declare const info: (s: string) => void;
21
+ export declare const warn: (s: string) => void;
22
+ export declare function allowLargeScan(flags: Flags): void;
23
+ /**
24
+ * Resolve the scan floor (fromBlock) for an add/index — the CLI-side shell around the SDK's
25
+ * {@link sdkResolveScanFloor}: builds the client, forwards `--from-block`, and narrates its two
26
+ * possible events (the SDK never prints). See the SDK function's doc comment for the "why" (never
27
+ * a silent genesis default).
28
+ */
29
+ export declare function resolveScanFloor(address: Address, localFromBlock: string | undefined, flags: Flags): Promise<string>;
30
+ /**
31
+ * The trust-anchor gate: a factory is THE address platforms allowlist by, so a missing
32
+ * manifest entry must NEVER silently mint a new "canonical" — that fragments trust (and
33
+ * a stale SDK would duplicate factories on real chains). Degrade to guidance; deploying
34
+ * a private trust anchor is an explicit choice (`--bootstrap-factory`).
35
+ */
36
+ export declare function refuseMissingFactory(kind: string, envVar: string, reason: string): never;
37
+ /** A `SendTx` that defers `makeWalletClient`/`makeHotSender` construction until the first actual
38
+ * send — trust-anchor bootstrap is rare (an existing, current anchor is the common case), so the
39
+ * happy path must never require a signing key. Memoized so a multi-tx bootstrap (the SeriesCode
40
+ * factory: 2 libraries + the linked factory itself) reuses ONE sender — and its nonce tracking —
41
+ * rather than a fresh one per send. */
42
+ export declare function lazyBootstrapSender(publicClient: PublicClient): SendTx;
43
+ /** Get (or deploy) the chain's canonical 1/1 clone factory — narrates the SDK's `ensureFactory`
44
+ * (anchors.ts), which owns the resolve/verify/bootstrap logic; this keeps only the exact console
45
+ * output plus the exit-messaging refusal (`refuseMissingFactory`), which stays CLI-side since the
46
+ * SDK doesn't know a UX's flag names. `quiet` suppresses only the happy-path reuse line (the demo
47
+ * resolves the factory without making a teaching moment of it) — everything else always prints. */
48
+ export declare function ensureFactory(override?: string, allowBootstrap?: boolean, quiet?: boolean): Promise<Address>;
49
+ /** Get (or deploy) the chain's `SeriesImageFactory` — the sibling of {@link ensureFactory}.
50
+ * Narrates the SDK's `ensureSeriesFactory` (anchors.ts), which owns the resolve/verify/bootstrap
51
+ * logic. */
52
+ export declare function ensureSeriesFactory(override?: string, allowBootstrap?: boolean): Promise<Address>;
53
+ /** Get (or deploy) the chain's shared `AbxMetadataRenderer` — narrates the SDK's `ensureRenderer`
54
+ * (anchors.ts), which also self-heals to the CREATE2-deterministic address before deploying. No
55
+ * `allowBootstrap` gate here (unlike the three clone factories) — the renderer isn't a platform
56
+ * allowlist entry, so there's nothing to refuse; a stale/missing one always just gets redeployed. */
57
+ export declare function ensureRenderer(override?: string): Promise<Address>;
58
+ /** The code-project trust anchor — narrates the SDK's `ensureSeriesCodeFactory` (anchors.ts),
59
+ * which owns the resolve/bootstrap logic (a sandbox / fresh chain links + deploys the two
60
+ * write-path libraries then the factory in-flight; see {@link deploySeriesCodeFactory}). */
61
+ export declare function ensureSeriesCodeFactory(publicClient: PublicClient, override?: string, allowBootstrap?: boolean): Promise<Address>;
62
+ /** Get (or deploy) the chain's canonical 1/1-edition clone factory — narrates the SDK's
63
+ * `ensureOneOfOneEditionFactory` (anchors.ts), the edition twin of {@link ensureFactory}. */
64
+ export declare function ensureOneOfOneEditionFactory(override?: string, allowBootstrap?: boolean): Promise<Address>;
65
+ /** Get (or deploy) the chain's `EditionImageFactory` — narrates the SDK's `ensureEditionFactory`
66
+ * (anchors.ts), the edition twin of {@link ensureSeriesFactory}. */
67
+ export declare function ensureEditionFactory(override?: string, allowBootstrap?: boolean): Promise<Address>;
68
+ /** The code-project EDITION trust anchor — narrates the SDK's `ensureEditionCodeFactory`
69
+ * (anchors.ts), the edition twin of {@link ensureSeriesCodeFactory} (three linked libraries
70
+ * instead of two — see `deployEditionCodeFactory`'s doc note). */
71
+ export declare function ensureEditionCodeFactory(publicClient: PublicClient, override?: string, allowBootstrap?: boolean): Promise<Address>;
72
+ /** The canonical seed source — narrates the SDK's `ensureSeedSource` (anchors.ts): a clean keyless
73
+ * singleton (like the renderer / chunk store / minter), so CREATE2 lands at THE canonical address
74
+ * on any chain. Resolves from the manifest, self-heals to the predicted address (deployed but not
75
+ * yet repointed), else auto-deploys via CREATE2. */
76
+ export declare function ensureSeedSource(publicClient: PublicClient): Promise<Address>;
77
+ /**
78
+ * Refuse a port that's already bound, with a formatted one-liner naming the port and the fix.
79
+ *
80
+ * Without this, `listen()` has no `'error'` handler and EADDRINUSE reaches Node's default handler:
81
+ * the creator gets a raw stack trace through `node:net` and our own `dist/` paths, which reads as a
82
+ * crash inside abx rather than "something else is on this port" — and it's the one unformatted error
83
+ * surface in a CLI where every other error is formatted. `preview`'s default port colliding with a
84
+ * studio left running in another terminal was reported as especially hard to diagnose.
85
+ */
86
+ export declare function assertPortFree(port: number, cmd: string): Promise<void>;
87
+ /** Is a TCP port already bound on localhost? Used to preflight a serve BEFORE spending a tx. */
88
+ export declare function portInUse(port: number): Promise<boolean>;
89
+ /**
90
+ * Index a project we *just* deployed — and don't believe a zero.
91
+ *
92
+ * `eth_getLogs` is read-after-write inconsistent on load-balanced RPCs: `waitForTransactionReceipt`
93
+ * resolves against a node that has the block, then the log query lands on one that doesn't yet, and
94
+ * returns an empty set for a block we KNOW contains our deploy. The old code took that single read at
95
+ * face value, printed `✓ reconstructed 0 events`, stored the empty projection, and served an empty
96
+ * dashboard — a first-run that looks like the toolkit simply doesn't work. It reproduced 100% of the
97
+ * time on `https://sepolia.base.org`, which is the DEFAULT endpoint when there's no `.env`, i.e. the
98
+ * documented first run was the broken path. The same block returned all 9 logs seconds later.
99
+ *
100
+ * We have the one thing that makes this checkable: we just minted, so the spine cannot be empty.
101
+ * So verify instead of trusting — re-scan at a constant delay until events appear, and if they
102
+ * never do, say so as a FAILURE with the recovery command rather than dressing a zero up as a ✓.
103
+ */
104
+ export declare function reindexAfterDeploy(indexer: SelfHostIndexer, address: Address, opts?: {
105
+ attempts?: number;
106
+ delayMs?: number;
107
+ readUriDocuments?: boolean;
108
+ }): Promise<{
109
+ state: ProjectState;
110
+ elapsedMs: number;
111
+ }>;
112
+ export declare function loadEffects(): Promise<typeof import('@artblocks/abx-effects')>;
113
+ /**
114
+ * The publish topology's one hard prerequisite, checked BEFORE any capture.
115
+ *
116
+ * A resolver that doesn't share this machine's disk serves referenced output (the still, a video, a
117
+ * model) by **redirect** — so it needs a URL, and it refuses the bytes (`specs/protocol/effects.md →
118
+ * Bound vs referenced`). A backend that can't name a locator therefore has no publish lane at all,
119
+ * and every render against one would be work spent to earn a 400.
120
+ *
121
+ * So this refuses up front and names the ways out, rather than warning and letting the render run.
122
+ * It deliberately does NOT pick a backend for the operator: which store holds their content — and which
123
+ * gateway serves it — is theirs to decide. The three that work are peers, not a ranking: `https://`
124
+ * from S3/R2, an IPFS gateway, and Arweave are all fine, because derived output is re-creatable and
125
+ * the only real requirement is that a third party can fetch it.
126
+ */
127
+ export declare function requirePublishableBackend(flags: Flags, what: string): void;
128
+ export declare function printServing(url: string, address?: Address): void;
129
+ /**
130
+ * The CLI package's own root — the directory holding its `package.json`, found by walking up rather
131
+ * than by counting `..`.
132
+ *
133
+ * **Counting is the bug this exists to prevent, and it shipped.** `resolveBundledSkill` and
134
+ * `resolveRendererScaffold` each computed the root as `resolve(fileURLToPath(import.meta.url), '..',
135
+ * '..')`. That is right for a module compiled to `dist/main.js` and wrong for one compiled to
136
+ * `dist/commands/scaffold.js`, which is one level deeper — it lands on `dist/`, not the package root.
137
+ * Both functions live in `src/commands/`, so in every published install they looked for
138
+ * `<pkg>/dist/skill` and `<pkg>/dist/assets/renderer-scaffold`, neither of which exists. The result:
139
+ * `abx skill install` — the CANONICAL way a user installs the agent skill, the first thing our own
140
+ * quickstart tells them to run — failed on every fresh npm install with "bundled skill not found",
141
+ * and `abx scaffold-renderer` failed the same way. Reported from the field on v0.1.0-alpha.21.
142
+ *
143
+ * Nothing caught it because dev runs from source (`pnpm abx`), where the fallback to the canonical
144
+ * repo copy makes both functions work regardless of the arithmetic. The published layout is the only
145
+ * place the number matters, and no test constructed one.
146
+ *
147
+ * So: no fixed depth anywhere. A file can move between `src/` and `src/commands/` without silently
148
+ * breaking a path, and `packaging.test.ts` fails the build if fixed-depth root math comes back.
149
+ */
150
+ export declare function findCliPackageRoot(): string | null;
151
+ /**
152
+ * The walk itself, as a pure function of a starting path — so it can be tested against a SIMULATED
153
+ * published layout, which is the one layout a dev run never has and therefore the one the original
154
+ * bug hid in. `findCliPackageRoot()` is this applied to the running module.
155
+ *
156
+ * @param from a file path inside the package (the walk starts at its directory)
157
+ * @param name the `package.json` `name` that identifies the root
158
+ */
159
+ export declare function packageRootFrom(from: string, name?: string): string | null;
160
+ /** Walk up from the CLI source to the workspace root (the dir with pnpm-workspace.yaml). Returns
161
+ * null when running from a published install (no workspace) — where --from-source doesn't apply. */
162
+ export declare function findRepoRoot(): string | null;
163
+ export declare function keepAlive(): Promise<void>;
164
+ /**
165
+ * Pick the canonical factory for a clone being added — the CLI-side shell around the SDK's
166
+ * {@link sdkDetectCanonicalFactory} (which does the actual multicall probe; see its doc comment).
167
+ * Shared by `add`'s local + remote paths (project.ts) and the deploy family's post-setup local
168
+ * register (deploy.ts, via {@link registerAndIndexLocally}).
169
+ */
170
+ export declare function detectCanonicalFactory(address: Address, override?: string, stored?: string | null): Promise<Address | undefined>;
171
+ /**
172
+ * Register + index a project LOCALLY (this node's own SQLite-backed projection) — the core of
173
+ * `abx add`'s non-`--remote` path, factored out here because it's ALSO how `deploy` / `deploy-series`
174
+ * / `deploy-code` register the project they just deployed (see cmdAdd in commands/project.ts, whose
175
+ * local branch is a thin call to this). Kept self-sufficient (recomputes any `--attributes`/`--traits`
176
+ * edit from `flags` itself) so it never depends on a caller's local variables.
177
+ */
178
+ export declare function registerAndIndexLocally(address: Address, flags: Flags): Promise<void>;
179
+ //# sourceMappingURL=output.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"output.d.ts","sourceRoot":"","sources":["../src/output.ts"],"names":[],"mappings":"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"}