claudekit-cli 3.35.0-dev.15 → 3.35.0-dev.16

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 (2) hide show
  1. package/dist/index.js +14 -7
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -10868,8 +10868,8 @@ var init_provider_registry = __esm(() => {
10868
10868
  nestedCommands: false
10869
10869
  },
10870
10870
  skills: {
10871
- projectPath: ".codex/skills",
10872
- globalPath: join(home, ".codex/skills"),
10871
+ projectPath: ".agents/skills",
10872
+ globalPath: join(home, ".agents/skills"),
10873
10873
  format: "direct-copy",
10874
10874
  writeStrategy: "per-file",
10875
10875
  fileExtension: ".md"
@@ -10883,7 +10883,7 @@ var init_provider_registry = __esm(() => {
10883
10883
  },
10884
10884
  rules: {
10885
10885
  projectPath: "AGENTS.md",
10886
- globalPath: join(home, ".codex/prompts/rules.md"),
10886
+ globalPath: join(home, ".codex/AGENTS.md"),
10887
10887
  format: "md-strip",
10888
10888
  writeStrategy: "merge-single",
10889
10889
  fileExtension: ".md"
@@ -10891,12 +10891,12 @@ var init_provider_registry = __esm(() => {
10891
10891
  detect: async () => hasAnyInstallSignal([
10892
10892
  join(cwd, ".codex/config.toml"),
10893
10893
  join(cwd, ".codex/prompts"),
10894
- join(cwd, ".codex/skills"),
10894
+ join(cwd, ".agents/skills"),
10895
10895
  join(home, ".codex/config.toml"),
10896
10896
  join(home, ".codex/AGENTS.md"),
10897
10897
  join(home, ".codex/instructions.md"),
10898
10898
  join(home, ".codex/prompts"),
10899
- join(home, ".codex/skills")
10899
+ join(home, ".agents/skills")
10900
10900
  ])
10901
10901
  },
10902
10902
  cursor: {
@@ -52947,7 +52947,7 @@ var package_default;
52947
52947
  var init_package = __esm(() => {
52948
52948
  package_default = {
52949
52949
  name: "claudekit-cli",
52950
- version: "3.35.0-dev.15",
52950
+ version: "3.35.0-dev.16",
52951
52951
  description: "CLI tool for bootstrapping and updating ClaudeKit projects",
52952
52952
  type: "module",
52953
52953
  repository: {
@@ -89407,7 +89407,14 @@ async function migrateCommand(options2) {
89407
89407
  }
89408
89408
  }
89409
89409
  console.log();
89410
- const plannedExecActions = plan.actions.filter(shouldExecuteAction);
89410
+ const typePriority = {
89411
+ config: 0,
89412
+ rules: 1,
89413
+ agent: 2,
89414
+ command: 3,
89415
+ skill: 4
89416
+ };
89417
+ const plannedExecActions = plan.actions.filter(shouldExecuteAction).sort((a3, b3) => (typePriority[a3.type] ?? 99) - (typePriority[b3.type] ?? 99));
89411
89418
  const plannedDeleteActions = plan.actions.filter((a3) => a3.action === "delete");
89412
89419
  if (!options2.yes) {
89413
89420
  const totalItems = plannedExecActions.length + plannedDeleteActions.length;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudekit-cli",
3
- "version": "3.35.0-dev.15",
3
+ "version": "3.35.0-dev.16",
4
4
  "description": "CLI tool for bootstrapping and updating ClaudeKit projects",
5
5
  "type": "module",
6
6
  "repository": {