claude-code-pilot 3.1.0 → 3.1.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/bin/install.js CHANGED
@@ -42,7 +42,7 @@ const targetDir = isGlobal
42
42
  ? (process.env.CLAUDE_CONFIG_DIR || path.join(os.homedir(), '.claude'))
43
43
  : path.join(process.cwd(), '.claude');
44
44
  const locationLabel = isGlobal ? targetDir.replace(os.homedir(), '~') : '.claude/';
45
- const pathPrefix = isGlobal ? `${targetDir.replace(/\\/g, '/')}/` : './.claude/';
45
+ const pathPrefix = `${targetDir.replace(/\\/g, '/')}/`;
46
46
  const projectRoot = isGlobal ? os.homedir() : process.cwd();
47
47
 
48
48
  // --- Templates ---
package/manifest.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.1.0",
2
+ "version": "3.1.1",
3
3
  "external": {
4
4
  "find-skills": {
5
5
  "install": "npx skills add https://github.com/vercel-labs/skills --skill find-skills -g -a claude-code -y",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-pilot",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "Claude Code Pilot -- universal AI coding companion with spec-driven development, session persistence, and auto-setup.",
5
5
  "bin": {
6
6
  "claude-code-pilot": "bin/install.js"
@@ -12,9 +12,19 @@
12
12
  "manifest.json"
13
13
  ],
14
14
  "keywords": [
15
- "claude", "claude-code", "claude-code-pilot", "ai", "coding-agent",
16
- "pilot", "spec-driven", "skills", "mcp",
17
- "context-engineering", "continuous-learning", "tdd", "code-review"
15
+ "claude",
16
+ "claude-code",
17
+ "claude-code-pilot",
18
+ "ai",
19
+ "coding-agent",
20
+ "pilot",
21
+ "spec-driven",
22
+ "skills",
23
+ "mcp",
24
+ "context-engineering",
25
+ "continuous-learning",
26
+ "tdd",
27
+ "code-review"
18
28
  ],
19
29
  "author": "Othmane Hanyf <othmane.hanyf@ahven.ma>",
20
30
  "license": "MIT",
@@ -26,7 +36,9 @@
26
36
  "bugs": {
27
37
  "url": "https://github.com/OthmaneHanyf/claude-code-pilot/issues"
28
38
  },
29
- "engines": { "node": ">=16.7.0" },
39
+ "engines": {
40
+ "node": ">=16.7.0"
41
+ },
30
42
  "scripts": {
31
43
  "test": "node test/run.js",
32
44
  "prepublishOnly": "node scripts/prepublish-checks.js"