@agentuity/claude-code 1.0.21 → 1.0.23
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/AGENTS.md +1 -2
- package/README.md +1 -3
- package/hooks/hooks.json +67 -65
- package/package.json +1 -1
- package/commands/agentuity-memory-save.md +0 -15
package/AGENTS.md
CHANGED
|
@@ -37,14 +37,13 @@ A team of specialized AI agents for code assistance with persistent memory via A
|
|
|
37
37
|
| session-start.sh | SessionStart | Gather Agentuity context (project, org, user) |
|
|
38
38
|
| session-end.sh | SessionEnd | Dual-path memory save: immediate KV + async agentic processing |
|
|
39
39
|
|
|
40
|
-
### Commands (
|
|
40
|
+
### Commands (5)
|
|
41
41
|
|
|
42
42
|
| Command | Description |
|
|
43
43
|
| ------------------------- | -------------------------------------------------------------- |
|
|
44
44
|
| /agentuity-coder | Activate full team orchestration via Lead |
|
|
45
45
|
| /agentuity-cadence | Start a long-running Cadence loop (autonomous task completion) |
|
|
46
46
|
| /agentuity-cadence-cancel | Cancel an active Cadence loop |
|
|
47
|
-
| /agentuity-memory-save | Save session to Agentuity Cloud memory |
|
|
48
47
|
| /agentuity-memory-share | Share content publicly via Agentuity Cloud Streams |
|
|
49
48
|
| /agentuity-sandbox | Agentuity sandboxes (isolated execution environments) |
|
|
50
49
|
|
package/README.md
CHANGED
|
@@ -26,7 +26,6 @@ agentuity ai claude-code install
|
|
|
26
26
|
```
|
|
27
27
|
/agentuity-coder implement dark mode for the settings page
|
|
28
28
|
/agentuity-cadence build the payment integration with tests
|
|
29
|
-
/agentuity-memory-save
|
|
30
29
|
```
|
|
31
30
|
|
|
32
31
|
| Command | Description |
|
|
@@ -34,7 +33,6 @@ agentuity ai claude-code install
|
|
|
34
33
|
| `/agentuity-coder` | Run a task with the full agent team |
|
|
35
34
|
| `/agentuity-cadence` | Start autonomous long-running task execution |
|
|
36
35
|
| `/agentuity-cadence-cancel` | Cancel an active Cadence session |
|
|
37
|
-
| `/agentuity-memory-save` | Save session context to cloud memory |
|
|
38
36
|
| `/agentuity-memory-share` | Share content via Agentuity Cloud Streams |
|
|
39
37
|
| `/agentuity-sandbox` | Run code in an isolated sandbox |
|
|
40
38
|
|
|
@@ -77,7 +75,7 @@ Persistent context across sessions via Agentuity Cloud:
|
|
|
77
75
|
- **Entity-centric** -- tracks users, orgs, projects, repos
|
|
78
76
|
- **Branch-aware** -- scopes memories to git branch context
|
|
79
77
|
|
|
80
|
-
|
|
78
|
+
Memory is saved automatically at session end and during Cadence iterations.
|
|
81
79
|
|
|
82
80
|
## Cadence Mode
|
|
83
81
|
|
package/hooks/hooks.json
CHANGED
|
@@ -1,67 +1,69 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
2
|
+
"hooks": {
|
|
3
|
+
"PreToolUse": [
|
|
4
|
+
{
|
|
5
|
+
"matcher": "Bash",
|
|
6
|
+
"hooks": [
|
|
7
|
+
{
|
|
8
|
+
"type": "command",
|
|
9
|
+
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/block-sensitive-commands.sh",
|
|
10
|
+
"timeout": 5
|
|
11
|
+
}
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"PreCompact": [
|
|
16
|
+
{
|
|
17
|
+
"matcher": "",
|
|
18
|
+
"hooks": [
|
|
19
|
+
{
|
|
20
|
+
"type": "command",
|
|
21
|
+
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/pre-compact.sh",
|
|
22
|
+
"timeout": 10
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"Stop": [
|
|
28
|
+
{
|
|
29
|
+
"matcher": "",
|
|
30
|
+
"hooks": [
|
|
31
|
+
{
|
|
32
|
+
"type": "command",
|
|
33
|
+
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/cadence-stop.sh",
|
|
34
|
+
"timeout": 15
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"type": "command",
|
|
38
|
+
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/stop-memory-save.sh",
|
|
39
|
+
"timeout": 10
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"SessionStart": [
|
|
45
|
+
{
|
|
46
|
+
"matcher": "",
|
|
47
|
+
"hooks": [
|
|
48
|
+
{
|
|
49
|
+
"type": "command",
|
|
50
|
+
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/session-start.sh",
|
|
51
|
+
"timeout": 15
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"SessionEnd": [
|
|
57
|
+
{
|
|
58
|
+
"matcher": "",
|
|
59
|
+
"hooks": [
|
|
60
|
+
{
|
|
61
|
+
"type": "command",
|
|
62
|
+
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/session-end.sh",
|
|
63
|
+
"timeout": 30
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
]
|
|
68
|
+
}
|
|
67
69
|
}
|
package/package.json
CHANGED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: agentuity-memory-save
|
|
3
|
-
description: Save the current session context to Agentuity Cloud memory (KV + Vector storage) for future recall
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
Invoke the Agentuity Coder Memory agent to memorialize this session. Use the Task tool with agent type "agentuity-coder:agentuity-coder-memory".
|
|
7
|
-
|
|
8
|
-
Tell Memory to:
|
|
9
|
-
|
|
10
|
-
1. Summarize what was accomplished in this session
|
|
11
|
-
2. Extract key decisions, patterns, and corrections
|
|
12
|
-
3. Store in KV and Vector storage for future recall
|
|
13
|
-
4. Note any open questions or follow-ups
|
|
14
|
-
|
|
15
|
-
The Memory agent will use Agentuity Cloud KV and Vector storage to persist this session's context.
|