claude-nexus 0.31.1 → 0.31.2

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.
@@ -7,7 +7,7 @@
7
7
  {
8
8
  "name": "claude-nexus",
9
9
  "description": "Claude Code plugin for nexus-core agent orchestration",
10
- "version": "0.31.1",
10
+ "version": "0.31.2",
11
11
  "author": {
12
12
  "name": "kih"
13
13
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-nexus",
3
- "version": "0.31.1",
3
+ "version": "0.31.2",
4
4
  "description": "Claude Code plugin for nexus-core agent orchestration",
5
5
  "author": {
6
6
  "name": "kih"
package/agents/lead.md CHANGED
@@ -262,7 +262,7 @@ For questions that can be answered briefly, answer directly without structure.
262
262
 
263
263
  ### Subagent ID Recording Practice
264
264
 
265
- Every time a subagent is spawned, record its id (either returned by the harness spawn tool or the `name` the Lead assigned) through one of the paths below. Without this, `nx_plan_resume` / `nx_task_resume` will have no resume candidates to return.
265
+ Every time a subagent is spawned, record the agent id returned by the harness spawn tool through one of the paths below. Do not substitute a human-readable assigned name; names are for active-session messaging only and are not a safe resume identifier for completed sessions. Without this, `nx_plan_resume` / `nx_task_resume` will have no resume candidates to return.
266
266
 
267
267
  - HOW participation → pass `agent_id` to `nx_plan_analysis_add(issue_id, role, agent_id=<id>, summary)` (Step 4 of nx-plan / nx-auto-plan skill).
268
268
  - Task execution → store via `nx_task_update(id, owner={role, agent_id=<id>, resume_tier=<ephemeral|bounded|persistent>})` (Step 2 of nx-run skill).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-nexus",
3
- "version": "0.31.1",
3
+ "version": "0.31.2",
4
4
  "type": "module",
5
5
  "description": "Claude Code plugin for nexus-core agent orchestration",
6
6
  "author": "kih",
@@ -40,7 +40,7 @@
40
40
  "settings.json"
41
41
  ],
42
42
  "devDependencies": {
43
- "@moreih29/nexus-core": "^0.19.0",
43
+ "@moreih29/nexus-core": "^0.19.1",
44
44
  "@types/bun": "^1.3.0",
45
45
  "@types/node": "^22.0.0",
46
46
  "typescript": "^5.6.0"
@@ -72,7 +72,7 @@ Issues must be processed one at a time. For each issue:
72
72
  2. If needed, spawn HOW subagents for independent analysis.
73
73
  - If reusing context from a prior HOW session for the same role is advantageous, check resume routing information with `nx_plan_resume` first.
74
74
  - If resumable, continue with the existing session; otherwise, spawn fresh.
75
- 3. When HOW results return, record them on the issue with `nx_plan_analysis_add(issue_id, role, agent_id=<id from spawn>, summary)`. The `agent_id` is the value `nx_plan_resume` will return on a future resume request for the same role, so always pass it.
75
+ 3. When HOW results return, record them on the issue with `nx_plan_analysis_add(issue_id, role, agent_id=<id from spawn>, summary)`. The `agent_id` is the value `nx_plan_resume` will return on a future resume request for the same role, so always pass the agent id obtained from the spawn tool response. Do not substitute a human-readable assigned name; names are only for messaging a currently running subagent and are not a safe resume identifier for a completed session.
76
76
  4. **Lead internal deliberation**: enumerate candidate options, compare pros/cons and trade-offs, and select the most reasonable one. Do not output comparison tables or option presentations.
77
77
  5. Proceed immediately to Step 5 to record the decision.
78
78
 
@@ -73,7 +73,7 @@ Issues must be processed one at a time. For each issue:
73
73
  2. If needed, spawn HOW subagents for independent analysis.
74
74
  - If reusing context from a prior HOW session for the same role is advantageous, check resume routing information with `nx_plan_resume` first.
75
75
  - If resumable, continue with the existing session; otherwise, spawn fresh.
76
- 3. When HOW results return, record them on the issue with `nx_plan_analysis_add(issue_id, role, agent_id=<id from spawn>, summary)`. The `agent_id` is the value `nx_plan_resume` will return on a future resume request for the same role, so always pass the id obtained from the spawn tool response (or the name the Lead assigned). This record feeds both future resume paths and Step 7 task decomposition.
76
+ 3. When HOW results return, record them on the issue with `nx_plan_analysis_add(issue_id, role, agent_id=<id from spawn>, summary)`. The `agent_id` is the value `nx_plan_resume` will return on a future resume request for the same role, so always pass the agent id obtained from the spawn tool response. Do not substitute a human-readable assigned name; names are only for messaging a currently running subagent and are not a safe resume identifier for a completed session. This record feeds both future resume paths and Step 7 task decomposition.
77
77
  4. After synthesis, present a comparison table and recommendation.
78
78
  5. Receive the user's response and record the decision.
79
79