joycraft 0.6.11 → 0.6.12

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
@@ -15,7 +15,7 @@ var GITIGNORE_OPTION_DESC = `Gitignore profile: 'shared' (commit skills) or 'pri
15
15
  var program = new Command();
16
16
  program.name("joycraft").description("Scaffold and upgrade AI development harnesses").version(pkg.version, "-v, --version");
17
17
  program.command("init").description("Scaffold the Joycraft harness into the current project").argument("[dir]", "Target directory", ".").option("--force", "Overwrite existing files").option("--gitignore <profile>", GITIGNORE_OPTION_DESC).action(async (dir, opts) => {
18
- const { init } = await import("./init-TR43TRW2.js");
18
+ const { init } = await import("./init-YJYJZUZU.js");
19
19
  try {
20
20
  await init(dir, { force: opts.force ?? false, gitignore: opts.gitignore });
21
21
  } catch (err) {
@@ -24,7 +24,7 @@ program.command("init").description("Scaffold the Joycraft harness into the curr
24
24
  }
25
25
  });
26
26
  program.command("upgrade").description("Upgrade installed Joycraft templates and skills to latest").argument("[dir]", "Target directory", ".").option("--yes", "Auto-accept all updates").option("--gitignore <profile>", GITIGNORE_OPTION_DESC).action(async (dir, opts) => {
27
- const { upgrade } = await import("./upgrade-L3HSCFTV.js");
27
+ const { upgrade } = await import("./upgrade-33NLD24D.js");
28
28
  try {
29
29
  await upgrade(dir, { yes: opts.yes ?? false, gitignore: opts.gitignore });
30
30
  } catch (err) {
@@ -33,7 +33,7 @@ program.command("upgrade").description("Upgrade installed Joycraft templates and
33
33
  }
34
34
  });
35
35
  program.command("init-autofix").description("Set up the Level 5 auto-fix loop with holdout scenarios").argument("[dir]", "Target directory", ".").option("--scenarios-repo <name>", "Name for scenarios repo").option("--app-id <id>", "GitHub App ID for Joycraft Autofix").option("--force", "Overwrite existing workflow files").option("--dry-run", "Show what would be created without creating it").action(async (dir, opts) => {
36
- const { initAutofix } = await import("./init-autofix-N3P63CAT.js");
36
+ const { initAutofix } = await import("./init-autofix-4GUVGDXT.js");
37
37
  await initAutofix(dir, opts);
38
38
  });
39
39
  program.command("check-version").description("Check if a newer version of Joycraft is available").action(async () => {
@@ -16,7 +16,7 @@ import {
16
16
  PI_SKILLS,
17
17
  SKILLS,
18
18
  TEMPLATES
19
- } from "./chunk-W6AHAE7X.js";
19
+ } from "./chunk-GM2T44P6.js";
20
20
  import {
21
21
  DEFAULT_GITIGNORE_PROFILE,
22
22
  STATE_PATH,
@@ -1008,4 +1008,4 @@ function printSummary(result, stack, existingSkills = [], isPi = false, gitignor
1008
1008
  export {
1009
1009
  init
1010
1010
  };
1011
- //# sourceMappingURL=init-TR43TRW2.js.map
1011
+ //# sourceMappingURL=init-YJYJZUZU.js.map
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  TEMPLATES
4
- } from "./chunk-W6AHAE7X.js";
4
+ } from "./chunk-GM2T44P6.js";
5
5
  import {
6
6
  LEGACY_VERSION_FILE,
7
7
  STATE_PATH
@@ -116,4 +116,4 @@ function printSummary(result, dryRun, scenariosRepo) {
116
116
  export {
117
117
  initAutofix
118
118
  };
119
- //# sourceMappingURL=init-autofix-N3P63CAT.js.map
119
+ //# sourceMappingURL=init-autofix-4GUVGDXT.js.map
@@ -16,7 +16,7 @@ import {
16
16
  PI_SKILLS,
17
17
  SKILLS,
18
18
  TEMPLATES
19
- } from "./chunk-W6AHAE7X.js";
19
+ } from "./chunk-GM2T44P6.js";
20
20
  import {
21
21
  LEGACY_VERSION_FILE,
22
22
  hashContent,
@@ -525,4 +525,4 @@ Upgrade complete: ${parts.join(", ")}.`);
525
525
  export {
526
526
  upgrade
527
527
  };
528
- //# sourceMappingURL=upgrade-L3HSCFTV.js.map
528
+ //# sourceMappingURL=upgrade-33NLD24D.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joycraft",
3
- "version": "0.6.11",
3
+ "version": "0.6.12",
4
4
  "description": "CLI + Claude Code plugin that scaffolds and upgrades AI development harnesses",
5
5
  "type": "module",
6
6
  "bin": {