@anthropologies/claudestory 0.1.62 → 0.1.64
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.js +8644 -3917
- package/dist/index.d.ts +22 -5
- package/dist/index.js +137 -14
- package/dist/mcp.js +6215 -2553
- package/package.json +3 -2
- package/src/skill/review-lenses/review-lenses.md +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anthropologies/claudestory",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.64",
|
|
4
4
|
"license": "PolyForm-Noncommercial-1.0.0",
|
|
5
5
|
"description": "An agentic development framework. Track tickets, issues, and progress for your project so every session builds on the last.",
|
|
6
6
|
"homepage": "https://claudestory.com",
|
|
@@ -40,7 +40,8 @@
|
|
|
40
40
|
"build": "tsup",
|
|
41
41
|
"test": "vitest run",
|
|
42
42
|
"test:watch": "vitest",
|
|
43
|
-
"dev": "tsup --watch"
|
|
43
|
+
"dev": "tsup --watch",
|
|
44
|
+
"prepublishOnly": "npm run build && npm test"
|
|
44
45
|
},
|
|
45
46
|
"dependencies": {
|
|
46
47
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
@@ -109,6 +109,7 @@ Call `claudestory_review_lenses_judge` with:
|
|
|
109
109
|
```json
|
|
110
110
|
{
|
|
111
111
|
"mergerResultRaw": "<raw JSON from merger agent>",
|
|
112
|
+
"sourceFindings": "<validatedFindings array from the synthesize step>",
|
|
112
113
|
"lensesCompleted": ["clean-code", "security", "error-handling"],
|
|
113
114
|
"lensesFailed": [],
|
|
114
115
|
"lensesInsufficientContext": [],
|
|
@@ -119,6 +120,8 @@ Call `claudestory_review_lenses_judge` with:
|
|
|
119
120
|
}
|
|
120
121
|
```
|
|
121
122
|
|
|
123
|
+
Pass `validatedFindings` from the synthesize step as `sourceFindings`. The tool uses it to restore validator-owned evidence markers the merger LLM may have dropped (CDX-13).
|
|
124
|
+
|
|
122
125
|
The tool returns `judgePrompt` with verdict calibration rules and convergence guidance.
|
|
123
126
|
|
|
124
127
|
### Step 9: Run judge agent
|