@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 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, updateSkills } from "./scaffold.js";
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("update-skills")
241
- .description("Update skills to the latest version bundled with @archon-claw/cli")
242
- .argument("[dir]", "Workspace directory", ".")
243
- .action(async (dir) => {
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 updateSkills(dir);
245
+ await exportSkills(target);
246
246
  }
247
247
  catch (err) {
248
248
  console.error(err instanceof Error ? err.message : err);