harnessed 4.1.2 → 4.2.0
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/cli.mjs +5604 -5040
- package/dist/cli.mjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/workflows/verify/code-review/workflow.yaml +3 -0
- package/workflows/verify/design/workflow.yaml +3 -0
- package/workflows/verify/multispec/workflow.yaml +4 -0
- package/workflows/verify/paranoid/workflow.yaml +3 -0
- package/workflows/verify/qa/workflow.yaml +3 -0
- package/workflows/verify/security/workflow.yaml +3 -0
package/dist/index.mjs
CHANGED
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../package.json","../src/index.ts"],"names":[],"mappings":";AAAA,IAAA,eAAA,GAAA;AAAA,EAEE,OAAA,EAAW,OAgGb,CAAA;;;AC7FO,IAAM,UAAU,eAAA,CAAI","file":"index.mjs","sourcesContent":["{\n \"name\": \"harnessed\",\n \"version\": \"4.
|
|
1
|
+
{"version":3,"sources":["../package.json","../src/index.ts"],"names":[],"mappings":";AAAA,IAAA,eAAA,GAAA;AAAA,EAEE,OAAA,EAAW,OAgGb,CAAA;;;AC7FO,IAAM,UAAU,eAAA,CAAI","file":"index.mjs","sourcesContent":["{\n \"name\": \"harnessed\",\n \"version\": \"4.2.0\",\n \"description\": \"AI coding harness package manager + composition orchestrator\",\n \"type\": \"module\",\n \"license\": \"Apache-2.0\",\n \"author\": \"easyinplay\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/easyinplay/harnessed.git\"\n },\n \"homepage\": \"https://github.com/easyinplay/harnessed#readme\",\n \"bugs\": \"https://github.com/easyinplay/harnessed/issues\",\n \"keywords\": [\n \"claude-code\",\n \"ai-harness\",\n \"package-manager\",\n \"composition\",\n \"skill-pack\",\n \"mcp\",\n \"orchestrator\"\n ],\n \"engines\": {\n \"node\": \">=22.0.0\"\n },\n \"packageManager\": \"pnpm@10.12.0\",\n \"bin\": {\n \"harnessed\": \"./dist/cli.mjs\"\n },\n \"main\": \"./dist/index.mjs\",\n \"types\": \"./dist/index.d.ts\",\n \"exports\": {\n \".\": {\n \"types\": \"./dist/index.d.ts\",\n \"import\": \"./dist/index.mjs\",\n \"default\": \"./dist/index.mjs\"\n },\n \"./schemas\": {\n \"types\": \"./dist/schemas/index.d.ts\",\n \"import\": \"./dist/schemas/index.mjs\"\n },\n \"./package.json\": \"./package.json\"\n },\n \"files\": [\n \"dist\",\n \"manifests\",\n \"messages\",\n \"workflows\",\n \"routing\",\n \"config-templates\",\n \"schemas\",\n \"README.md\",\n \"LICENSE\",\n \"NOTICE\",\n \"THIRD-PARTY-NOTICES.md\"\n ],\n \"scripts\": {\n \"dev\": \"tsup --watch\",\n \"build\": \"tsc --noEmit && tsup\",\n \"build:schema\": \"node ./scripts/build-schema.mjs\",\n \"validate:schema\": \"node ./scripts/validate-schema.mjs\",\n \"typecheck\": \"tsc --noEmit\",\n \"test\": \"vitest run --passWithNoTests\",\n \"test:watch\": \"vitest\",\n \"test:coverage\": \"vitest run --coverage --passWithNoTests\",\n \"bench\": \"vitest bench --run\",\n \"lint\": \"biome check .\",\n \"lint:fix\": \"biome check --write .\",\n \"format\": \"biome format --write .\"\n },\n \"dependencies\": {\n \"@anthropic-ai/claude-agent-sdk\": \"0.3.142\",\n \"@clack/prompts\": \"^0.10.1\",\n \"@sinclair/typebox\": \"^0.34.49\",\n \"ajv\": \"^8.20.0\",\n \"ajv-errors\": \"^3.0.0\",\n \"ajv-formats\": \"^3.0.1\",\n \"commander\": \"^13.0.0\",\n \"diff\": \"^9.0.0\",\n \"expr-eval\": \"^2.0.2\",\n \"picocolors\": \"^1.1.1\",\n \"proper-lockfile\": \"^4.1.2\",\n \"yaml\": \"^2.9.0\"\n },\n \"devDependencies\": {\n \"@biomejs/biome\": \"^2.0.0\",\n \"@types/node\": \"^22.10.0\",\n \"@types/proper-lockfile\": \"^4.1.4\",\n \"@vitest/coverage-v8\": \"^4.0.0\",\n \"tsup\": \"^8.3.0\",\n \"typescript\": \"^5.6.0\",\n \"vitest\": \"^4.0.0\"\n },\n \"pnpm\": {\n \"onlyBuiltDependencies\": [\n \"esbuild\"\n ]\n }\n}\n","// Main library entry — re-exports public APIs.\n// phase 1.1 batch 1: skeleton only; schema validator wired in batch 2 (T3+).\n\nimport pkg from '../package.json' with { type: 'json' }\n\nexport const VERSION = pkg.version\n"]}
|
package/package.json
CHANGED
|
@@ -28,3 +28,6 @@ phases:
|
|
|
28
28
|
model: sonnet
|
|
29
29
|
parallelism: judgments.parallelism-gate.subagent-default.fires
|
|
30
30
|
max_iterations: '{{ defaults.ralph_max_iterations.verify-code-review.01-code-review }}'
|
|
31
|
+
# D2-followup (ADR-0033): declare report artifact so the evidence guard is real
|
|
32
|
+
# (verified, not none_declared) — proves the multi-agent code-review actually ran.
|
|
33
|
+
artifacts_expected: [code-review-report.md]
|
|
@@ -30,3 +30,6 @@ phases:
|
|
|
30
30
|
model: sonnet
|
|
31
31
|
gate: judgments.stage-routing.verify-design-changes.fires
|
|
32
32
|
max_iterations: 3
|
|
33
|
+
# D2-followup (ADR-0033): declare report artifact so the evidence guard is real
|
|
34
|
+
# (verified, not none_declared) — proves the design-review consistency pass actually ran.
|
|
35
|
+
artifacts_expected: [design-review-report.md]
|
|
@@ -48,6 +48,10 @@ phases:
|
|
|
48
48
|
max_iterations: 1
|
|
49
49
|
# v3.8.0 P1 — Pattern C team create is THE archetypical Agent Teams phase; full 3-RULES inject.
|
|
50
50
|
injects_rules: [escalation, transparent-skip, agent-teams-prevention]
|
|
51
|
+
# D2-followup (ADR-0033): declare report artifact so the evidence guard is real
|
|
52
|
+
# (verified, not none_declared) — the 4-specialist team's cross-questioned findings
|
|
53
|
+
# land in one aggregated multi-dimensional review report (proves the team review ran).
|
|
54
|
+
artifacts_expected: [multispec-review-report.md]
|
|
51
55
|
|
|
52
56
|
- id: 02-team-cleanup
|
|
53
57
|
name: Agent Team cleanup (shutdown_request + TeamDelete 防呆清单)
|
|
@@ -27,3 +27,6 @@ phases:
|
|
|
27
27
|
model: opus
|
|
28
28
|
gate: judgments.stage-routing.verify-paranoid-critical.fires
|
|
29
29
|
max_iterations: '{{ defaults.ralph_max_iterations.verify-paranoid.01-review }}'
|
|
30
|
+
# D2-followup (ADR-0033): declare report artifact so the evidence guard is real
|
|
31
|
+
# (verified, not none_declared) — proves the Paranoid Staff Engineer review actually ran.
|
|
32
|
+
artifacts_expected: [paranoid-review-report.md]
|
|
@@ -28,3 +28,6 @@ phases:
|
|
|
28
28
|
model: sonnet
|
|
29
29
|
gate: judgments.stage-routing.verify-qa-ui.fires
|
|
30
30
|
max_iterations: 3
|
|
31
|
+
# D2-followup (ADR-0033): declare report artifact so the evidence guard is real
|
|
32
|
+
# (verified, not none_declared) — proves the end-to-end QA pass actually ran.
|
|
33
|
+
artifacts_expected: [qa-report.md]
|
|
@@ -28,3 +28,6 @@ phases:
|
|
|
28
28
|
model: opus
|
|
29
29
|
gate: judgments.stage-routing.verify-security-secrets.fires
|
|
30
30
|
max_iterations: 3
|
|
31
|
+
# D2-followup (ADR-0033): declare report artifact so the evidence guard is real
|
|
32
|
+
# (verified, not none_declared) — proves the CSO OWASP/secrets audit actually ran.
|
|
33
|
+
artifacts_expected: [security-audit-report.md]
|