@elvis1513/auto-coding-skill 2.0.0 → 2.0.1

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
@@ -23,6 +23,10 @@ npm install -g git+https://github.com/elvis1513/auto-coding-skill.git
23
23
 
24
24
  ## Release Notes
25
25
 
26
+ ### v2.0.1
27
+
28
+ - Updated the Codex installer target from `.codex/skills` to `.agents/skills`, matching current Codex global and project skill discovery.
29
+
26
30
  ### v0.3.1
27
31
 
28
32
  - Added Jenkins crumb / CSRF retry support for API verification requests.
@@ -112,7 +116,7 @@ autocoding init --ai all
112
116
  2. Initialize docs and local scripts:
113
117
 
114
118
  ```bash
115
- python3 .codex/skills/auto-coding-skill/scripts/ap.py --repo . install
119
+ python3 .agents/skills/auto-coding-skill/scripts/ap.py --repo . install
116
120
  # or
117
121
  python3 .claude/skills/auto-coding-skill/scripts/ap.py --repo . install
118
122
  ```
@@ -49,7 +49,7 @@ autocoding init --ai codex
49
49
  2) Initialize docs/tooling:
50
50
 
51
51
  ```bash
52
- python3 .codex/skills/auto-coding-skill/scripts/ap.py --repo . install
52
+ python3 .agents/skills/auto-coding-skill/scripts/ap.py --repo . install
53
53
  # or .claude path
54
54
  ```
55
55
 
package/cli/src/index.js CHANGED
@@ -55,8 +55,8 @@ function resolveTargetDir(ai, mode, destOverride){
55
55
 
56
56
  if (ai === "codex") {
57
57
  return mode === "project"
58
- ? path.join(projectRoot(), ".codex", "skills", "auto-coding-skill")
59
- : path.join(os.homedir(), ".codex", "skills", "auto-coding-skill");
58
+ ? path.join(projectRoot(), ".agents", "skills", "auto-coding-skill")
59
+ : path.join(os.homedir(), ".agents", "skills", "auto-coding-skill");
60
60
  }
61
61
 
62
62
  die(`unknown ai: ${ai}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elvis1513/auto-coding-skill",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "CLI installer for auto-coding-skill (Claude Code + Codex CLI) with Go fullstack + Jenkins workflow support.",
5
5
  "type": "module",
6
6
  "bin": {