claude-blueprint 2.0.3 → 2.0.4
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-plugin/plugin.json +1 -1
- package/hooks/hooks.json +1 -1
- package/hooks/retro-suggest.js +2 -3
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blueprint",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Architecture Decision Records with teeth — 39 commands, 21 agents, 15 architecture paradigms. DDD bounded contexts, DCAR forces evaluation, reflexion model conformance, epistemic status tracking, Wardley strategic analysis, C4 diagrams, ATAM tradeoff analysis, risk heat maps, cross-repo federation, and configurable governance tiers. All with a cranky senior engineer persona.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "pragnition"
|
package/hooks/hooks.json
CHANGED
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"timeout": 5
|
|
39
39
|
}
|
|
40
40
|
],
|
|
41
|
-
"_comment": "Retro-suggest after fix commits
|
|
41
|
+
"_comment": "Retro-suggest after fix commits (ADR-0034). Requires node in PATH (symlink from nvm to ~/.local/bin/ if needed)."
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
"matcher": "Skill",
|
package/hooks/retro-suggest.js
CHANGED
|
@@ -11,9 +11,8 @@ process.stdin.on('end', () => {
|
|
|
11
11
|
clearTimeout(timeout);
|
|
12
12
|
try {
|
|
13
13
|
const data = JSON.parse(input);
|
|
14
|
-
const toolName = data.tool_name || '';
|
|
15
14
|
const toolInput = data.tool_input || {};
|
|
16
|
-
const
|
|
15
|
+
const toolResponse = data.tool_response || '';
|
|
17
16
|
|
|
18
17
|
// Only match git commit commands
|
|
19
18
|
const cmd = toolInput.command || '';
|
|
@@ -22,7 +21,7 @@ process.stdin.on('end', () => {
|
|
|
22
21
|
}
|
|
23
22
|
|
|
24
23
|
// Only match if commit succeeded and message contains fix keywords
|
|
25
|
-
const output = typeof
|
|
24
|
+
const output = typeof toolResponse === 'string' ? toolResponse : JSON.stringify(toolResponse);
|
|
26
25
|
if (/\b(fix|bugfix|hotfix|patch)\b/i.test(output) && !output.includes('nothing to commit')) {
|
|
27
26
|
const result = {
|
|
28
27
|
hookSpecificOutput: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-blueprint",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Architecture Decision Records with teeth — lifecycle management, 15 architecture paradigms, DDD context scoping, DCAR forces evaluation, reflexion models, Wardley mapping, C4 diagrams, ATAM tradeoff analysis, and 19 specialized agents for Claude Code.",
|
|
6
6
|
"bin": {
|