continuous-improvement 2.2.0 → 3.0.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/CHANGELOG.md +17 -0
- package/README.md +183 -26
- package/bin/analyze.sh +27 -41
- package/bin/install.mjs +193 -27
- package/bin/mcp-server.mjs +543 -0
- package/hooks/session.sh +106 -0
- package/package.json +17 -8
- package/plugins/beginner.json +42 -0
- package/plugins/expert.json +62 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "continuous-improvement",
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"mode": "beginner",
|
|
5
|
+
"description": "3 simple tools: check status, view instincts, reflect on sessions. No config needed.",
|
|
6
|
+
"tools": [
|
|
7
|
+
{
|
|
8
|
+
"name": "ci_status",
|
|
9
|
+
"what": "See what the system has learned about your project"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "ci_instincts",
|
|
13
|
+
"what": "List all learned behaviors with confidence levels"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"name": "ci_reflect",
|
|
17
|
+
"what": "Reflect on what you did this session"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"setup": {
|
|
21
|
+
"claude_desktop": {
|
|
22
|
+
"mcpServers": {
|
|
23
|
+
"continuous-improvement": {
|
|
24
|
+
"command": "node",
|
|
25
|
+
"args": ["<install-path>/bin/mcp-server.mjs", "--mode", "beginner"]
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"claude_code": {
|
|
30
|
+
"mcpServers": {
|
|
31
|
+
"continuous-improvement": {
|
|
32
|
+
"command": "node",
|
|
33
|
+
"args": ["<install-path>/bin/mcp-server.mjs", "--mode", "beginner"]
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"hooks": {
|
|
39
|
+
"included": ["PreToolUse", "PostToolUse"],
|
|
40
|
+
"description": "Silently captures every tool call as observations. <50ms, never blocks."
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "continuous-improvement",
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"mode": "expert",
|
|
5
|
+
"description": "Full plugin: 8 tools including instinct management, import/export, observation viewer, and manual instinct creation.",
|
|
6
|
+
"tools": [
|
|
7
|
+
{
|
|
8
|
+
"name": "ci_status",
|
|
9
|
+
"what": "See what the system has learned about your project"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "ci_instincts",
|
|
13
|
+
"what": "List all learned behaviors with confidence levels"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"name": "ci_reflect",
|
|
17
|
+
"what": "Reflect on what you did this session"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "ci_reinforce",
|
|
21
|
+
"what": "Accept or reject instinct suggestions to tune confidence"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "ci_create_instinct",
|
|
25
|
+
"what": "Manually create instincts with custom triggers and confidence"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "ci_observations",
|
|
29
|
+
"what": "View raw tool call observations captured by hooks"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "ci_export",
|
|
33
|
+
"what": "Export instincts as JSON for sharing or backup"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "ci_import",
|
|
37
|
+
"what": "Import instincts from JSON (skip duplicates)"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"setup": {
|
|
41
|
+
"claude_desktop": {
|
|
42
|
+
"mcpServers": {
|
|
43
|
+
"continuous-improvement": {
|
|
44
|
+
"command": "node",
|
|
45
|
+
"args": ["<install-path>/bin/mcp-server.mjs", "--mode", "expert"]
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"claude_code": {
|
|
50
|
+
"mcpServers": {
|
|
51
|
+
"continuous-improvement": {
|
|
52
|
+
"command": "node",
|
|
53
|
+
"args": ["<install-path>/bin/mcp-server.mjs", "--mode", "expert"]
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"hooks": {
|
|
59
|
+
"included": ["PreToolUse", "PostToolUse", "SessionStart", "SessionEnd"],
|
|
60
|
+
"description": "Full hook suite: observation capture + session-level instinct loading and auto-reflection."
|
|
61
|
+
}
|
|
62
|
+
}
|