@agentuity/claude-code 1.0.22 → 1.0.24

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentuity-coder",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "description": "Agentuity Coder - a team of specialized AI agents for code assistance with persistent memory via Agentuity Cloud",
5
5
  "author": {
6
6
  "name": "Agentuity",
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 (6)
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
- Use `/agentuity-memory-save` after completing work to persist decisions and lessons learned.
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
- "PreToolUse": [
3
- {
4
- "matcher": "Bash",
5
- "hooks": [
6
- {
7
- "type": "command",
8
- "command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/block-sensitive-commands.sh",
9
- "timeout": 5
10
- }
11
- ]
12
- }
13
- ],
14
- "PreCompact": [
15
- {
16
- "matcher": "",
17
- "hooks": [
18
- {
19
- "type": "command",
20
- "command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/pre-compact.sh",
21
- "timeout": 10
22
- }
23
- ]
24
- }
25
- ],
26
- "Stop": [
27
- {
28
- "matcher": "",
29
- "hooks": [
30
- {
31
- "type": "command",
32
- "command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/cadence-stop.sh",
33
- "timeout": 15
34
- },
35
- {
36
- "type": "command",
37
- "command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/stop-memory-save.sh",
38
- "timeout": 10
39
- }
40
- ]
41
- }
42
- ],
43
- "SessionStart": [
44
- {
45
- "matcher": "",
46
- "hooks": [
47
- {
48
- "type": "command",
49
- "command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/session-start.sh",
50
- "timeout": 15
51
- }
52
- ]
53
- }
54
- ],
55
- "SessionEnd": [
56
- {
57
- "matcher": "",
58
- "hooks": [
59
- {
60
- "type": "command",
61
- "command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/session-end.sh",
62
- "timeout": 30
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentuity/claude-code",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Agentuity employees and contributors",
6
6
  "description": "Agentuity Coder plugin for Claude Code with specialized AI coding agents",
@@ -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.