ai-ide-config 0.1.1 → 0.1.2

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/README.md CHANGED
@@ -32,7 +32,7 @@ npx ai-ide-config init-angular
32
32
  # Options
33
33
  npx ai-ide-config init --force # overwrite existing files
34
34
  npx ai-ide-config init --dry-run # preview only
35
- npx ai-ide-config init --skip-skills # skip angular/skills install
35
+ npx ai-ide-config init --skip-skills # skip midudev/autoskills install
36
36
  npx ai-ide-config init ./apps/web # target directory
37
37
  ```
38
38
 
@@ -48,7 +48,7 @@ If `package.json` exists, init pins an **exact** `packageManager` / `devEngines.
48
48
  After scaffolding, the CLI runs:
49
49
 
50
50
  ```bash
51
- pnpx skills add https://github.com/angular/skills
51
+ pnpx skills add midudev/autoskills
52
52
  ```
53
53
 
54
54
  (`pnpx` is used instead of `npx` because the skills package requires pnpm via `devEngines`.)
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "ai-ide-config",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Scaffold shared Cursor IDE / agent config (rules, commands, stack AGENTS.md)",
5
5
  "type": "module",
6
6
  "bin": {
7
- "ai-ide-config": "./bin/cli.mjs"
7
+ "ai-ide-config": "bin/cli.mjs"
8
8
  },
9
9
  "files": [
10
10
  "bin",
package/src/skills.mjs CHANGED
@@ -1,10 +1,10 @@
1
1
  import { spawnSync } from 'node:child_process';
2
2
 
3
3
  export const SKILLS_ADD_COMMAND =
4
- 'pnpx skills add https://github.com/angular/skills';
4
+ 'pnpx skills add midudev/autoskills';
5
5
 
6
6
  /**
7
- * Install Angular agent skills via the skills CLI (pnpm/pnpx required by devEngines).
7
+ * Install agent skills via the skills CLI (pnpm/pnpx required by devEngines).
8
8
  * @param {string} targetDir
9
9
  * @param {{ dryRun?: boolean, skip?: boolean }} [options]
10
10
  * @returns {{ skipped: boolean, dryRun?: boolean, status?: number | null }}