cc-dev-template 0.1.107 → 0.1.109
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 +7 -0
- package/package.json +1 -1
- package/src/agents/objective-researcher.md +0 -1
- package/src/agents/question-generator.md +0 -1
- package/src/agents/spec-implementer.md +0 -1
- package/src/agents/spec-validator.md +0 -1
- package/src/agents/spec-writer.md +0 -1
- package/src/agents/task-breakdown.md +0 -1
- package/src/agents/test-planner.md +0 -1
package/bin/install.js
CHANGED
|
@@ -453,6 +453,13 @@ if (fs.existsSync(settingsFile)) {
|
|
|
453
453
|
settingsModified = true;
|
|
454
454
|
}
|
|
455
455
|
|
|
456
|
+
// Disable background agents (all agent calls are blocking/foreground)
|
|
457
|
+
if (settings.env.CLAUDE_CODE_DISABLE_BACKGROUND_TASKS !== '1') {
|
|
458
|
+
settings.env.CLAUDE_CODE_DISABLE_BACKGROUND_TASKS = '1';
|
|
459
|
+
console.log('✓ Set CLAUDE_CODE_DISABLE_BACKGROUND_TASKS=1');
|
|
460
|
+
settingsModified = true;
|
|
461
|
+
}
|
|
462
|
+
|
|
456
463
|
// Enable MCP tool search (loads MCP tools on-demand instead of in context)
|
|
457
464
|
if (settings.env.ENABLE_TOOL_SEARCH !== 'true') {
|
|
458
465
|
settings.env.ENABLE_TOOL_SEARCH = 'true';
|
package/package.json
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: spec-writer
|
|
3
|
-
description: Generates or reviews an implementation-ready feature spec. In write mode, synthesizes upstream artifacts into a spec. In review mode, validates and fixes an existing spec against a 12-point checklist. Only use when explicitly directed by the ship skill workflow.
|
|
4
3
|
tools: Read, Grep, Glob, Write, Edit
|
|
5
4
|
memory: project
|
|
6
5
|
permissionMode: bypassPermissions
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: task-breakdown
|
|
3
|
-
description: Generates or reviews implementation task files from a spec. In write mode, creates tracer-bullet-ordered task files. In review mode, validates and fixes against a 9-point checklist. Only use when explicitly directed by the ship skill workflow.
|
|
4
3
|
tools: Read, Grep, Glob, Write, Edit
|
|
5
4
|
memory: project
|
|
6
5
|
permissionMode: bypassPermissions
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: test-planner
|
|
3
|
-
description: Generates or reviews a verification plan for a feature spec. In write mode, derives contract, behavioral, integration, and negative tests from the spec. In review mode, validates and fixes against a review checklist. Only use when explicitly directed by the ship skill workflow.
|
|
4
3
|
tools: Read, Grep, Glob, Write, Edit
|
|
5
4
|
memory: project
|
|
6
5
|
permissionMode: bypassPermissions
|