specweave 1.0.565 → 1.0.566
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/dist/src/cli/commands/team.d.ts +5 -1
- package/dist/src/cli/commands/team.d.ts.map +1 -1
- package/dist/src/cli/commands/team.js +21 -4
- package/dist/src/cli/commands/team.js.map +1 -1
- package/dist/src/cli/helpers/init/claude-settings-permissions.d.ts +9 -6
- package/dist/src/cli/helpers/init/claude-settings-permissions.d.ts.map +1 -1
- package/dist/src/cli/helpers/init/claude-settings-permissions.js +22 -7
- package/dist/src/cli/helpers/init/claude-settings-permissions.js.map +1 -1
- package/package.json +1 -1
- package/plugins/specweave/commands/cancel-auto.md +1 -1
- package/plugins/specweave/commands/docs.md +1 -1
- package/plugins/specweave/commands/doctor.md +1 -1
- package/plugins/specweave/commands/framework.md +1 -1
- package/plugins/specweave/commands/jobs.md +1 -1
- package/plugins/specweave/commands/lsp.md +1 -1
- package/plugins/specweave/commands/progress.md +1 -1
- package/plugins/specweave/commands/save.md +1 -1
- package/plugins/specweave/skills/architect/SKILL.md +1 -1
- package/plugins/specweave/skills/auto/SKILL.md +1 -1
- package/plugins/specweave/skills/debug/SKILL.md +1 -1
- package/plugins/specweave/skills/do/SKILL.md +1 -1
- package/plugins/specweave/skills/done/SKILL.md +1 -1
- package/plugins/specweave/skills/e2e/SKILL.md +1 -1
- package/plugins/specweave/skills/grill/SKILL.md +1 -1
- package/plugins/specweave/skills/increment/SKILL.md +1 -1
- package/plugins/specweave/skills/pm/SKILL.md +1 -1
- package/plugins/specweave/skills/skill-gen/SKILL.md +1 -1
- package/plugins/specweave/skills/sync-docs/SKILL.md +1 -1
- package/plugins/specweave/skills/tdd-cycle/SKILL.md +1 -1
- package/plugins/specweave/skills/tdd-green/SKILL.md +1 -1
- package/plugins/specweave/skills/tdd-red/SKILL.md +1 -1
- package/plugins/specweave/skills/validate/SKILL.md +1 -1
- package/plugins/specweave/scripts/skill-memories.sh +0 -16
|
@@ -5,8 +5,12 @@
|
|
|
5
5
|
* Automatically creates a tmux session if not already in one,
|
|
6
6
|
* so agents get their own split panes.
|
|
7
7
|
*
|
|
8
|
+
* Cross-platform:
|
|
9
|
+
* macOS/Linux: auto-launches tmux for split-pane agent views
|
|
10
|
+
* Windows: uses in-process mode (tmux unavailable natively)
|
|
11
|
+
*
|
|
8
12
|
* Usage:
|
|
9
|
-
* specweave team # Auto-launches in tmux
|
|
13
|
+
* specweave team # Auto-launches in tmux (macOS/Linux)
|
|
10
14
|
* specweave team "Build auth system" # Launch with initial prompt
|
|
11
15
|
* specweave team --mode in-process # Force in-process mode (no tmux)
|
|
12
16
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"team.d.ts","sourceRoot":"","sources":["../../../../src/cli/commands/team.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"team.d.ts","sourceRoot":"","sources":["../../../../src/cli/commands/team.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AASH,MAAM,WAAW,kBAAkB;IACjC,IAAI,CAAC,EAAE,MAAM,GAAG,YAAY,CAAC;IAC7B,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAwCD;;GAEG;AACH,wBAAsB,iBAAiB,CACrC,WAAW,EAAE,MAAM,GAAG,SAAS,EAC/B,OAAO,EAAE,kBAAkB,GAC1B,OAAO,CAAC,IAAI,CAAC,CAiEf"}
|
|
@@ -5,8 +5,12 @@
|
|
|
5
5
|
* Automatically creates a tmux session if not already in one,
|
|
6
6
|
* so agents get their own split panes.
|
|
7
7
|
*
|
|
8
|
+
* Cross-platform:
|
|
9
|
+
* macOS/Linux: auto-launches tmux for split-pane agent views
|
|
10
|
+
* Windows: uses in-process mode (tmux unavailable natively)
|
|
11
|
+
*
|
|
8
12
|
* Usage:
|
|
9
|
-
* specweave team # Auto-launches in tmux
|
|
13
|
+
* specweave team # Auto-launches in tmux (macOS/Linux)
|
|
10
14
|
* specweave team "Build auth system" # Launch with initial prompt
|
|
11
15
|
* specweave team --mode in-process # Force in-process mode (no tmux)
|
|
12
16
|
*/
|
|
@@ -25,6 +29,19 @@ function isToolAvailable(tool) {
|
|
|
25
29
|
const result = execFileNoThrowSync(which, [tool]);
|
|
26
30
|
return result.success;
|
|
27
31
|
}
|
|
32
|
+
/**
|
|
33
|
+
* Platform-appropriate install hint for tmux.
|
|
34
|
+
*/
|
|
35
|
+
function tmuxInstallHint() {
|
|
36
|
+
switch (process.platform) {
|
|
37
|
+
case 'darwin':
|
|
38
|
+
return 'brew install tmux';
|
|
39
|
+
case 'win32':
|
|
40
|
+
return 'Use WSL: wsl --install, then: sudo apt install tmux';
|
|
41
|
+
default:
|
|
42
|
+
return 'sudo apt install tmux # or your package manager';
|
|
43
|
+
}
|
|
44
|
+
}
|
|
28
45
|
/**
|
|
29
46
|
* Reconstruct CLI args for re-launching inside tmux.
|
|
30
47
|
*/
|
|
@@ -114,7 +131,7 @@ function resolveMode(description, options) {
|
|
|
114
131
|
if (process.env.TMUX) {
|
|
115
132
|
return 'tmux';
|
|
116
133
|
}
|
|
117
|
-
// iTerm2 available — Claude auto-detects iTerm2 split panes
|
|
134
|
+
// iTerm2 available (macOS) — Claude auto-detects iTerm2 split panes
|
|
118
135
|
if (isToolAvailable('it2')) {
|
|
119
136
|
return 'tmux';
|
|
120
137
|
}
|
|
@@ -143,9 +160,9 @@ function resolveMode(description, options) {
|
|
|
143
160
|
});
|
|
144
161
|
return null; // Signal: re-launched, don't continue
|
|
145
162
|
}
|
|
146
|
-
// No tmux
|
|
163
|
+
// No tmux available — in-process fallback with platform-specific hint
|
|
147
164
|
console.log(chalk.yellow('tmux not found. Agents will run in-process (same pane).'));
|
|
148
|
-
console.log(chalk.gray(
|
|
165
|
+
console.log(chalk.gray(`Install tmux for split-pane agent views: ${tmuxInstallHint()}`));
|
|
149
166
|
return 'in-process';
|
|
150
167
|
}
|
|
151
168
|
//# sourceMappingURL=team.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"team.js","sourceRoot":"","sources":["../../../../src/cli/commands/team.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"team.js","sourceRoot":"","sources":["../../../../src/cli/commands/team.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,16 +2,19 @@
|
|
|
2
2
|
* Claude Settings Permission Configuration
|
|
3
3
|
*
|
|
4
4
|
* Adds DCI script patterns to .claude/settings.json permissions.allow
|
|
5
|
-
* so skill-
|
|
6
|
-
*
|
|
7
|
-
*
|
|
5
|
+
* so skill-context.sh can execute without interactive approval.
|
|
6
|
+
* Required for non-interactive environments (anymodel, proxies) and
|
|
7
|
+
* users with restrictive permission settings.
|
|
8
|
+
*
|
|
9
|
+
* Note: skill-memories.sh was replaced with instruction-based loading
|
|
10
|
+
* (cross-platform, no shell needed). Only skill-context.sh remains as DCI.
|
|
8
11
|
*/
|
|
9
12
|
/**
|
|
10
13
|
* Add DCI script permissions to project-level .claude/settings.json
|
|
11
14
|
*
|
|
12
|
-
* Adds patterns for skill-
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
+
* Adds patterns for skill-context.sh to the permissions.allow array.
|
|
16
|
+
* Idempotent — skips patterns already present. Also cleans up legacy
|
|
17
|
+
* skill-memories.sh patterns. Skips if user has blanket "Bash" permission.
|
|
15
18
|
*/
|
|
16
19
|
export declare function enableDciPermissions(projectDir: string): void;
|
|
17
20
|
//# sourceMappingURL=claude-settings-permissions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"claude-settings-permissions.d.ts","sourceRoot":"","sources":["../../../../../src/cli/helpers/init/claude-settings-permissions.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"claude-settings-permissions.d.ts","sourceRoot":"","sources":["../../../../../src/cli/helpers/init/claude-settings-permissions.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAeH;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAkD7D"}
|
|
@@ -2,23 +2,29 @@
|
|
|
2
2
|
* Claude Settings Permission Configuration
|
|
3
3
|
*
|
|
4
4
|
* Adds DCI script patterns to .claude/settings.json permissions.allow
|
|
5
|
-
* so skill-
|
|
6
|
-
*
|
|
7
|
-
*
|
|
5
|
+
* so skill-context.sh can execute without interactive approval.
|
|
6
|
+
* Required for non-interactive environments (anymodel, proxies) and
|
|
7
|
+
* users with restrictive permission settings.
|
|
8
|
+
*
|
|
9
|
+
* Note: skill-memories.sh was replaced with instruction-based loading
|
|
10
|
+
* (cross-platform, no shell needed). Only skill-context.sh remains as DCI.
|
|
8
11
|
*/
|
|
9
12
|
import * as fs from '../../../utils/fs-native.js';
|
|
10
13
|
import * as path from 'path';
|
|
11
14
|
/** Bash patterns that DCI hooks need auto-approved */
|
|
12
15
|
const DCI_PATTERNS = [
|
|
13
|
-
'Bash(.specweave/scripts/skill-memories.sh *)',
|
|
14
16
|
'Bash(.specweave/scripts/skill-context.sh *)',
|
|
15
17
|
];
|
|
18
|
+
/** Legacy pattern to clean up from existing settings */
|
|
19
|
+
const LEGACY_PATTERNS = [
|
|
20
|
+
'Bash(.specweave/scripts/skill-memories.sh *)',
|
|
21
|
+
];
|
|
16
22
|
/**
|
|
17
23
|
* Add DCI script permissions to project-level .claude/settings.json
|
|
18
24
|
*
|
|
19
|
-
* Adds patterns for skill-
|
|
20
|
-
*
|
|
21
|
-
*
|
|
25
|
+
* Adds patterns for skill-context.sh to the permissions.allow array.
|
|
26
|
+
* Idempotent — skips patterns already present. Also cleans up legacy
|
|
27
|
+
* skill-memories.sh patterns. Skips if user has blanket "Bash" permission.
|
|
22
28
|
*/
|
|
23
29
|
export function enableDciPermissions(projectDir) {
|
|
24
30
|
const claudeDir = path.join(projectDir, '.claude');
|
|
@@ -40,12 +46,21 @@ export function enableDciPermissions(projectDir) {
|
|
|
40
46
|
return;
|
|
41
47
|
}
|
|
42
48
|
let changed = false;
|
|
49
|
+
// Add current DCI patterns
|
|
43
50
|
for (const pattern of DCI_PATTERNS) {
|
|
44
51
|
if (!allow.includes(pattern)) {
|
|
45
52
|
allow.push(pattern);
|
|
46
53
|
changed = true;
|
|
47
54
|
}
|
|
48
55
|
}
|
|
56
|
+
// Remove legacy patterns (skill-memories.sh no longer used as DCI)
|
|
57
|
+
for (const legacy of LEGACY_PATTERNS) {
|
|
58
|
+
const idx = allow.indexOf(legacy);
|
|
59
|
+
if (idx !== -1) {
|
|
60
|
+
allow.splice(idx, 1);
|
|
61
|
+
changed = true;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
49
64
|
if (!changed) {
|
|
50
65
|
return;
|
|
51
66
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"claude-settings-permissions.js","sourceRoot":"","sources":["../../../../../src/cli/helpers/init/claude-settings-permissions.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"claude-settings-permissions.js","sourceRoot":"","sources":["../../../../../src/cli/helpers/init/claude-settings-permissions.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,MAAM,6BAA6B,CAAC;AAClD,OAAO,KAAK,IAAI,MAAM,MAAM,CAAC;AAE7B,sDAAsD;AACtD,MAAM,YAAY,GAAG;IACnB,6CAA6C;CAC9C,CAAC;AAEF,wDAAwD;AACxD,MAAM,eAAe,GAAG;IACtB,8CAA8C;CAC/C,CAAC;AAEF;;;;;;GAMG;AACH,MAAM,UAAU,oBAAoB,CAAC,UAAkB;IACrD,MAAM,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,SAAS,CAAC,CAAC;IACnD,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,eAAe,CAAC,CAAC;IAE3D,EAAE,CAAC,SAAS,CAAC,SAAS,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAE7C,IAAI,QAAQ,GAA4B,EAAE,CAAC;IAC3C,IAAI,EAAE,CAAC,UAAU,CAAC,YAAY,CAAC,EAAE,CAAC;QAChC,IAAI,CAAC;YACH,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC,CAAC;QAChE,CAAC;QAAC,MAAM,CAAC;YACP,QAAQ,GAAG,EAAE,CAAC;QAChB,CAAC;IACH,CAAC;IAED,MAAM,WAAW,GAAG,CAAC,QAAQ,CAAC,WAAW,IAAI,EAAE,CAA4B,CAAC;IAC5E,MAAM,KAAK,GAAG,CAAC,WAAW,CAAC,KAAK,IAAI,EAAE,CAAa,CAAC;IAEpD,0EAA0E;IAC1E,IAAI,KAAK,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC;QAC3B,OAAO;IACT,CAAC;IAED,IAAI,OAAO,GAAG,KAAK,CAAC;IAEpB,2BAA2B;IAC3B,KAAK,MAAM,OAAO,IAAI,YAAY,EAAE,CAAC;QACnC,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE,CAAC;YAC7B,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;YACpB,OAAO,GAAG,IAAI,CAAC;QACjB,CAAC;IACH,CAAC;IAED,mEAAmE;IACnE,KAAK,MAAM,MAAM,IAAI,eAAe,EAAE,CAAC;QACrC,MAAM,GAAG,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAClC,IAAI,GAAG,KAAK,CAAC,CAAC,EAAE,CAAC;YACf,KAAK,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;YACrB,OAAO,GAAG,IAAI,CAAC;QACjB,CAAC;IACH,CAAC;IAED,IAAI,CAAC,OAAO,EAAE,CAAC;QACb,OAAO;IACT,CAAC;IAED,WAAW,CAAC,KAAK,GAAG,KAAK,CAAC;IAC1B,QAAQ,CAAC,WAAW,GAAG,WAAW,CAAC;IAEnC,EAAE,CAAC,aAAa,CAAC,YAAY,EAAE,IAAI,CAAC,SAAS,CAAC,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;AAC3E,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specweave",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.566",
|
|
4
4
|
"description": "100+ domain-expert AI skills — PM, Architect, Frontend, QA, Security and more. Skills learn your team's patterns permanently. Spec-first planning, autonomous execution, multi-agent teams, synced to GitHub/JIRA. Claude Code, Cursor, Copilot & more.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -7,7 +7,7 @@ description: EMERGENCY ONLY - Cancel running auto session and generate summary r
|
|
|
7
7
|
|
|
8
8
|
## Project Overrides
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
**Skill Memories**: If `.specweave/skill-memories/cancel-auto.md` exists, read and apply its learnings.
|
|
11
11
|
|
|
12
12
|
**⚠️ EMERGENCY USE ONLY - Manually cancel the running auto session.**
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ argument-hint: "[topic] [--serve] [--status] [--public] [--internal] [--adr] [--
|
|
|
7
7
|
|
|
8
8
|
## Project Overrides
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
**Skill Memories**: If `.specweave/skill-memories/docs.md` exists, read and apply its learnings.
|
|
11
11
|
|
|
12
12
|
Browse, search, load, and serve SpecWeave living documentation.
|
|
13
13
|
|
|
@@ -8,7 +8,7 @@ user-invocable: false
|
|
|
8
8
|
|
|
9
9
|
## Project Overrides
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
**Skill Memories**: If `.specweave/skill-memories/framework.md` exists, read and apply its learnings.
|
|
12
12
|
|
|
13
13
|
I am an expert on the SpecWeave framework - a spec-driven development framework for Claude Code (and other AI coding assistants). I have deep knowledge of its structure, rules, conventions, and best practices.
|
|
14
14
|
|
|
@@ -7,7 +7,7 @@ argument-hint: "[--all] [--id job-id]"
|
|
|
7
7
|
|
|
8
8
|
## Project Overrides
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
**Skill Memories**: If `.specweave/skill-memories/jobs.md` exists, read and apply its learnings.
|
|
11
11
|
|
|
12
12
|
Shows background job information including:
|
|
13
13
|
- **Clone jobs** — repository cloning progress and status
|
|
@@ -29,7 +29,7 @@ Replace `XXXX-name` with the actual increment ID. **This unblocks the guard for
|
|
|
29
29
|
|
|
30
30
|
## Project Overrides
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
**Skill Memories**: If `.specweave/skill-memories/architect.md` exists, read and apply its learnings.
|
|
33
33
|
|
|
34
34
|
## Design Approach
|
|
35
35
|
|
|
@@ -7,7 +7,7 @@ argument-hint: "<increment-id> [--auto]"
|
|
|
7
7
|
|
|
8
8
|
## Project Overrides
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
**Skill Memories**: If `.specweave/skill-memories/done.md` exists, read and apply its learnings.
|
|
11
11
|
|
|
12
12
|
**PM-Led Closure**: Validate tasks, tests, and docs before closing.
|
|
13
13
|
|
|
@@ -10,7 +10,7 @@ model: sonnet
|
|
|
10
10
|
|
|
11
11
|
## Project Overrides
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
**Skill Memories**: If `.specweave/skill-memories/e2e.md` exists, read and apply its learnings.
|
|
14
14
|
|
|
15
15
|
Generate Playwright E2E tests from spec.md acceptance criteria, run them, and produce a structured report that maps pass/fail results to AC-IDs. Consumed by sw:done Gate 2a for automated closure gating.
|
|
16
16
|
|
|
@@ -10,7 +10,7 @@ model: opus
|
|
|
10
10
|
|
|
11
11
|
## Project Overrides
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
**Skill Memories**: If `.specweave/skill-memories/grill.md` exists, read and apply its learnings.
|
|
14
14
|
|
|
15
15
|
I'm a demanding senior engineer who stress-tests your implementation before it ships. My job is to find issues NOW, before users do. I'm not here to validate - I'm here to CHALLENGE.
|
|
16
16
|
|
|
@@ -18,7 +18,7 @@ Increment planning produces specs, plans, and task breakdowns that require user
|
|
|
18
18
|
|
|
19
19
|
## Project Overrides
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
**Skill Memories**: If `.specweave/skill-memories/increment.md` exists, read and apply its learnings.
|
|
22
22
|
|
|
23
23
|
## Project Context
|
|
24
24
|
|
|
@@ -9,7 +9,7 @@ model: opus
|
|
|
9
9
|
|
|
10
10
|
## Project Overrides
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
**Skill Memories**: If `.specweave/skill-memories/skill-gen.md` exists, read and apply its learnings.
|
|
13
13
|
|
|
14
14
|
Generate project-local skills from recurring patterns detected across increment closures.
|
|
15
15
|
|
|
@@ -7,7 +7,7 @@ argument-hint: "<increment-id> [--review]"
|
|
|
7
7
|
|
|
8
8
|
## Project Overrides
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
**Skill Memories**: If `.specweave/skill-memories/sync-docs.md` exists, read and apply its learnings.
|
|
11
11
|
|
|
12
12
|
Sync living documentation for an increment. This generates or updates feature specs and user story files under `.specweave/docs/internal/specs/`.
|
|
13
13
|
|
|
@@ -6,7 +6,7 @@ description: Execute full TDD red-green-refactor cycle with validation gates. Us
|
|
|
6
6
|
|
|
7
7
|
## Project Overrides
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
**Skill Memories**: If `.specweave/skill-memories/tdd-cycle.md` exists, read and apply its learnings.
|
|
10
10
|
|
|
11
11
|
Execute a comprehensive Test-Driven Development (TDD) workflow with strict red-green-refactor discipline:
|
|
12
12
|
|
|
@@ -6,7 +6,7 @@ description: Write minimal code to make failing tests pass. Use when saying "TDD
|
|
|
6
6
|
|
|
7
7
|
## Project Overrides
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
**Skill Memories**: If `.specweave/skill-memories/tdd-green.md` exists, read and apply its learnings.
|
|
10
10
|
|
|
11
11
|
Implement minimal code to make failing tests pass in TDD green phase.
|
|
12
12
|
|
|
@@ -6,7 +6,7 @@ description: Write failing tests that define expected behavior. Use when saying
|
|
|
6
6
|
|
|
7
7
|
## Project Overrides
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
**Skill Memories**: If `.specweave/skill-memories/tdd-red.md` exists, read and apply its learnings.
|
|
10
10
|
|
|
11
11
|
Write comprehensive failing tests following TDD red phase principles.
|
|
12
12
|
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
# skill-memories.sh — Load skill-specific learnings for DCI blocks
|
|
3
|
-
#
|
|
4
|
-
# Usage: .specweave/scripts/skill-memories.sh <skill-name>
|
|
5
|
-
# Output: Learnings bullet points from the skill's memory file
|
|
6
|
-
# Cascade: .specweave/ → .claude/ → ~/.claude/ (first match wins)
|
|
7
|
-
# Exit: Always 0 (graceful degradation)
|
|
8
|
-
#
|
|
9
|
-
# Performance: <10ms. Single awk call on first matching file.
|
|
10
|
-
|
|
11
|
-
s="${1:?Usage: skill-memories.sh <skill-name>}"
|
|
12
|
-
for d in .specweave/skill-memories .claude/skill-memories "$HOME/.claude/skill-memories"; do
|
|
13
|
-
p="$d/$s.md"
|
|
14
|
-
[ -f "$p" ] && awk '/^## Learnings$/{ok=1;next}/^## /{ok=0}ok' "$p" && break
|
|
15
|
-
done 2>/dev/null
|
|
16
|
-
exit 0
|