@archon-claw/cli 0.2.1 → 0.4.0
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.js +6 -6
- package/dist/public/assets/{chat-input-Cpyxmt8J.js → chat-input-D-F2IIDK.js} +33 -33
- package/dist/public/assets/embed-XPDwGdtM.js +1 -0
- package/dist/public/assets/{main-CfVKtiE-.js → main-DDb5hJ5F.js} +4 -4
- package/dist/public/embed.html +2 -2
- package/dist/public/index.html +2 -2
- package/dist/scaffold.d.ts +1 -1
- package/dist/scaffold.js +5 -8
- package/dist/server.js +33 -0
- package/dist/templates/workspace/package.json +5 -3
- package/package.json +2 -2
- package/dist/public/assets/embed-CIS9O-0V.js +0 -1
package/dist/cli.js
CHANGED
|
@@ -11,7 +11,7 @@ import { SessionStore } from "./session.js";
|
|
|
11
11
|
import { startDev } from "./dev.js";
|
|
12
12
|
import { runToolTests, formatResults } from "./test-runner.js";
|
|
13
13
|
import { runEvals } from "./eval/runner.js";
|
|
14
|
-
import { scaffoldAgent, scaffoldWorkspace,
|
|
14
|
+
import { scaffoldAgent, scaffoldWorkspace, exportSkills } from "./scaffold.js";
|
|
15
15
|
const pkg = JSON.parse(readFileSync(path.resolve(__dirname, "../package.json"), "utf-8"));
|
|
16
16
|
const program = new Command();
|
|
17
17
|
program
|
|
@@ -237,12 +237,12 @@ program
|
|
|
237
237
|
}
|
|
238
238
|
});
|
|
239
239
|
program
|
|
240
|
-
.command("
|
|
241
|
-
.description("
|
|
242
|
-
.argument("
|
|
243
|
-
.action(async (
|
|
240
|
+
.command("export-skills")
|
|
241
|
+
.description("Export bundled skills to a target directory")
|
|
242
|
+
.argument("<target>", "Target directory to export skills into")
|
|
243
|
+
.action(async (target) => {
|
|
244
244
|
try {
|
|
245
|
-
await
|
|
245
|
+
await exportSkills(target);
|
|
246
246
|
}
|
|
247
247
|
catch (err) {
|
|
248
248
|
console.error(err instanceof Error ? err.message : err);
|