zam-core 0.9.0 → 0.9.1
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.
- package/dist/cli/app.js +22389 -0
- package/dist/cli/app.js.map +1 -0
- package/dist/{chunk-BOWP6D5I.js → cli/commands/mcp.js} +2873 -661
- package/dist/cli/commands/mcp.js.map +1 -0
- package/dist/cli/index.js +115 -16124
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-BOWP6D5I.js.map +0 -1
- package/dist/kernel-6JUK5NCB.js +0 -420
- package/dist/kernel-6JUK5NCB.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -2129,7 +2129,7 @@ declare function decideUpdate(input: {
|
|
|
2129
2129
|
channel: InstallChannel;
|
|
2130
2130
|
}): UpdateDecision;
|
|
2131
2131
|
/** A single step an executor runs to APPLY an update, in order. */
|
|
2132
|
-
type UpdateStepKind = "git-pull" | "npm-install" | "npm-build" | "distribute-skills" | "run-command" | "self-update";
|
|
2132
|
+
type UpdateStepKind = "git-pull" | "npm-install" | "npm-build" | "smoke-test" | "distribute-skills" | "run-command" | "self-update";
|
|
2133
2133
|
interface UpdateStep {
|
|
2134
2134
|
kind: UpdateStepKind;
|
|
2135
2135
|
/** Human-readable description of the step. */
|
package/dist/index.js
CHANGED
|
@@ -6153,6 +6153,7 @@ function planUpdate(decision) {
|
|
|
6153
6153
|
{ kind: "git-pull", label: "Pull the latest source" },
|
|
6154
6154
|
{ kind: "npm-install", label: "Install dependencies" },
|
|
6155
6155
|
{ kind: "npm-build", label: "Rebuild the CLI" },
|
|
6156
|
+
{ kind: "smoke-test", label: "Verify the rebuilt CLI launches" },
|
|
6156
6157
|
{
|
|
6157
6158
|
kind: "distribute-skills",
|
|
6158
6159
|
label: "Refresh skill files (zam setup --force)"
|