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 +1 -1
- package/manifest.json +1 -1
- package/package.json +17 -5
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 =
|
|
45
|
+
const pathPrefix = `${targetDir.replace(/\\/g, '/')}/`;
|
|
46
46
|
const projectRoot = isGlobal ? os.homedir() : process.cwd();
|
|
47
47
|
|
|
48
48
|
// --- Templates ---
|
package/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-pilot",
|
|
3
|
-
"version": "3.1.
|
|
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",
|
|
16
|
-
"
|
|
17
|
-
"
|
|
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": {
|
|
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"
|