squidsquad 0.15.0 → 0.15.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/index.js +16 -0
- package/package.json +31 -31
package/index.js
CHANGED
|
@@ -167,6 +167,22 @@ function installFiles(gitRoot) {
|
|
|
167
167
|
|
|
168
168
|
fs.writeFileSync(path.join(commandsDir, "squidsquad-setup.md"), setupCommand, "utf-8");
|
|
169
169
|
success("Created /squidsquad-setup command");
|
|
170
|
+
|
|
171
|
+
// 3. Commit seed files so /squidsquad-setup doesn't abort on dirty worktree
|
|
172
|
+
info("Committing seed files...");
|
|
173
|
+
try {
|
|
174
|
+
execSync("git add SKILL.md .claude/commands/squidsquad-setup.md", {
|
|
175
|
+
cwd: gitRoot, encoding: "utf-8", stdio: ["pipe", "pipe", "pipe"],
|
|
176
|
+
});
|
|
177
|
+
execSync('git commit -m "chore: add SquidSquad skill (via npx squidsquad)"', {
|
|
178
|
+
cwd: gitRoot, encoding: "utf-8", stdio: ["pipe", "pipe", "pipe"],
|
|
179
|
+
});
|
|
180
|
+
success("Seed files committed");
|
|
181
|
+
} catch (err) {
|
|
182
|
+
fail("Failed to commit seed files. Commit them manually before running /squidsquad-setup.");
|
|
183
|
+
info(" git add SKILL.md .claude/commands/squidsquad-setup.md");
|
|
184
|
+
info(' git commit -m "chore: add SquidSquad skill"');
|
|
185
|
+
}
|
|
170
186
|
}
|
|
171
187
|
|
|
172
188
|
// --- Launch prompt ---
|
package/package.json
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "squidsquad",
|
|
3
|
-
"version": "0.15.
|
|
4
|
-
"description": "Bootstrap SquidSquad onto your project — autonomous AI dev team coordination via Claude Code",
|
|
5
|
-
"bin": {
|
|
6
|
-
"squidsquad": "./index.js"
|
|
7
|
-
},
|
|
8
|
-
"engines": {
|
|
9
|
-
"node": ">=18"
|
|
10
|
-
},
|
|
11
|
-
"files": [
|
|
12
|
-
"index.js"
|
|
13
|
-
],
|
|
14
|
-
"keywords": [
|
|
15
|
-
"claude",
|
|
16
|
-
"claude-code",
|
|
17
|
-
"ai",
|
|
18
|
-
"agents",
|
|
19
|
-
"dev-team",
|
|
20
|
-
"autonomous",
|
|
21
|
-
"squidsquad"
|
|
22
|
-
],
|
|
23
|
-
"license": "AGPL-3.0",
|
|
24
|
-
"repository": {
|
|
25
|
-
"type": "git",
|
|
26
|
-
"url": "https://github.com/WallyDoodlez/SquidSquad.git",
|
|
27
|
-
"directory": "packages/cli"
|
|
28
|
-
},
|
|
29
|
-
"homepage": "https://github.com/WallyDoodlez/SquidSquad",
|
|
30
|
-
"author": "WallyDoodlez"
|
|
31
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "squidsquad",
|
|
3
|
+
"version": "0.15.1",
|
|
4
|
+
"description": "Bootstrap SquidSquad onto your project — autonomous AI dev team coordination via Claude Code",
|
|
5
|
+
"bin": {
|
|
6
|
+
"squidsquad": "./index.js"
|
|
7
|
+
},
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=18"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"index.js"
|
|
13
|
+
],
|
|
14
|
+
"keywords": [
|
|
15
|
+
"claude",
|
|
16
|
+
"claude-code",
|
|
17
|
+
"ai",
|
|
18
|
+
"agents",
|
|
19
|
+
"dev-team",
|
|
20
|
+
"autonomous",
|
|
21
|
+
"squidsquad"
|
|
22
|
+
],
|
|
23
|
+
"license": "AGPL-3.0",
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/WallyDoodlez/SquidSquad.git",
|
|
27
|
+
"directory": "packages/cli"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/WallyDoodlez/SquidSquad",
|
|
30
|
+
"author": "WallyDoodlez"
|
|
31
|
+
}
|