claude-nexus 0.33.0 → 0.33.1

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.33.0",
10
+ "version": "0.33.1",
11
11
  "author": {
12
12
  "name": "kih"
13
13
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-nexus",
3
- "version": "0.33.0",
3
+ "version": "0.33.1",
4
4
  "description": "Claude Code plugin for nexus-core agent orchestration",
5
5
  "author": {
6
6
  "name": "kih"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-nexus",
3
- "version": "0.33.0",
3
+ "version": "0.33.1",
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.20.0",
43
+ "@moreih29/nexus-core": "^0.20.1",
44
44
  "@types/bun": "^1.3.0",
45
45
  "@types/node": "^22.0.0",
46
46
  "typescript": "^5.6.0"
@@ -7,17 +7,25 @@ triggers:
7
7
  ---
8
8
  ## Role
9
9
 
10
- Performs the same research and analysis process as nx-plan, but **Lead makes decisions autonomously without presenting options or waiting for user responses** to produce an execution plan. HOW subagent usage, researcher/explore investigations, prior-knowledge lookup, and issue decomposition are identical to nx-plan. The only difference is at decision time instead of emitting a comparison table and awaiting user response, Lead deliberates internally and records the decision immediately.
10
+ For each issue, collaborate with HOW subagents (architect/designer/postdoc/strategist), researcher, and explore to gather multi-angle analysis, then synthesize the results so Lead records the decision directly without waiting for a user response.
11
+
12
+ The flow is as follows:
13
+
14
+ 1. For each issue, dynamically spawn the HOW subagent(s) matching its domain to receive independent analysis.
15
+ 2. Use explore when codebase orientation is needed and researcher when external investigation is needed.
16
+ 3. Lead synthesizes the gathered analysis, compares candidate options, and selects the most reasonable one.
17
+ 4. Decisions are recorded by Lead directly via `nx_plan_decide` without user confirmation; once all issues are decided, brief the user in a single pass.
11
18
 
12
19
  This skill does not execute. Execution is handled separately by the `[run]` flow. It is also the path `[run]` invokes internally when tasks.json is absent.
13
20
 
14
21
  ## Core Rules — Absolute Rules
15
22
 
16
- The three rules below are the identity of this skill. **Violating even one makes this plan, not auto-plan.**
23
+ The four rules below are the identity of this skill. **Violating even one departs from auto-plan's intended form.**
17
24
 
18
- 1. **Lead decides autonomously.** NEVER ask the user for option choices, delegate decision authority, or request acceptance. All decisions are recorded directly by Lead via `nx_plan_decide` after internal deliberation.
19
- 2. **NEVER produce output that elicits a decision.** Do not emit comparison tables, A/B/C option enumerations, or questions like "which option would you prefer?" to the user. All candidate comparison happens entirely in Lead's internal deliberation; external output is limited to progress status or the final briefing.
20
- 3. **NEVER stop between issues.** Proceed **without interruption** from issue analysis `nx_plan_decide` next issue. Do not seek confirmation or give intermediate reports immediately after individual decisions. Reporting happens once in Step 7 after all decisions are made.
25
+ 1. **Collaborate with HOW/researcher/explore to analyze each issue.** Spawning the HOW subagent matching the issue's domain is the default; bring in explore for code understanding and researcher for external investigation. Do NOT settle issues by Lead's solo reasoning — to skip collaboration, state the reason (e.g., a trivial issue Lead can decide alone, or identical analysis already present in `.nexus/memory`/`context`/`history`) explicitly in the analysis text.
26
+ 2. **Lead decides autonomously.** NEVER ask the user for option choices, delegate decision authority, or request acceptance. All decisions are recorded directly by Lead via `nx_plan_decide` after internal deliberation grounded in the collaboration results.
27
+ 3. **NEVER produce output that asks the user to decide.** Do not emit comparison tables, A/B/C option enumerations, or questions like "which option would you prefer?" to the user. However, **the comparison work and per-issue analysis records themselves are normal activity** candidate comparison happens in Lead's internal deliberation, and its core findings and dismissal rationale are written into the decision text in prose form. They are not externalized, but that does not mean they must not be produced.
28
+ 4. **NEVER stop for user confirmation.** Proceed from issue analysis → `nx_plan_decide` → next issue without seeking confirmation or sending intermediate approval requests immediately after individual decisions. The user-facing report happens only once at the Step 7 briefing after all issues are decided. **Waiting for HOW subagent results is not stopping** — when the issue's depth requires it, spawn HOW and wait for the results before deciding. What must not stop is "user confirmation," not "analytical depth."
21
29
 
22
30
  ## Supplementary Rules
23
31
 
@@ -29,6 +29,7 @@ If the user requests full delegation such as "you decide" or "whatever you think
29
29
  - NEVER execute — this skill's purpose is planning and decision alignment.
30
30
  - MUST handle one issue at a time. NEVER present multiple issues simultaneously.
31
31
  - NEVER ask groundless questions. MUST investigate code, existing knowledge, and prior decisions first.
32
+ - **MUST gather multi-angle evidence before presenting a recommendation.** Bring in the HOW subagent matching the issue's domain, explore for code understanding, and researcher for external investigation to collect independent analysis before forming the recommendation. NEVER form a recommendation from Lead's solo reasoning.
32
33
  - MUST present a comparison table when requesting a decision. NEVER describe options in prose alone.
33
34
  - Lead is synthesizer and participant — form independent recommendations and push back when warranted, not merely relay subagent results. **But never take over final decision authority.**
34
35