@inkobytes/nexus 1.0.4 → 1.0.5
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/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/commands/doctor.js +3 -2
- package/src/commands/init.js +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.5 - 2026-06-03
|
|
4
|
+
|
|
5
|
+
- Reframed doctor-managed agent guides around agent-native, file-native release flow instead of human-oriented feature commit bundling.
|
|
6
|
+
- Updated `nexus doctor --fix` and `nexus init` scaffolds to teach release-by-file at coherent checkpoints.
|
|
7
|
+
- Added regression coverage so scaffold generation and repair keep the new agent-native wording stable.
|
|
8
|
+
|
|
3
9
|
## 1.0.4 - 2026-06-03
|
|
4
10
|
|
|
5
11
|
- Collapsed large `nexus doctor` Git Privacy floods into grouped per-root summaries with sample paths.
|
package/package.json
CHANGED
package/src/commands/doctor.js
CHANGED
|
@@ -93,8 +93,9 @@ This project uses Nexus for multi-agent coordination.
|
|
|
93
93
|
### Nexus Rules
|
|
94
94
|
|
|
95
95
|
- Claim before editing shared project files: \`nexus claim <path> @Agent "intent"\`.
|
|
96
|
-
- Nexus is agent-native and file-native, not
|
|
97
|
-
-
|
|
96
|
+
- Nexus is agent-native and file-native, not human-native: optimize for concurrency and rollback, not feature-commit aesthetics.
|
|
97
|
+
- Release each claimed file as soon as it reaches a coherent checkpoint.
|
|
98
|
+
- Never hold claims just to bundle a prettier feature commit; that blocks other agents.
|
|
98
99
|
- Release finished work through Nexus: \`nexus release <path> "commit message"\`.
|
|
99
100
|
- Use \`nexus next @Agent\` for the next safe queue task.
|
|
100
101
|
- Do not free-roam into unassigned or \`Auto-flow: no\` work without user approval.
|
package/src/commands/init.js
CHANGED
|
@@ -379,8 +379,9 @@ This project uses Nexus for multi-agent coordination.
|
|
|
379
379
|
### Nexus Rules
|
|
380
380
|
|
|
381
381
|
- Claim before editing shared project files: \`nexus claim <path> @Agent "intent"\`.
|
|
382
|
-
- Nexus is agent-native and file-native, not
|
|
383
|
-
-
|
|
382
|
+
- Nexus is agent-native and file-native, not human-native: optimize for concurrency and rollback, not feature-commit aesthetics.
|
|
383
|
+
- Release each claimed file as soon as it reaches a coherent checkpoint.
|
|
384
|
+
- Never hold claims just to bundle a prettier feature commit; that blocks other agents.
|
|
384
385
|
- Release finished work through Nexus: \`nexus release <path> "commit message"\`.
|
|
385
386
|
- Use \`nexus next @Agent\` for the next safe queue task.
|
|
386
387
|
- Do not free-roam into unassigned or \`Auto-flow: no\` work without user approval.
|