blun-king-cli 9.1.563 → 9.1.565
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/agent-spine-plugin/.claude-plugin/marketplace.json +20 -20
- package/agent-spine-plugin/.claude-plugin/plugin.json +14 -14
- package/agent-spine-plugin/.codex-plugin/plugin.json +34 -34
- package/agent-spine-plugin/.mcp.json +8 -8
- package/agent-spine-plugin/CONTRIBUTING.md +52 -0
- package/agent-spine-plugin/LICENSE +186 -186
- package/agent-spine-plugin/README.md +394 -0
- package/agent-spine-plugin/SECURITY.md +47 -0
- package/agent-spine-plugin/assets/agentspine-banner.svg +32 -32
- package/agent-spine-plugin/bin/agentspine-mcp.js +4 -4
- package/agent-spine-plugin/bin/agentspine.js +7 -7
- package/agent-spine-plugin/blun.plugin.json +33 -33
- package/agent-spine-plugin/hooks/codex.json +47 -47
- package/agent-spine-plugin/hooks/hooks.json +106 -106
- package/agent-spine-plugin/hooks/version.json +5 -5
- package/agent-spine-plugin/package.json +69 -69
- package/agent-spine-plugin/scripts/check-hosts.js +199 -199
- package/agent-spine-plugin/skill/SKILL.md +76 -76
- package/agent-spine-plugin/skills/agent-spine/SKILL.md +85 -85
- package/agent-spine-plugin/src/cli.js +1488 -1442
- package/agent-spine-plugin/src/hook.js +886 -812
- package/agent-spine-plugin/src/index.js +93 -93
- package/agent-spine-plugin/src/lib/acceptance.js +333 -333
- package/agent-spine-plugin/src/lib/attention.js +755 -755
- package/agent-spine-plugin/src/lib/audit.js +351 -342
- package/agent-spine-plugin/src/lib/authentication.js +515 -515
- package/agent-spine-plugin/src/lib/briefing.js +317 -317
- package/agent-spine-plugin/src/lib/catalog.js +167 -167
- package/agent-spine-plugin/src/lib/channel-runtime.js +665 -665
- package/agent-spine-plugin/src/lib/context.js +154 -154
- package/agent-spine-plugin/src/lib/continuity.js +338 -338
- package/agent-spine-plugin/src/lib/coordination.js +577 -577
- package/agent-spine-plugin/src/lib/documents.js +217 -217
- package/agent-spine-plugin/src/lib/feed-transport.js +499 -499
- package/agent-spine-plugin/src/lib/filesystem-retry.js +32 -32
- package/agent-spine-plugin/src/lib/gateway-runtime.js +1119 -760
- package/agent-spine-plugin/src/lib/graph.js +337 -337
- package/agent-spine-plugin/src/lib/hook-audit.js +29 -0
- package/agent-spine-plugin/src/lib/https-transport.js +392 -392
- package/agent-spine-plugin/src/lib/indexed-memory-offline.js +40 -40
- package/agent-spine-plugin/src/lib/indexed-memory.js +281 -281
- package/agent-spine-plugin/src/lib/learning.js +6923 -6466
- package/agent-spine-plugin/src/lib/object-transport.js +206 -206
- package/agent-spine-plugin/src/lib/owned-file-lock.js +143 -143
- package/agent-spine-plugin/src/lib/paths.js +109 -109
- package/agent-spine-plugin/src/lib/peer-transport.js +283 -283
- package/agent-spine-plugin/src/lib/persona-runtime.js +581 -581
- package/agent-spine-plugin/src/lib/preflight.js +702 -702
- package/agent-spine-plugin/src/lib/runtime.js +13 -13
- package/agent-spine-plugin/src/lib/selfstarter.js +892 -819
- package/agent-spine-plugin/src/lib/sharing.js +969 -969
- package/agent-spine-plugin/src/lib/source-roots.js +529 -482
- package/agent-spine-plugin/src/lib/sqlite-transport.js +501 -501
- package/agent-spine-plugin/src/lib/telegram-adapter.js +119 -119
- package/agent-spine-plugin/src/lib/voice-runtime.js +39 -39
- package/agent-spine-plugin/src/mcp.js +597 -572
- package/agent-spine-plugin/src/version.js +1 -1
- package/agent-spine-plugin/src/worker.js +202 -195
- package/bin/active-steer-priority-policy.cjs +24 -0
- package/bin/launcher-runtime.js +8 -1
- package/bin/mnemo-tool-agent-policy.cjs +22 -0
- package/bin/thinking-activity-status-policy.cjs +132 -0
- package/bin/thinking-only-guard.cjs +75 -0
- package/bin/tool-call-loop-policy.cjs +53 -0
- package/bin/turn-thinking-policy.cjs +25 -1
- package/blun.mjs +554 -64
- package/package.json +4 -1
- package/standard-skills/translate-native/LICENSE +21 -21
- package/standard-skills/translate-native/references/evaluation-protocol.md +95 -95
- package/standard-skills/translate-native/references/native-orthography.md +79 -79
- package/standard-skills/translate-native/references/native-translation-standard.md +94 -94
- package/standard-skills/translate-native/references/structured-content.md +72 -72
- package/standard-skills/translate-native/references/translationese-review.md +77 -77
- package/standard-skills/translate-native/scripts/blun_language_guard.py +697 -697
- package/standard-skills/translate-native/scripts/check_diacritics.py +353 -353
- package/standard-skills/translate-native/scripts/guard_service_client.py +264 -264
- package/standard-skills/translate-native/scripts/language_gateway.py +62 -62
- package/standard-skills/translate-native/scripts/language_quality.py +377 -377
- package/standard-skills/translate-native/scripts/pre_output_guard.py +64 -64
- package/standard-skills/translate-native/scripts/translation_guard.py +916 -916
- package/standard-tools/language-guard/blun_language_guard.py +697 -697
- package/standard-tools/language-guard/check_diacritics.py +353 -353
- package/standard-tools/language-guard/guard_service_client.py +264 -264
- package/standard-tools/language-guard/language_quality.py +377 -377
- package/standard-tools/language-guard/translation_guard.py +916 -916
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "agent-spine",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "A non-destructive identity and memory spine for BLUN King agents.",
|
|
5
|
-
"license": "Apache-2.0",
|
|
6
|
-
"author": {
|
|
7
|
-
"name": "Mayk Biletti"
|
|
8
|
-
},
|
|
9
|
-
"skills": "./skills/",
|
|
10
|
-
"mcpServers": {
|
|
11
|
-
"agent-spine": {
|
|
12
|
-
"transport": "stdio",
|
|
13
|
-
"command": "node",
|
|
14
|
-
"args": ["./src/mcp.js"]
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
"hooks": [
|
|
18
|
-
{ "event": "SessionStart", "command": "node \"./src/hook.js\"", "timeout":
|
|
19
|
-
{ "event": "UserPromptSubmit", "command": "node \"./src/hook.js\"", "timeout": 15 },
|
|
20
|
-
{ "event": "PreToolUse", "matcher": "Edit|Write|apply_patch|Bash|exec_command", "command": "node \"./src/hook.js\"", "timeout": 15 },
|
|
21
|
-
{ "event": "PostToolUse", "command": "node \"./src/hook.js\" --silent-oversize-post-tool-use", "timeout": 15 },
|
|
22
|
-
{ "event": "PreCompact", "command": "node \"./src/hook.js\"", "timeout": 15 },
|
|
23
|
-
{ "event": "PostCompact", "command": "node \"./src/hook.js\"", "timeout": 15 },
|
|
24
|
-
{ "event": "Stop", "command": "node \"./src/hook.js\"", "timeout": 15 },
|
|
25
|
-
{ "event": "SubagentStop", "command": "node \"./src/hook.js\"", "timeout": 15 }
|
|
26
|
-
],
|
|
27
|
-
"interface": {
|
|
28
|
-
"displayName": "AgentSpine",
|
|
29
|
-
"shortDescription": "Identity, memory, attention, and resumable context without rewriting source files.",
|
|
30
|
-
"developerName": "Mayk Biletti",
|
|
31
|
-
"websiteURL": "https://github.com/Maykbiletti/AgentSpine"
|
|
32
|
-
}
|
|
33
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "agent-spine",
|
|
3
|
+
"version": "0.54.0",
|
|
4
|
+
"description": "A non-destructive identity and memory spine for BLUN King agents.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Mayk Biletti"
|
|
8
|
+
},
|
|
9
|
+
"skills": "./skills/",
|
|
10
|
+
"mcpServers": {
|
|
11
|
+
"agent-spine": {
|
|
12
|
+
"transport": "stdio",
|
|
13
|
+
"command": "node",
|
|
14
|
+
"args": ["./src/mcp.js"]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"hooks": [
|
|
18
|
+
{ "event": "SessionStart", "command": "node \"./src/hook.js\"", "timeout": 180 },
|
|
19
|
+
{ "event": "UserPromptSubmit", "command": "node \"./src/hook.js\"", "timeout": 15 },
|
|
20
|
+
{ "event": "PreToolUse", "matcher": "Edit|Write|apply_patch|Bash|exec_command", "command": "node \"./src/hook.js\"", "timeout": 15 },
|
|
21
|
+
{ "event": "PostToolUse", "command": "node \"./src/hook.js\" --silent-oversize-post-tool-use", "timeout": 15 },
|
|
22
|
+
{ "event": "PreCompact", "command": "node \"./src/hook.js\"", "timeout": 15 },
|
|
23
|
+
{ "event": "PostCompact", "command": "node \"./src/hook.js\"", "timeout": 15 },
|
|
24
|
+
{ "event": "Stop", "command": "node \"./src/hook.js\"", "timeout": 15 },
|
|
25
|
+
{ "event": "SubagentStop", "command": "node \"./src/hook.js\"", "timeout": 15 }
|
|
26
|
+
],
|
|
27
|
+
"interface": {
|
|
28
|
+
"displayName": "AgentSpine",
|
|
29
|
+
"shortDescription": "Identity, memory, attention, and resumable context without rewriting source files.",
|
|
30
|
+
"developerName": "Mayk Biletti",
|
|
31
|
+
"websiteURL": "https://github.com/Maykbiletti/AgentSpine"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
{
|
|
2
|
-
"description": "Resolves host-native user and project instructions before injecting scoped context, persisting attention and checkpoints, rechecking rights, and protecting sources.",
|
|
3
|
-
"hooks": {
|
|
4
|
-
"SessionStart": [
|
|
5
|
-
{
|
|
6
|
-
"matcher": "startup|resume|clear|compact",
|
|
7
|
-
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\"", "timeout":
|
|
8
|
-
}
|
|
9
|
-
],
|
|
10
|
-
"UserPromptSubmit": [
|
|
11
|
-
{
|
|
12
|
-
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\"", "timeout": 15 }]
|
|
13
|
-
}
|
|
14
|
-
],
|
|
15
|
-
"PreToolUse": [
|
|
16
|
-
{
|
|
17
|
-
"matcher": "Edit|Write|apply_patch|Bash",
|
|
18
|
-
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\"", "timeout": 15 }]
|
|
19
|
-
}
|
|
20
|
-
],
|
|
21
|
-
"PostToolUse": [
|
|
22
|
-
{
|
|
23
|
-
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\" --silent-oversize-post-tool-use", "timeout": 15 }]
|
|
24
|
-
}
|
|
25
|
-
],
|
|
26
|
-
"PreCompact": [
|
|
27
|
-
{
|
|
28
|
-
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\"", "timeout": 15 }]
|
|
29
|
-
}
|
|
30
|
-
],
|
|
31
|
-
"PostCompact": [
|
|
32
|
-
{
|
|
33
|
-
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\"", "timeout": 15 }]
|
|
34
|
-
}
|
|
35
|
-
],
|
|
36
|
-
"Stop": [
|
|
37
|
-
{
|
|
38
|
-
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\"", "timeout": 15 }]
|
|
39
|
-
}
|
|
40
|
-
],
|
|
41
|
-
"SubagentStop": [
|
|
42
|
-
{
|
|
43
|
-
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\"", "timeout": 15 }]
|
|
44
|
-
}
|
|
45
|
-
]
|
|
46
|
-
}
|
|
47
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"description": "Resolves host-native user and project instructions before injecting scoped context, persisting attention and checkpoints, rechecking rights, and protecting sources.",
|
|
3
|
+
"hooks": {
|
|
4
|
+
"SessionStart": [
|
|
5
|
+
{
|
|
6
|
+
"matcher": "startup|resume|clear|compact",
|
|
7
|
+
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\"", "timeout": 180 }]
|
|
8
|
+
}
|
|
9
|
+
],
|
|
10
|
+
"UserPromptSubmit": [
|
|
11
|
+
{
|
|
12
|
+
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\"", "timeout": 15 }]
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"PreToolUse": [
|
|
16
|
+
{
|
|
17
|
+
"matcher": "Edit|Write|apply_patch|Bash",
|
|
18
|
+
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\"", "timeout": 15 }]
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"PostToolUse": [
|
|
22
|
+
{
|
|
23
|
+
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\" --silent-oversize-post-tool-use", "timeout": 15 }]
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"PreCompact": [
|
|
27
|
+
{
|
|
28
|
+
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\"", "timeout": 15 }]
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"PostCompact": [
|
|
32
|
+
{
|
|
33
|
+
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\"", "timeout": 15 }]
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"Stop": [
|
|
37
|
+
{
|
|
38
|
+
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\"", "timeout": 15 }]
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"SubagentStop": [
|
|
42
|
+
{
|
|
43
|
+
"hooks": [{ "type": "command", "command": "node \"${PLUGIN_ROOT}/src/hook.js\"", "timeout": 15 }]
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -1,106 +1,106 @@
|
|
|
1
|
-
{
|
|
2
|
-
"description": "Resolves host-native user, project, and memory roots before injecting scoped context, persisting attention and checkpoints, rechecking rights, and protecting sources.",
|
|
3
|
-
"hooks": {
|
|
4
|
-
"SessionStart": [
|
|
5
|
-
{
|
|
6
|
-
"matcher": "startup|resume|clear|compact",
|
|
7
|
-
"hooks": [
|
|
8
|
-
{
|
|
9
|
-
"type": "command",
|
|
10
|
-
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
11
|
-
"timeout": 15
|
|
12
|
-
}
|
|
13
|
-
]
|
|
14
|
-
}
|
|
15
|
-
],
|
|
16
|
-
"UserPromptSubmit": [
|
|
17
|
-
{
|
|
18
|
-
"hooks": [
|
|
19
|
-
{
|
|
20
|
-
"type": "command",
|
|
21
|
-
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
22
|
-
"timeout": 15
|
|
23
|
-
}
|
|
24
|
-
]
|
|
25
|
-
}
|
|
26
|
-
],
|
|
27
|
-
"InstructionsLoaded": [
|
|
28
|
-
{
|
|
29
|
-
"hooks": [
|
|
30
|
-
{
|
|
31
|
-
"type": "command",
|
|
32
|
-
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
33
|
-
"timeout": 15
|
|
34
|
-
}
|
|
35
|
-
]
|
|
36
|
-
}
|
|
37
|
-
],
|
|
38
|
-
"PreToolUse": [
|
|
39
|
-
{
|
|
40
|
-
"matcher": "Edit|Write|apply_patch|Bash",
|
|
41
|
-
"hooks": [
|
|
42
|
-
{
|
|
43
|
-
"type": "command",
|
|
44
|
-
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
45
|
-
"timeout": 15
|
|
46
|
-
}
|
|
47
|
-
]
|
|
48
|
-
}
|
|
49
|
-
],
|
|
50
|
-
"PostToolUse": [
|
|
51
|
-
{
|
|
52
|
-
"hooks": [
|
|
53
|
-
{
|
|
54
|
-
"type": "command",
|
|
55
|
-
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\" --silent-oversize-post-tool-use",
|
|
56
|
-
"timeout": 15
|
|
57
|
-
}
|
|
58
|
-
]
|
|
59
|
-
}
|
|
60
|
-
],
|
|
61
|
-
"PreCompact": [
|
|
62
|
-
{
|
|
63
|
-
"hooks": [
|
|
64
|
-
{
|
|
65
|
-
"type": "command",
|
|
66
|
-
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
67
|
-
"timeout": 15
|
|
68
|
-
}
|
|
69
|
-
]
|
|
70
|
-
}
|
|
71
|
-
],
|
|
72
|
-
"PostCompact": [
|
|
73
|
-
{
|
|
74
|
-
"hooks": [
|
|
75
|
-
{
|
|
76
|
-
"type": "command",
|
|
77
|
-
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
78
|
-
"timeout": 15
|
|
79
|
-
}
|
|
80
|
-
]
|
|
81
|
-
}
|
|
82
|
-
],
|
|
83
|
-
"Stop": [
|
|
84
|
-
{
|
|
85
|
-
"hooks": [
|
|
86
|
-
{
|
|
87
|
-
"type": "command",
|
|
88
|
-
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
89
|
-
"timeout": 15
|
|
90
|
-
}
|
|
91
|
-
]
|
|
92
|
-
}
|
|
93
|
-
],
|
|
94
|
-
"SubagentStop": [
|
|
95
|
-
{
|
|
96
|
-
"hooks": [
|
|
97
|
-
{
|
|
98
|
-
"type": "command",
|
|
99
|
-
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
100
|
-
"timeout": 15
|
|
101
|
-
}
|
|
102
|
-
]
|
|
103
|
-
}
|
|
104
|
-
]
|
|
105
|
-
}
|
|
106
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"description": "Resolves host-native user, project, and memory roots before injecting scoped context, persisting attention and checkpoints, rechecking rights, and protecting sources.",
|
|
3
|
+
"hooks": {
|
|
4
|
+
"SessionStart": [
|
|
5
|
+
{
|
|
6
|
+
"matcher": "startup|resume|clear|compact",
|
|
7
|
+
"hooks": [
|
|
8
|
+
{
|
|
9
|
+
"type": "command",
|
|
10
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
11
|
+
"timeout": 15
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"UserPromptSubmit": [
|
|
17
|
+
{
|
|
18
|
+
"hooks": [
|
|
19
|
+
{
|
|
20
|
+
"type": "command",
|
|
21
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
22
|
+
"timeout": 15
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"InstructionsLoaded": [
|
|
28
|
+
{
|
|
29
|
+
"hooks": [
|
|
30
|
+
{
|
|
31
|
+
"type": "command",
|
|
32
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
33
|
+
"timeout": 15
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"PreToolUse": [
|
|
39
|
+
{
|
|
40
|
+
"matcher": "Edit|Write|apply_patch|Bash",
|
|
41
|
+
"hooks": [
|
|
42
|
+
{
|
|
43
|
+
"type": "command",
|
|
44
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
45
|
+
"timeout": 15
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"PostToolUse": [
|
|
51
|
+
{
|
|
52
|
+
"hooks": [
|
|
53
|
+
{
|
|
54
|
+
"type": "command",
|
|
55
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\" --silent-oversize-post-tool-use",
|
|
56
|
+
"timeout": 15
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"PreCompact": [
|
|
62
|
+
{
|
|
63
|
+
"hooks": [
|
|
64
|
+
{
|
|
65
|
+
"type": "command",
|
|
66
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
67
|
+
"timeout": 15
|
|
68
|
+
}
|
|
69
|
+
]
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
"PostCompact": [
|
|
73
|
+
{
|
|
74
|
+
"hooks": [
|
|
75
|
+
{
|
|
76
|
+
"type": "command",
|
|
77
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
78
|
+
"timeout": 15
|
|
79
|
+
}
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"Stop": [
|
|
84
|
+
{
|
|
85
|
+
"hooks": [
|
|
86
|
+
{
|
|
87
|
+
"type": "command",
|
|
88
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
89
|
+
"timeout": 15
|
|
90
|
+
}
|
|
91
|
+
]
|
|
92
|
+
}
|
|
93
|
+
],
|
|
94
|
+
"SubagentStop": [
|
|
95
|
+
{
|
|
96
|
+
"hooks": [
|
|
97
|
+
{
|
|
98
|
+
"type": "command",
|
|
99
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/src/hook.js\"",
|
|
100
|
+
"timeout": 15
|
|
101
|
+
}
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
]
|
|
105
|
+
}
|
|
106
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
{
|
|
2
|
-
"schema": "agentspine.hook-bundle/v1",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"contract": "agentspine.preflight/v2"
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"schema": "agentspine.hook-bundle/v1",
|
|
3
|
+
"version": "0.54.0",
|
|
4
|
+
"contract": "agentspine.preflight/v2"
|
|
5
|
+
}
|
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "agent-spine",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "A non-destructive identity and memory spine for AI agents.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"agentspine": "./bin/agentspine.js",
|
|
8
|
-
"agentspine-mcp": "./bin/agentspine-mcp.js",
|
|
9
|
-
"agentspine-worker": "./src/worker.js"
|
|
10
|
-
},
|
|
11
|
-
"exports": {
|
|
12
|
-
".": "./src/index.js"
|
|
13
|
-
},
|
|
14
|
-
"files": [
|
|
15
|
-
"blun.plugin.json",
|
|
16
|
-
".claude-plugin",
|
|
17
|
-
".codex-plugin",
|
|
18
|
-
".mcp.json",
|
|
19
|
-
"assets",
|
|
20
|
-
"bin",
|
|
21
|
-
"docs",
|
|
22
|
-
"hooks",
|
|
23
|
-
"scripts",
|
|
24
|
-
"skill",
|
|
25
|
-
"skills",
|
|
26
|
-
"spine-example",
|
|
27
|
-
"src",
|
|
28
|
-
"CHANGELOG.md",
|
|
29
|
-
"LICENSE",
|
|
30
|
-
"README.md"
|
|
31
|
-
],
|
|
32
|
-
"scripts": {
|
|
33
|
-
"check": "node scripts/run-checks.js",
|
|
34
|
-
"acceptance": "node scripts/run-acceptance.js",
|
|
35
|
-
"audit:self": "node bin/agentspine.js audit . --json",
|
|
36
|
-
"host:check": "node scripts/check-hosts.js --json",
|
|
37
|
-
"host:install-check": "node scripts/check-install.js --json",
|
|
38
|
-
"lint": "node scripts/check-syntax.js",
|
|
39
|
-
"release:check": "node scripts/release-check.js --json",
|
|
40
|
-
"release:sbom": "npm sbom --sbom-format cyclonedx",
|
|
41
|
-
"smoke": "node bin/agentspine.js doctor --json",
|
|
42
|
-
"test": "node scripts/run-tests-hermetic.js",
|
|
43
|
-
"prepack": "npm run check"
|
|
44
|
-
},
|
|
45
|
-
"engines": {
|
|
46
|
-
"node": ">=20.9.0"
|
|
47
|
-
},
|
|
48
|
-
"keywords": [
|
|
49
|
-
"agent",
|
|
50
|
-
"memory",
|
|
51
|
-
"identity",
|
|
52
|
-
"mcp",
|
|
53
|
-
"claude-code",
|
|
54
|
-
"codex"
|
|
55
|
-
],
|
|
56
|
-
"author": {
|
|
57
|
-
"name": "Mayk Biletti",
|
|
58
|
-
"url": "https://github.com/Maykbiletti"
|
|
59
|
-
},
|
|
60
|
-
"license": "Apache-2.0",
|
|
61
|
-
"repository": {
|
|
62
|
-
"type": "git",
|
|
63
|
-
"url": "git+https://github.com/Maykbiletti/AgentSpine.git"
|
|
64
|
-
},
|
|
65
|
-
"bugs": {
|
|
66
|
-
"url": "https://github.com/Maykbiletti/AgentSpine/issues"
|
|
67
|
-
},
|
|
68
|
-
"homepage": "https://github.com/Maykbiletti/AgentSpine#readme"
|
|
69
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "agent-spine",
|
|
3
|
+
"version": "0.54.0",
|
|
4
|
+
"description": "A non-destructive identity and memory spine for AI agents.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"agentspine": "./bin/agentspine.js",
|
|
8
|
+
"agentspine-mcp": "./bin/agentspine-mcp.js",
|
|
9
|
+
"agentspine-worker": "./src/worker.js"
|
|
10
|
+
},
|
|
11
|
+
"exports": {
|
|
12
|
+
".": "./src/index.js"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"blun.plugin.json",
|
|
16
|
+
".claude-plugin",
|
|
17
|
+
".codex-plugin",
|
|
18
|
+
".mcp.json",
|
|
19
|
+
"assets",
|
|
20
|
+
"bin",
|
|
21
|
+
"docs",
|
|
22
|
+
"hooks",
|
|
23
|
+
"scripts",
|
|
24
|
+
"skill",
|
|
25
|
+
"skills",
|
|
26
|
+
"spine-example",
|
|
27
|
+
"src",
|
|
28
|
+
"CHANGELOG.md",
|
|
29
|
+
"LICENSE",
|
|
30
|
+
"README.md"
|
|
31
|
+
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"check": "node scripts/run-checks.js",
|
|
34
|
+
"acceptance": "node scripts/run-acceptance.js",
|
|
35
|
+
"audit:self": "node bin/agentspine.js audit . --json",
|
|
36
|
+
"host:check": "node scripts/check-hosts.js --json",
|
|
37
|
+
"host:install-check": "node scripts/check-install.js --json",
|
|
38
|
+
"lint": "node scripts/check-syntax.js",
|
|
39
|
+
"release:check": "node scripts/release-check.js --json",
|
|
40
|
+
"release:sbom": "npm sbom --sbom-format cyclonedx",
|
|
41
|
+
"smoke": "node bin/agentspine.js doctor --json",
|
|
42
|
+
"test": "node scripts/run-tests-hermetic.js",
|
|
43
|
+
"prepack": "npm run check"
|
|
44
|
+
},
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=20.9.0"
|
|
47
|
+
},
|
|
48
|
+
"keywords": [
|
|
49
|
+
"agent",
|
|
50
|
+
"memory",
|
|
51
|
+
"identity",
|
|
52
|
+
"mcp",
|
|
53
|
+
"claude-code",
|
|
54
|
+
"codex"
|
|
55
|
+
],
|
|
56
|
+
"author": {
|
|
57
|
+
"name": "Mayk Biletti",
|
|
58
|
+
"url": "https://github.com/Maykbiletti"
|
|
59
|
+
},
|
|
60
|
+
"license": "Apache-2.0",
|
|
61
|
+
"repository": {
|
|
62
|
+
"type": "git",
|
|
63
|
+
"url": "git+https://github.com/Maykbiletti/AgentSpine.git"
|
|
64
|
+
},
|
|
65
|
+
"bugs": {
|
|
66
|
+
"url": "https://github.com/Maykbiletti/AgentSpine/issues"
|
|
67
|
+
},
|
|
68
|
+
"homepage": "https://github.com/Maykbiletti/AgentSpine#readme"
|
|
69
|
+
}
|