buildwithnexus 0.10.1 → 0.10.3
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/README.md +18 -0
- package/harness/Cargo.lock +1 -1
- package/harness/Cargo.toml +2 -2
- package/harness/src/agent.rs +440 -108
- package/harness/src/config.rs +230 -47
- package/harness/src/hooks.rs +141 -45
- package/harness/src/lib.rs +917 -86
- package/harness/src/onboarding.rs +18 -2
- package/harness/src/provider.rs +53 -9
- package/harness/src/tools.rs +198 -3
- package/harness/src/tui.rs +483 -120
- package/harness/src/workflow.rs +386 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -60,6 +60,24 @@ buildwithnexus plan <task> # decompose, approve, then execute
|
|
|
60
60
|
buildwithnexus brainstorm <q> # free-form chat
|
|
61
61
|
buildwithnexus init # (re)configure provider / model / key
|
|
62
62
|
buildwithnexus providers # list built-in providers
|
|
63
|
+
buildwithnexus doctor # diagnose setup (keys, tools, connectivity)
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
Inside the interactive session:
|
|
67
|
+
|
|
68
|
+
```
|
|
69
|
+
/model [name] hot-swap the AI model mid-session
|
|
70
|
+
/compact compress context (free up token budget)
|
|
71
|
+
/review AI code review of current git diff
|
|
72
|
+
/commit AI-drafted conventional commit message
|
|
73
|
+
/pr AI-drafted pull request title + description
|
|
74
|
+
/schedule <delay> <task> run a task once in the background (5s, 2m, 1h)
|
|
75
|
+
/loop <interval> <task> run a task repeatedly in the background
|
|
76
|
+
/workflows list and manage background workflows
|
|
77
|
+
/btw <context> inject context into the next agent turn
|
|
78
|
+
/config configure hooks, memory, and commands via AI
|
|
79
|
+
/memory view and edit session memory
|
|
80
|
+
/skills list skills and custom commands
|
|
63
81
|
```
|
|
64
82
|
|
|
65
83
|
## Permissions
|
package/harness/Cargo.lock
CHANGED
package/harness/Cargo.toml
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "buildwithnexus"
|
|
3
|
-
version = "0.10.
|
|
3
|
+
version = "0.10.3"
|
|
4
4
|
edition = "2021"
|
|
5
|
-
description = "A hilariously fast agentic AI CLI harness — remote or local models,
|
|
5
|
+
description = "A hilariously fast agentic AI CLI harness — remote or local models, full TUI with modes, memory, skills, hooks, and image input"
|
|
6
6
|
license = "MIT"
|
|
7
7
|
repository = "https://github.com/garretts-apps/buildwithnexus"
|
|
8
8
|
default-run = "buildwithnexus"
|