@nanobpm/nano-coder 0.4.0 → 0.5.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/README.md +2 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ cargo install nano-coder # or build from source
|
|
|
20
20
|
- **Sessions**: Append-only JSONL session logs with resume and input-ID deduplication
|
|
21
21
|
- **Lifecycle Hooks**: 6 hook events for observing/intercepting agent behavior
|
|
22
22
|
- **Configuration**: TOML-based config file at `~/.config/nano-coder/config.toml`
|
|
23
|
-
- **Commands**: `/help`, `/compact`, `/context`, `/verbosity`, `/settings`, `/tools`, `/skills`, `/exit`
|
|
23
|
+
- **Commands**: `/help`, `/compact`, `/context`, `/verbosity`, `/settings`, `/tools`, `/skills`, `/restart`, `/exit`
|
|
24
24
|
- **Streaming output**: answers stream in, thinking shows collapsed (Ctrl-O expands it), tool calls show inline
|
|
25
25
|
- **Status line** pinned to the bottom of the terminal, plus manual and automatic context compaction
|
|
26
26
|
- **Task plans**: `plan_*` tools keep a plan with notes outside the conversation, so long tasks survive compaction, resume and a change of worker
|
|
@@ -287,6 +287,7 @@ list is built from the same table as `/help` (`src/commands.rs`).
|
|
|
287
287
|
- `/model [provider/model]` - Show or switch the model (conversation is kept)
|
|
288
288
|
- `/providers` - List providers, endpoints and whether their API key is available
|
|
289
289
|
- `/session` - Show the session ID and log path
|
|
290
|
+
- `/restart` - Start a fresh session (clean context) without exiting
|
|
290
291
|
- `/exit` - Exit the agent
|
|
291
292
|
|
|
292
293
|
## Building and Running
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nanobpm/nano-coder",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "A 6MB coding agent. Run a fleet on your laptop.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"node": ">=18"
|
|
32
32
|
},
|
|
33
33
|
"optionalDependencies": {
|
|
34
|
-
"@nanobpm/nano-coder-darwin-arm64": "0.
|
|
35
|
-
"@nanobpm/nano-coder-darwin-x64": "0.
|
|
36
|
-
"@nanobpm/nano-coder-linux-arm64": "0.
|
|
37
|
-
"@nanobpm/nano-coder-linux-x64": "0.
|
|
34
|
+
"@nanobpm/nano-coder-darwin-arm64": "0.5.0",
|
|
35
|
+
"@nanobpm/nano-coder-darwin-x64": "0.5.0",
|
|
36
|
+
"@nanobpm/nano-coder-linux-arm64": "0.5.0",
|
|
37
|
+
"@nanobpm/nano-coder-linux-x64": "0.5.0"
|
|
38
38
|
}
|
|
39
39
|
}
|