@moreih29/nexus-core 0.15.1 → 0.16.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/dist/claude/.claude-plugin/marketplace.json +75 -0
- package/dist/claude/.claude-plugin/plugin.json +67 -0
- package/dist/claude/agents/architect.md +172 -0
- package/dist/claude/agents/designer.md +120 -0
- package/dist/claude/agents/engineer.md +98 -0
- package/dist/claude/agents/lead.md +59 -0
- package/dist/claude/agents/postdoc.md +117 -0
- package/dist/claude/agents/researcher.md +132 -0
- package/dist/claude/agents/reviewer.md +133 -0
- package/dist/claude/agents/strategist.md +111 -0
- package/dist/claude/agents/tester.md +190 -0
- package/dist/claude/agents/writer.md +114 -0
- package/dist/claude/dist/hooks/agent-bootstrap.js +121 -0
- package/dist/claude/dist/hooks/agent-finalize.js +180 -0
- package/dist/claude/dist/hooks/prompt-router.js +7316 -0
- package/dist/claude/dist/hooks/session-init.js +37 -0
- package/dist/claude/hooks/hooks.json +52 -0
- package/dist/claude/settings.json +3 -0
- package/dist/claude/skills/nx-init/SKILL.md +189 -0
- package/dist/claude/skills/nx-plan/SKILL.md +353 -0
- package/dist/claude/skills/nx-run/SKILL.md +154 -0
- package/dist/claude/skills/nx-sync/SKILL.md +87 -0
- package/dist/codex/agents/architect.toml +172 -0
- package/dist/codex/agents/designer.toml +120 -0
- package/dist/codex/agents/engineer.toml +102 -0
- package/dist/codex/agents/lead.toml +64 -0
- package/dist/codex/agents/postdoc.toml +117 -0
- package/dist/codex/agents/researcher.toml +133 -0
- package/dist/codex/agents/reviewer.toml +134 -0
- package/dist/codex/agents/strategist.toml +111 -0
- package/dist/codex/agents/tester.toml +191 -0
- package/dist/codex/agents/writer.toml +118 -0
- package/dist/codex/dist/hooks/agent-bootstrap.js +121 -0
- package/dist/codex/dist/hooks/agent-finalize.js +180 -0
- package/dist/codex/dist/hooks/prompt-router.js +7316 -0
- package/dist/codex/dist/hooks/session-init.js +37 -0
- package/dist/codex/hooks/hooks.json +28 -0
- package/dist/codex/install/AGENTS.fragment.md +60 -0
- package/dist/codex/install/config.fragment.toml +5 -0
- package/dist/codex/install/install.sh +60 -0
- package/dist/codex/package.json +20 -0
- package/dist/codex/plugin/.codex-plugin/plugin.json +57 -0
- package/dist/codex/plugin/skills/nx-init/SKILL.md +189 -0
- package/dist/codex/plugin/skills/nx-plan/SKILL.md +353 -0
- package/dist/codex/plugin/skills/nx-run/SKILL.md +154 -0
- package/dist/codex/plugin/skills/nx-sync/SKILL.md +87 -0
- package/dist/codex/prompts/architect.md +166 -0
- package/dist/codex/prompts/designer.md +114 -0
- package/dist/codex/prompts/engineer.md +97 -0
- package/dist/codex/prompts/lead.md +60 -0
- package/dist/codex/prompts/postdoc.md +111 -0
- package/dist/codex/prompts/researcher.md +127 -0
- package/dist/codex/prompts/reviewer.md +128 -0
- package/dist/codex/prompts/strategist.md +105 -0
- package/dist/codex/prompts/tester.md +185 -0
- package/dist/codex/prompts/writer.md +113 -0
- package/dist/hooks/agent-bootstrap.js +19 -3
- package/dist/hooks/agent-finalize.js +19 -3
- package/dist/hooks/prompt-router.js +19 -3
- package/dist/hooks/session-init.js +19 -3
- package/dist/manifests/opencode-manifest.json +4 -4
- package/dist/opencode/.opencode/skills/nx-init/SKILL.md +189 -0
- package/dist/opencode/.opencode/skills/nx-plan/SKILL.md +353 -0
- package/dist/opencode/.opencode/skills/nx-run/SKILL.md +154 -0
- package/dist/opencode/.opencode/skills/nx-sync/SKILL.md +87 -0
- package/dist/opencode/package.json +23 -0
- package/dist/opencode/src/agents/architect.ts +176 -0
- package/dist/opencode/src/agents/designer.ts +124 -0
- package/dist/opencode/src/agents/engineer.ts +105 -0
- package/dist/opencode/src/agents/lead.ts +66 -0
- package/dist/opencode/src/agents/postdoc.ts +121 -0
- package/dist/opencode/src/agents/researcher.ts +136 -0
- package/dist/opencode/src/agents/reviewer.ts +137 -0
- package/dist/opencode/src/agents/strategist.ts +115 -0
- package/dist/opencode/src/agents/tester.ts +194 -0
- package/dist/opencode/src/agents/writer.ts +121 -0
- package/dist/opencode/src/index.ts +25 -0
- package/dist/opencode/src/plugin.ts +6 -0
- package/dist/scripts/build-agents.d.ts +0 -1
- package/dist/scripts/build-agents.d.ts.map +1 -1
- package/dist/scripts/build-agents.js +3 -15
- package/dist/scripts/build-agents.js.map +1 -1
- package/dist/scripts/build-hooks.d.ts.map +1 -1
- package/dist/scripts/build-hooks.js +41 -5
- package/dist/scripts/build-hooks.js.map +1 -1
- package/dist/scripts/smoke/smoke-claude.d.ts +2 -0
- package/dist/scripts/smoke/smoke-claude.d.ts.map +1 -0
- package/dist/scripts/smoke/smoke-claude.js +58 -0
- package/dist/scripts/smoke/smoke-claude.js.map +1 -0
- package/dist/scripts/smoke/smoke-codex.d.ts +2 -0
- package/dist/scripts/smoke/smoke-codex.d.ts.map +1 -0
- package/dist/scripts/smoke/smoke-codex.js +50 -0
- package/dist/scripts/smoke/smoke-codex.js.map +1 -0
- package/dist/scripts/smoke/smoke-opencode.d.ts +2 -0
- package/dist/scripts/smoke/smoke-opencode.d.ts.map +1 -0
- package/dist/scripts/smoke/smoke-opencode.js +99 -0
- package/dist/scripts/smoke/smoke-opencode.js.map +1 -0
- package/docs/contract/harness-io.md +51 -6
- package/package.json +7 -3
|
@@ -100,6 +100,22 @@ ${ruleContent}
|
|
|
100
100
|
`) };
|
|
101
101
|
};
|
|
102
102
|
var handler_default = handler;
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
};
|
|
103
|
+
|
|
104
|
+
// ../../../../../tmp/nexus-hook-entry-agent-bootstrap-1776671215246/agent-bootstrap-entry.ts
|
|
105
|
+
import { readFileSync as readFileSync2 } from "node:fs";
|
|
106
|
+
async function main() {
|
|
107
|
+
let raw = "";
|
|
108
|
+
try {
|
|
109
|
+
raw = readFileSync2(0, "utf-8");
|
|
110
|
+
} catch {}
|
|
111
|
+
const input = raw ? JSON.parse(raw) : {};
|
|
112
|
+
const result = await handler_default(input);
|
|
113
|
+
if (result != null && result !== undefined) {
|
|
114
|
+
process.stdout.write(JSON.stringify(result));
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
main().then(() => process.exit(0), (err) => {
|
|
118
|
+
process.stderr.write(String(err?.stack ?? err) + `
|
|
119
|
+
`);
|
|
120
|
+
process.exit(1);
|
|
121
|
+
});
|
|
@@ -159,6 +159,22 @@ Subagent "${agent_type}" finished. Tasks still pending with this role: ${ids}. R
|
|
|
159
159
|
}
|
|
160
160
|
};
|
|
161
161
|
var handler_default = handler;
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
};
|
|
162
|
+
|
|
163
|
+
// ../../../../../tmp/nexus-hook-entry-agent-finalize-1776671215240/agent-finalize-entry.ts
|
|
164
|
+
import { readFileSync as readFileSync2 } from "node:fs";
|
|
165
|
+
async function main() {
|
|
166
|
+
let raw = "";
|
|
167
|
+
try {
|
|
168
|
+
raw = readFileSync2(0, "utf-8");
|
|
169
|
+
} catch {}
|
|
170
|
+
const input = raw ? JSON.parse(raw) : {};
|
|
171
|
+
const result = await handler_default(input);
|
|
172
|
+
if (result != null && result !== undefined) {
|
|
173
|
+
process.stdout.write(JSON.stringify(result));
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
main().then(() => process.exit(0), (err) => {
|
|
177
|
+
process.stderr.write(String(err?.stack ?? err) + `
|
|
178
|
+
`);
|
|
179
|
+
process.exit(1);
|
|
180
|
+
});
|
|
@@ -7295,6 +7295,22 @@ var handler = async (input) => {
|
|
|
7295
7295
|
`) };
|
|
7296
7296
|
};
|
|
7297
7297
|
var handler_default = handler;
|
|
7298
|
-
|
|
7299
|
-
|
|
7300
|
-
};
|
|
7298
|
+
|
|
7299
|
+
// ../../../../../tmp/nexus-hook-entry-prompt-router-1776671215226/prompt-router-entry.ts
|
|
7300
|
+
import { readFileSync as readFileSync2 } from "node:fs";
|
|
7301
|
+
async function main() {
|
|
7302
|
+
let raw = "";
|
|
7303
|
+
try {
|
|
7304
|
+
raw = readFileSync2(0, "utf-8");
|
|
7305
|
+
} catch {}
|
|
7306
|
+
const input = raw ? JSON.parse(raw) : {};
|
|
7307
|
+
const result = await handler_default(input);
|
|
7308
|
+
if (result != null && result !== undefined) {
|
|
7309
|
+
process.stdout.write(JSON.stringify(result));
|
|
7310
|
+
}
|
|
7311
|
+
}
|
|
7312
|
+
main().then(() => process.exit(0), (err) => {
|
|
7313
|
+
process.stderr.write(String(err?.stack ?? err) + `
|
|
7314
|
+
`);
|
|
7315
|
+
process.exit(1);
|
|
7316
|
+
});
|
|
@@ -16,6 +16,22 @@ var handler = async (input) => {
|
|
|
16
16
|
writeFileSync(join(sessionDir, "tool-log.jsonl"), "");
|
|
17
17
|
};
|
|
18
18
|
var handler_default = handler;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
};
|
|
19
|
+
|
|
20
|
+
// ../../../../../tmp/nexus-hook-entry-session-init-1776671215218/session-init-entry.ts
|
|
21
|
+
import { readFileSync } from "node:fs";
|
|
22
|
+
async function main() {
|
|
23
|
+
let raw = "";
|
|
24
|
+
try {
|
|
25
|
+
raw = readFileSync(0, "utf-8");
|
|
26
|
+
} catch {}
|
|
27
|
+
const input = raw ? JSON.parse(raw) : {};
|
|
28
|
+
const result = await handler_default(input);
|
|
29
|
+
if (result != null && result !== undefined) {
|
|
30
|
+
process.stdout.write(JSON.stringify(result));
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
main().then(() => process.exit(0), (err) => {
|
|
34
|
+
process.stderr.write(String(err?.stack ?? err) + `
|
|
35
|
+
`);
|
|
36
|
+
process.exit(1);
|
|
37
|
+
});
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"SessionStart"
|
|
7
7
|
],
|
|
8
8
|
"matcher": "*",
|
|
9
|
-
"handlerPath": "../
|
|
9
|
+
"handlerPath": "../hooks/session-init.js",
|
|
10
10
|
"priority": 0,
|
|
11
11
|
"timeout": 10
|
|
12
12
|
},
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"UserPromptSubmit"
|
|
17
17
|
],
|
|
18
18
|
"matcher": "*",
|
|
19
|
-
"handlerPath": "../
|
|
19
|
+
"handlerPath": "../hooks/prompt-router.js",
|
|
20
20
|
"priority": 0,
|
|
21
21
|
"timeout": 10
|
|
22
22
|
},
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"SubagentStop"
|
|
27
27
|
],
|
|
28
28
|
"matcher": "*",
|
|
29
|
-
"handlerPath": "../
|
|
29
|
+
"handlerPath": "../hooks/agent-finalize.js",
|
|
30
30
|
"priority": 0,
|
|
31
31
|
"timeout": 10
|
|
32
32
|
},
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"SubagentStart"
|
|
37
37
|
],
|
|
38
38
|
"matcher": "*",
|
|
39
|
-
"handlerPath": "../
|
|
39
|
+
"handlerPath": "../hooks/agent-bootstrap.js",
|
|
40
40
|
"priority": 0,
|
|
41
41
|
"timeout": 10
|
|
42
42
|
}
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Project onboarding — scan, mission, essentials, context generation"
|
|
3
|
+
---
|
|
4
|
+
## Role
|
|
5
|
+
|
|
6
|
+
Scans the project and builds Nexus knowledge in the flat .nexus/ structure. On first run, performs a 5-step full onboarding sequence.
|
|
7
|
+
|
|
8
|
+
## Constraints
|
|
9
|
+
|
|
10
|
+
- NEVER modify source code. Slimming down the instruction file beyond the project section is not this skill's responsibility.
|
|
11
|
+
- NEVER infer or guess information that cannot be confirmed from code — do not write it to context/.
|
|
12
|
+
- NEVER store secrets (API keys, credentials, etc.) in knowledge files.
|
|
13
|
+
- NEVER overwrite existing files without `--reset`. On resume, preserve existing files intact.
|
|
14
|
+
- Project section in the instruction file MUST go through user confirmation before writing.
|
|
15
|
+
- NEVER reference or create identity/, codebase/, reference/, or core/ paths.
|
|
16
|
+
- Essentials section MUST NOT exceed 10 lines. If more items are needed, move lower-priority ones to .nexus/context/.
|
|
17
|
+
|
|
18
|
+
## Guidelines
|
|
19
|
+
|
|
20
|
+
## Trigger
|
|
21
|
+
|
|
22
|
+
- Manual trigger — full onboarding (or resume). See harness docs: slash_command_display.
|
|
23
|
+
- Manual trigger with `--reset` flag — back up existing `.nexus/` knowledge and re-onboard. See harness docs: slash_command_display.
|
|
24
|
+
- Manual trigger with `--reset --cleanup` flags — show backup list + selective deletion. See harness docs: slash_command_display.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Modes
|
|
29
|
+
|
|
30
|
+
### First Run (no `.nexus/` flat structure)
|
|
31
|
+
|
|
32
|
+
Automatically runs the 5-step full onboarding.
|
|
33
|
+
|
|
34
|
+
Detection: `.nexus/context/`, `.nexus/memory/`, `.nexus/state/`, `.nexus/rules/` do not exist.
|
|
35
|
+
|
|
36
|
+
### Resume (`.nexus/` partially exists)
|
|
37
|
+
|
|
38
|
+
Check existing state and resume from the first incomplete step.
|
|
39
|
+
|
|
40
|
+
### Reset (`--reset`)
|
|
41
|
+
|
|
42
|
+
Back up existing `.nexus/` knowledge directories to `.nexus/bak.{timestamp}/`, then enter First Run.
|
|
43
|
+
|
|
44
|
+
### Cleanup (`--reset --cleanup`)
|
|
45
|
+
|
|
46
|
+
Show backup directory list, let user select backups to delete.
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## Process
|
|
51
|
+
|
|
52
|
+
### Phase 0: Mode Detection
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
IF --reset --cleanup flag:
|
|
56
|
+
Show list of .nexus/bak.*/ directories
|
|
57
|
+
Prompt user with options via `question({ question: "Select a backup to delete (or cancel)", choices: [<backup list...>, {label: Cancel, description: "Exit without changes"}] })`.
|
|
58
|
+
Delete selected backup and exit
|
|
59
|
+
|
|
60
|
+
ELSE IF --reset flag:
|
|
61
|
+
Move .nexus/{memory,context,state,rules}/ → .nexus/bak.{timestamp}/
|
|
62
|
+
Inform: "Existing knowledge has been backed up to .nexus/bak.{timestamp}/. Starting re-onboarding."
|
|
63
|
+
→ Enter First Run
|
|
64
|
+
|
|
65
|
+
ELSE IF .nexus/context/ exists:
|
|
66
|
+
→ Enter Resume (check existing steps and resume)
|
|
67
|
+
|
|
68
|
+
ELSE:
|
|
69
|
+
→ Enter First Run (from Step 1)
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## Steps
|
|
75
|
+
|
|
76
|
+
### Step 1: Project Scan
|
|
77
|
+
|
|
78
|
+
Auto-detect code structure and tech stack. Create the flat `.nexus/` directory structure if it does not exist.
|
|
79
|
+
|
|
80
|
+
Create directories (using shell command execution):
|
|
81
|
+
- `.nexus/memory/`
|
|
82
|
+
- `.nexus/context/`
|
|
83
|
+
- `.nexus/state/`
|
|
84
|
+
- `.nexus/rules/`
|
|
85
|
+
|
|
86
|
+
Collected items:
|
|
87
|
+
- **Directory structure**: top-level layout, major modules/packages
|
|
88
|
+
- **Tech stack**: language, framework, runtime (package.json, Cargo.toml, pyproject.toml, go.mod, build.gradle, etc.)
|
|
89
|
+
- **Build/test system**: scripts, CI configuration
|
|
90
|
+
- **Existing docs**: CLAUDE.md, README.md, docs/, .cursorrules, etc.
|
|
91
|
+
- **git context**: recent commits, branch structure, contributors
|
|
92
|
+
|
|
93
|
+
Output: scan summary (language, framework, structure overview)
|
|
94
|
+
|
|
95
|
+
For large projects (10+ top-level directories or 100+ files), consider spawning an Explore subagent for parallel scanning to reduce Lead context usage.
|
|
96
|
+
|
|
97
|
+
### Step 2: Mission + Essentials (Interactive)
|
|
98
|
+
|
|
99
|
+
Using the Step 1 scan results, draft a Mission statement (1–2 lines) and an Essentials list, then present both to the user for confirmation in a single pass.
|
|
100
|
+
|
|
101
|
+
#### Essentials Guidelines
|
|
102
|
+
|
|
103
|
+
Essentials are agent-critical facts — things an agent would get wrong if it didn't know them. Apply this judgment criterion: **"Would an agent produce wrong results without knowing this?"** Yes → Essentials. No → .nexus/context/.
|
|
104
|
+
|
|
105
|
+
Draft from these five categories (include only what applies to this project):
|
|
106
|
+
|
|
107
|
+
- **Tech stack** — runtime, language, package manager, core framework. Flag non-default tools (e.g. bun instead of npm, deno instead of node).
|
|
108
|
+
- **Workflow** — build, test, deploy commands. Must-follow procedures such as required lint or type-check steps before committing.
|
|
109
|
+
- **Constraints** — forbidden tools, patterns, or approaches. Directories or files that must not be modified.
|
|
110
|
+
- **Domain** — target audience, required terminology or tone, compliance or regulatory constraints, methodology for research projects.
|
|
111
|
+
- **Conventions** — naming, structure, or style that deviate from general defaults. Project-specific patterns an agent would not infer.
|
|
112
|
+
|
|
113
|
+
Do not include items that are standard defaults for the detected tech stack. Do not exceed 10 lines total in the Essentials section.
|
|
114
|
+
|
|
115
|
+
#### Draft Presentation
|
|
116
|
+
|
|
117
|
+
Present the full draft to the user in this format:
|
|
118
|
+
|
|
119
|
+
```
|
|
120
|
+
The following will be added to the instruction file (see harness docs: instruction_file) (existing content will not be changed):
|
|
121
|
+
|
|
122
|
+
<!-- PROJECT:START -->
|
|
123
|
+
## {project-name}
|
|
124
|
+
|
|
125
|
+
{mission 1-2 lines}
|
|
126
|
+
|
|
127
|
+
### Essentials
|
|
128
|
+
- {auto-detected item}
|
|
129
|
+
- {auto-detected item}
|
|
130
|
+
<!-- PROJECT:END -->
|
|
131
|
+
|
|
132
|
+
Any changes?
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
Wait for the user to confirm or provide edits. Apply all changes in one pass — do not ask about Mission and Essentials separately.
|
|
136
|
+
|
|
137
|
+
After confirmation, write the section into the instruction file inside markers using the harness's file-editing primitive. If the instruction file already contains `<!-- PROJECT:START -->` markers, replace the content between them. If the instruction file does not exist, create it with the markers.
|
|
138
|
+
|
|
139
|
+
### Step 3: Context Knowledge Auto-Generation
|
|
140
|
+
|
|
141
|
+
Analyze Step 1 scan results to generate context knowledge documents in `.nexus/context/`.
|
|
142
|
+
|
|
143
|
+
Principles:
|
|
144
|
+
- File names and content are decided freely based on project characteristics. No fixed templates.
|
|
145
|
+
- Existing docs are information sources only — do not replicate their structure verbatim.
|
|
146
|
+
- Do not guess content that cannot be confirmed from code.
|
|
147
|
+
- Typically 1-3 files are sufficient. More files are not better.
|
|
148
|
+
- **Generate abstract-level content only** — design patterns, architecture direction, module relationships, conventions. Do NOT include code-level details such as file listings, function signatures, or import maps. Those can be read directly from code.
|
|
149
|
+
|
|
150
|
+
Generation targets (select and name based on what the project actually needs):
|
|
151
|
+
- Development stack (languages, frameworks, runtimes, key dependencies, build/test/deploy workflow)
|
|
152
|
+
- Design and architecture (module relationships, data flow, core entry points, conventions)
|
|
153
|
+
- Implementation specifics (pipeline details, configuration patterns, file structure conventions, tool restrictions — anything too specific for the instruction file but not readable from code alone)
|
|
154
|
+
|
|
155
|
+
Use the harness's file-creation primitive to create files at `.nexus/context/{chosen-name}.md`.
|
|
156
|
+
|
|
157
|
+
For large projects, spawn Writer subagents per topic to generate context knowledge in parallel. Lead coordinates and reviews outputs.
|
|
158
|
+
|
|
159
|
+
On completion: "context knowledge N files generated"
|
|
160
|
+
|
|
161
|
+
### Step 4: Rules Initial Setup (Optional)
|
|
162
|
+
|
|
163
|
+
Check whether team custom rules are needed.
|
|
164
|
+
|
|
165
|
+
```
|
|
166
|
+
question({ question: "Do you want to set up development rules now?", choices: [{label: "Set up", description: "Coding conventions, test policy, commit rules, etc."}, {label: Skip, description: "Can be added later via [rule] tag"}] })
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
If "Set up": present a draft based on scan results → user confirms → save via the harness's file-creation primitive to `.nexus/rules/{topic}.md`.
|
|
170
|
+
|
|
171
|
+
If "Skip": inform and proceed to Step 5.
|
|
172
|
+
|
|
173
|
+
### Step 5: Completion Summary
|
|
174
|
+
|
|
175
|
+
Output a summary of the onboarding results.
|
|
176
|
+
|
|
177
|
+
```
|
|
178
|
+
## Nexus Initialization Complete
|
|
179
|
+
|
|
180
|
+
### Generated Files
|
|
181
|
+
- instruction file: project section — mission and essentials (<!-- PROJECT:START/END -->)
|
|
182
|
+
- .nexus/context/: {list of generated files}
|
|
183
|
+
- .nexus/rules/: {generated files or "none (skipped)"}
|
|
184
|
+
|
|
185
|
+
### Next Steps
|
|
186
|
+
- [plan] — research, analyze, and plan before execution
|
|
187
|
+
- [run] — execute from a plan
|
|
188
|
+
- Manual re-run trigger with `--reset` flag — re-run onboarding (existing knowledge will be backed up). See harness docs: slash_command_display.
|
|
189
|
+
```
|