specweave 1.0.560 → 1.0.562
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/package.json +1 -1
- package/plugins/specweave/scripts/skill-memories.sh +16 -0
- 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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specweave",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.562",
|
|
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",
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
|
@@ -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
|
+
!`.specweave/scripts/skill-memories.sh architect 2>/dev/null; true`
|
|
33
33
|
|
|
34
34
|
## Design Approach
|
|
35
35
|
|
|
@@ -8,7 +8,7 @@ argument-hint: "[INCREMENT_IDS...] [OPTIONS]"
|
|
|
8
8
|
|
|
9
9
|
## Project Overrides
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
!`.specweave/scripts/skill-memories.sh auto 2>/dev/null; true`
|
|
12
12
|
|
|
13
13
|
## Project Context
|
|
14
14
|
|
|
@@ -9,7 +9,7 @@ context: fork
|
|
|
9
9
|
|
|
10
10
|
## Project Overrides
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
!`.specweave/scripts/skill-memories.sh debug 2>/dev/null; true`
|
|
13
13
|
|
|
14
14
|
## Iron Law
|
|
15
15
|
|
|
@@ -7,7 +7,7 @@ argument-hint: "<increment-id>"
|
|
|
7
7
|
|
|
8
8
|
## Project Overrides
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
!`.specweave/scripts/skill-memories.sh do 2>/dev/null; true`
|
|
11
11
|
|
|
12
12
|
## Project Context
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ argument-hint: "<increment-id> [--auto]"
|
|
|
7
7
|
|
|
8
8
|
## Project Overrides
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
!`.specweave/scripts/skill-memories.sh done 2>/dev/null; true`
|
|
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
|
+
!`.specweave/scripts/skill-memories.sh e2e 2>/dev/null; true`
|
|
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
|
+
!`.specweave/scripts/skill-memories.sh grill 2>/dev/null; true`
|
|
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
|
+
!`.specweave/scripts/skill-memories.sh increment 2>/dev/null; true`
|
|
22
22
|
|
|
23
23
|
## Project Context
|
|
24
24
|
|
|
@@ -9,7 +9,7 @@ model: opus
|
|
|
9
9
|
|
|
10
10
|
## Project Overrides
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
!`.specweave/scripts/skill-memories.sh pm 2>/dev/null; true`
|
|
13
13
|
|
|
14
14
|
## Overview
|
|
15
15
|
|
|
@@ -9,7 +9,7 @@ model: opus
|
|
|
9
9
|
|
|
10
10
|
## Project Overrides
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
!`.specweave/scripts/skill-memories.sh skill-gen 2>/dev/null; true`
|
|
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
|
+
!`.specweave/scripts/skill-memories.sh sync-docs 2>/dev/null; true`
|
|
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
|
+
!`.specweave/scripts/skill-memories.sh tdd-cycle 2>/dev/null; true`
|
|
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
|
+
!`.specweave/scripts/skill-memories.sh tdd-green 2>/dev/null; true`
|
|
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
|
+
!`.specweave/scripts/skill-memories.sh tdd-red 2>/dev/null; true`
|
|
10
10
|
|
|
11
11
|
Write comprehensive failing tests following TDD red phase principles.
|
|
12
12
|
|
|
@@ -7,7 +7,7 @@ argument-hint: "[increment-id]"
|
|
|
7
7
|
|
|
8
8
|
## Project Overrides
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
!`.specweave/scripts/skill-memories.sh validate 2>/dev/null; true`
|
|
11
11
|
|
|
12
12
|
## Project Context
|
|
13
13
|
|