@pieerry/harness-kit 3.3.0 → 3.3.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/.claude/commands/product-manager/run.md +4 -0
- package/.claude/commands/sse/dev.md +1 -1
- package/.claude/commands/sse/pr.md +1 -1
- package/.claude/commands/sse/run.md +8 -1
- package/.claude/commands/sse/test.md +1 -1
- package/.claude/plugins/staff-software-engineer/guides/pipeline.md +9 -5
- package/README.md +1 -1
- package/VERSION +1 -1
- package/package.json +1 -1
|
@@ -28,6 +28,10 @@ PRP: .claude/plugins/product-manager/outputs/prp/{path}
|
|
|
28
28
|
guides: prp-guidelines.md, writing-style.md, templates/prp.md
|
|
29
29
|
refs: prd/{feature_id}.md, target repo paths probed
|
|
30
30
|
|
|
31
|
+
Tokens: outputs/tokens/{feature_id}.json
|
|
32
|
+
totals: in={N} out={N} cache_r={N}
|
|
33
|
+
phases: prd-generate, prd-validate, prp-generate, prp-validate
|
|
34
|
+
|
|
31
35
|
Confluence: {published to {space-key}: {url} | skipped, reason}
|
|
32
36
|
|
|
33
37
|
Blockers:
|
|
@@ -11,7 +11,7 @@ Source plan: latest in .claude/plugins/staff-software-engineer/outputs/plan/ wit
|
|
|
11
11
|
Before coding, write phase start marker:
|
|
12
12
|
|
|
13
13
|
```
|
|
14
|
-
.claude/plugins/staff-software-engineer/outputs/.markers/{feature_id}.dev.start
|
|
14
|
+
.claude/plugins/staff-software-engineer/outputs/.markers/{feature_id}.dev-generate.start
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
Read:
|
|
@@ -13,7 +13,7 @@ Prerequisites:
|
|
|
13
13
|
Before opening, write phase start marker:
|
|
14
14
|
|
|
15
15
|
```
|
|
16
|
-
.claude/plugins/staff-software-engineer/outputs/.markers/{feature_id}.pr.start
|
|
16
|
+
.claude/plugins/staff-software-engineer/outputs/.markers/{feature_id}.pr-generate.start
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
Read:
|
|
@@ -8,7 +8,8 @@ Run end to end.
|
|
|
8
8
|
2. Invoke /sse:dev. Implements plan in code.
|
|
9
9
|
3. Invoke /sse:test. Runs project test suite.
|
|
10
10
|
4. Invoke /sse:pr. Opens pull request.
|
|
11
|
-
5.
|
|
11
|
+
5. Invoke /sse:pr-monitor. Arms backoff polling, auto-clears pipeline state on merge. Skip if user passed `--no-monitor` or `gh pr view` already returns MERGED.
|
|
12
|
+
6. Return summary.
|
|
12
13
|
|
|
13
14
|
Follow .claude/plugins/staff-software-engineer/guides/pipeline.md for retry, approval markers, token accounting, publish behavior.
|
|
14
15
|
|
|
@@ -41,6 +42,12 @@ PR: {url}
|
|
|
41
42
|
guides: pr-template.md, commit-style.md
|
|
42
43
|
refs: plan/{feature_id}.md, dev/{feature_id}.md
|
|
43
44
|
|
|
45
|
+
Monitor: {armed, first check in 3min, escalates to 30min cap | skipped, reason}
|
|
46
|
+
|
|
47
|
+
Tokens: outputs/tokens/{feature_id}.json
|
|
48
|
+
totals: in={N} out={N} cache_r={N}
|
|
49
|
+
phases: plan-generate, plan-validate, dev-generate, dev-validate, test-generate, test-validate, pr-generate, pr-validate
|
|
50
|
+
|
|
44
51
|
Confluence: {published to {space-key}: {url} | skipped, reason}
|
|
45
52
|
|
|
46
53
|
Blockers:
|
|
@@ -17,7 +17,7 @@ Detect project test command (in order):
|
|
|
17
17
|
Before running, write phase start marker:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
.claude/plugins/staff-software-engineer/outputs/.markers/{feature_id}.test.start
|
|
20
|
+
.claude/plugins/staff-software-engineer/outputs/.markers/{feature_id}.test-generate.start
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
Run test command. Capture stdout and stderr.
|
|
@@ -40,11 +40,15 @@ Triggers hooks/post-eval-{stage}.sh.
|
|
|
40
40
|
|
|
41
41
|
Phases tracked per feature_id (matches PRD/PRP feature_id from PM plugin):
|
|
42
42
|
- plan-generate, plan-validate
|
|
43
|
-
- dev
|
|
44
|
-
- test
|
|
45
|
-
- pr
|
|
46
|
-
|
|
47
|
-
Markers in outputs/.markers/{feature_id}.{phase}.{start|end}, each `{"timestamp": ISO, "session_id": ""}`.
|
|
43
|
+
- dev-generate, dev-validate
|
|
44
|
+
- test-generate, test-validate
|
|
45
|
+
- pr-generate, pr-validate
|
|
46
|
+
|
|
47
|
+
Markers in outputs/.markers/{feature_id}.{phase}.{start|end}, each `{"timestamp": ISO, "session_id": ""}`.
|
|
48
|
+
Flow per stage:
|
|
49
|
+
1. Skill writes `{stage}-generate.start` before drafting artifact.
|
|
50
|
+
2. Write tool fires post-write-sse.sh → writes `{stage}-generate.end` + `{stage}-validate.start`.
|
|
51
|
+
3. Skill appends approval marker via Edit → fires post-eval-sse.sh → writes `{stage}-validate.end` + runs scripts/token-phase.py for both phases.
|
|
48
52
|
|
|
49
53
|
Tokens land in shared file with PM plugin: `outputs/tokens/{feature_id}.json`. Same file collects PM phases (prd-generate, prd-validate, prp-generate, prp-validate) and SSE phases (plan-generate, plan-validate, dev, test, pr). Totals cover full feature lifecycle.
|
|
50
54
|
|
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Claude Code harness for product + engineering delivery.
|
|
6
6
|
From idea to merged PR, one pipeline.
|
|
7
7
|
|
|
8
|
-
[](VERSION)
|
|
9
9
|
[](https://claude.ai/code)
|
|
10
10
|
[](#layout)
|
|
11
11
|
[](#usage)
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.3.
|
|
1
|
+
3.3.1
|
package/package.json
CHANGED