noah-code 0.4.0__tar.gz → 0.5.0__tar.gz
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.
- {noah_code-0.4.0 → noah_code-0.5.0}/.github/workflows/ci.yml +0 -2
- {noah_code-0.4.0 → noah_code-0.5.0}/PKG-INFO +9 -1
- {noah_code-0.4.0 → noah_code-0.5.0}/README.md +8 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/interactive-reference.md +24 -3
- noah_code-0.5.0/docs/releases/v0.4.1.md +54 -0
- noah_code-0.5.0/docs/releases/v0.5.0.md +64 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/pyproject.toml +1 -1
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/__init__.py +1 -1
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/agent.py +43 -28
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/budget.py +40 -13
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/cli.py +25 -9
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/commands.py +78 -26
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/composer.py +31 -18
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/config.py +57 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/host.py +190 -9
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/llm_replies.py +3 -1
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/providers.py +7 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/runtime_state.py +12 -8
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/sessions.py +4 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/steer.py +49 -1
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/tool_output.py +4 -4
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/tools/process_tools.py +88 -41
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/tools/task_tools.py +57 -17
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/tools/workspace_tools.py +160 -58
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/ui/console.py +15 -12
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/ui/textual.css +211 -4
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/ui/textual_app.py +1652 -161
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_agent_security.py +63 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_budget.py +66 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_cache_context.py +2 -1
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_cli.py +123 -2
- noah_code-0.5.0/tests/test_commands.py +75 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_composer.py +72 -1
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_config.py +16 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_console_ui.py +15 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_host.py +173 -1
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_llm_replies.py +23 -3
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_process_tools.py +195 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_providers.py +13 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_runtime_state.py +26 -1
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_sessions.py +23 -1
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_steer.py +27 -1
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_task_tools.py +93 -1
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_textual_tui.py +852 -36
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_tool_output.py +21 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_workspace_tools.py +118 -7
- {noah_code-0.4.0 → noah_code-0.5.0}/uv.lock +20 -10
- {noah_code-0.4.0 → noah_code-0.5.0}/.github/workflows/release.yml +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/.gitignore +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/.pre-commit-config.yaml +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/assets/noah-in-action.svg +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/assets/noah-logo.svg +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/configuration.md +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/development.md +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/extensions.md +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/releases/v0.1.0.md +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/releases/v0.1.1.md +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/releases/v0.2.0.md +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/releases/v0.2.1.md +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/releases/v0.2.2.md +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/releases/v0.2.3.md +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/releases/v0.2.4.md +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/releases/v0.3.0.md +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/releases/v0.4.0.md +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/reliability.md +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/docs/security.md +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/install.sh +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/__main__.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/agents.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/approvals.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/checkpoints.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/credentials.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/custom_commands.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/event_bridge.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/events.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/github.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/hooks.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/llm.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/macos_sandbox.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/mcp_setup.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/nooa_compat.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/permissions.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/predict.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/project_notes.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/redaction.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/secure_files.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/skills_setup.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/snapshots.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/summarization.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/telemetry.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/themes.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/tools/__init__.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/tools/diff_tools.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/tools/git_tools.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/tools/github_tools.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/tools/lsp_tools.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/tools/media_tools.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/tools/memory_tools.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/tools/plan_tools.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/tools/question_tools.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/tools/web_tools.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/ui/__init__.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/ui/protocol.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/updates.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/usage.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/workspace.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/src/noah_code/worktree.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/conftest.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_agents.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_approvals.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_checkpoints.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_compaction_eviction.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_credentials.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_custom_commands.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_diff_tools.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_efficiency.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_event_bridge.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_event_bridge_and_shell.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_git_tools.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_github.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_hooks.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_installer.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_llm.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_lsp_tools.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_mcp_setup.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_permissions.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_plan_memory_tools.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_project_notes.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_prompt_scorecard.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_question_tools.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_redaction.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_run_exit.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_skills_setup.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_snapshots.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_summarization.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_telemetry.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_updates.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_wave1_e2e.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_web_tools.py +0 -0
- {noah_code-0.4.0 → noah_code-0.5.0}/tests/test_worktree.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: noah-code
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: Noah Code terminal coding agent, built on NVIDIA OO Agents (NOOA)
|
|
5
5
|
Project-URL: Homepage, https://github.com/skundu42/noah-code
|
|
6
6
|
Project-URL: Documentation, https://github.com/skundu42/noah-code#readme
|
|
@@ -170,11 +170,17 @@ Type `/` to search the full command and configuration reference. The most common
|
|
|
170
170
|
| Drag, then `Cmd+C` / `Ctrl+Shift+C` | Select and copy TUI text |
|
|
171
171
|
| `Ctrl+Shift+C` with no selection | Copy the latest Noah reply |
|
|
172
172
|
| `Ctrl+G` | Open the searchable skills picker |
|
|
173
|
+
| `Ctrl+L` | Open the model picker |
|
|
174
|
+
| `Ctrl+R` | Search and recall a prior prompt |
|
|
175
|
+
| `Ctrl+T` | Expand or collapse live tool output |
|
|
176
|
+
| `Shift+Tab` | Open the reasoning-effort picker |
|
|
177
|
+
| `Alt+Up` | Recall the newest queued prompt for editing |
|
|
173
178
|
| `Ctrl+]` | Return to live transcript output |
|
|
174
179
|
| `Tab` | Switch between build and plan mode |
|
|
175
180
|
| `F2` | Open execution activity |
|
|
176
181
|
| `F3` | Open paginated conversation history |
|
|
177
182
|
| `F4` | Open the live agent, terminal, and job ledger |
|
|
183
|
+
| `Shift+F7` | Focus or leave the scrollable context rail |
|
|
178
184
|
| `/model` | Configure a provider or switch the session model |
|
|
179
185
|
| `/theme` | Choose Atom One Dark, Noah Ocean, Graphite, or High Contrast |
|
|
180
186
|
| `/diff` | Review staged and unstaged changes |
|
|
@@ -188,6 +194,8 @@ On wide terminals, the side rail prioritizes the active operation, delegated age
|
|
|
188
194
|
terminals, Git branch and change counts, session, model usage, update state, and plan. Git status is refreshed in the background at turn
|
|
189
195
|
boundaries, so the animated working state stays responsive. The main pane remains centered on the
|
|
190
196
|
large Noah wordmark until the first prompt, then becomes the conversation and execution timeline.
|
|
197
|
+
The composer footer keeps contextual keys and compact token, cache, and cost telemetry visible at
|
|
198
|
+
every terminal width where they fit.
|
|
191
199
|
|
|
192
200
|
## Sessions and crash recovery
|
|
193
201
|
|
|
@@ -125,11 +125,17 @@ Type `/` to search the full command and configuration reference. The most common
|
|
|
125
125
|
| Drag, then `Cmd+C` / `Ctrl+Shift+C` | Select and copy TUI text |
|
|
126
126
|
| `Ctrl+Shift+C` with no selection | Copy the latest Noah reply |
|
|
127
127
|
| `Ctrl+G` | Open the searchable skills picker |
|
|
128
|
+
| `Ctrl+L` | Open the model picker |
|
|
129
|
+
| `Ctrl+R` | Search and recall a prior prompt |
|
|
130
|
+
| `Ctrl+T` | Expand or collapse live tool output |
|
|
131
|
+
| `Shift+Tab` | Open the reasoning-effort picker |
|
|
132
|
+
| `Alt+Up` | Recall the newest queued prompt for editing |
|
|
128
133
|
| `Ctrl+]` | Return to live transcript output |
|
|
129
134
|
| `Tab` | Switch between build and plan mode |
|
|
130
135
|
| `F2` | Open execution activity |
|
|
131
136
|
| `F3` | Open paginated conversation history |
|
|
132
137
|
| `F4` | Open the live agent, terminal, and job ledger |
|
|
138
|
+
| `Shift+F7` | Focus or leave the scrollable context rail |
|
|
133
139
|
| `/model` | Configure a provider or switch the session model |
|
|
134
140
|
| `/theme` | Choose Atom One Dark, Noah Ocean, Graphite, or High Contrast |
|
|
135
141
|
| `/diff` | Review staged and unstaged changes |
|
|
@@ -143,6 +149,8 @@ On wide terminals, the side rail prioritizes the active operation, delegated age
|
|
|
143
149
|
terminals, Git branch and change counts, session, model usage, update state, and plan. Git status is refreshed in the background at turn
|
|
144
150
|
boundaries, so the animated working state stays responsive. The main pane remains centered on the
|
|
145
151
|
large Noah wordmark until the first prompt, then becomes the conversation and execution timeline.
|
|
152
|
+
The composer footer keeps contextual keys and compact token, cache, and cost telemetry visible at
|
|
153
|
+
every terminal width where they fit.
|
|
146
154
|
|
|
147
155
|
## Sessions and crash recovery
|
|
148
156
|
|
|
@@ -9,7 +9,12 @@
|
|
|
9
9
|
| `Tab` | Toggle `build`/`plan` mode; accept the highlighted slash option while suggestions are open |
|
|
10
10
|
| `Ctrl+P` | Open the command palette |
|
|
11
11
|
| `Ctrl+G` | Open the searchable skills picker |
|
|
12
|
+
| `Ctrl+L` | Open the model picker |
|
|
12
13
|
| `Ctrl+O` | Open the session picker |
|
|
14
|
+
| `Ctrl+R` | Search prior prompts and recall one into the composer |
|
|
15
|
+
| `Ctrl+T` | Expand or collapse live tool output |
|
|
16
|
+
| `Alt+Up` | Recall the newest queued prompt into the composer |
|
|
17
|
+
| `Shift+Tab` | Open the reasoning-effort picker |
|
|
13
18
|
| `Ctrl+N` | Start a new session |
|
|
14
19
|
| `Ctrl+C` | Cancel the active turn and clear queued follow-ups; press twice while idle to quit |
|
|
15
20
|
| `Ctrl+Q` | Quit |
|
|
@@ -17,6 +22,7 @@
|
|
|
17
22
|
| `F2` | Open recent activity and full captured output |
|
|
18
23
|
| `F3` | Open paginated persisted conversation history |
|
|
19
24
|
| `F4` | Open the live work ledger for agents, terminals, and background jobs |
|
|
25
|
+
| `Shift+F7` | Focus or leave the context rail on wide terminals |
|
|
20
26
|
| `Ctrl+]` | Return to live transcript output and clear the new-output counter |
|
|
21
27
|
|
|
22
28
|
At an approval prompt, press `1` to approve once, `2` to remember the approval for the current
|
|
@@ -29,16 +35,29 @@ branch and staged/modified/new counts, session, model usage, and up to six open
|
|
|
29
35
|
Narrow terminals retain the transcript, live activity, suggestions, and composer without the rail.
|
|
30
36
|
Terminals 25 rows high or shorter use compact spacing.
|
|
31
37
|
|
|
38
|
+
The line below the composer keeps the active keyboard guidance on the left and, when space permits,
|
|
39
|
+
session input/output tokens, cache hit rate, and estimated cost on the right. This telemetry remains
|
|
40
|
+
available even when the wide context rail is hidden.
|
|
41
|
+
|
|
42
|
+
Live tool output stays in a compact two-line drawer so long commands do not push the conversation
|
|
43
|
+
away. Press `Ctrl+T` to expand the drawer in place; `F2` retains the complete output after the tool
|
|
44
|
+
finishes. The drawer replaces the animated working banner while a visible tool is active, avoiding
|
|
45
|
+
duplicate status lines; the banner returns between tools.
|
|
46
|
+
|
|
32
47
|
Type `/` in the composer to open the inline command list; the list remains visible and filters
|
|
33
48
|
continuously. Use `Up`/`Down` to highlight a command, `Enter` or `Tab` to complete it, and `Esc` to
|
|
34
49
|
close the list. Press `Enter` again to run the completed command. Typing `/config` expands the list
|
|
35
50
|
to every resolved configuration path and its current redacted value.
|
|
36
51
|
|
|
52
|
+
Press `Ctrl+R` to search prompts already shown in the current session. Choosing one loads it into
|
|
53
|
+
the composer without sending it; pressing `Esc` keeps the current draft unchanged.
|
|
54
|
+
|
|
37
55
|
Until a session has its first user prompt, the main pane keeps the large Noah wordmark centered. Startup,
|
|
38
56
|
repository changes, model, mode, usage, and update state live in the context rail on wide
|
|
39
|
-
terminals.
|
|
40
|
-
|
|
41
|
-
|
|
57
|
+
terminals. The rail scrolls when its sections exceed the available rows; press `Shift+F7`, then use
|
|
58
|
+
arrows, Page Up/Down, Home, or End without leaving the keyboard. Git status is collected in a
|
|
59
|
+
background worker at startup and turn boundaries; the animated Noah path updates only the working
|
|
60
|
+
banner and live activity. Existing sessions with user history restore their transcript normally.
|
|
42
61
|
|
|
43
62
|
Drag across transcript, activity, diff, or history text to select it. `Cmd+C` on macOS or
|
|
44
63
|
`Ctrl+Shift+C` in other terminals copies the selection; when there is no selection, the same
|
|
@@ -59,6 +78,8 @@ While Noah is working, the composer stays open. `Enter` queues the current text
|
|
|
59
78
|
a second turn. Chrome shows `queued · n`. When the in-flight `handle()` returns (`DONE`,
|
|
60
79
|
`NEED_INPUT`, or `WAIT`), the host injects the next item in the same journaled turn — one persist
|
|
61
80
|
and one checkpoint for the whole steered run. `/undo` therefore reverts every follow-up together.
|
|
81
|
+
Press `Alt+Up` with an empty composer to pull the newest queued prompt and its attachments back for
|
|
82
|
+
editing.
|
|
62
83
|
|
|
63
84
|
The queue holds at most 100 items. A 101st `Enter` drops the oldest and status-prints
|
|
64
85
|
`steer dropped oldest`. `@path` mentions and `/attach` paths expand when the item is injected, not
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Noah Code v0.4.1
|
|
2
|
+
|
|
3
|
+
This release makes Noah's terminal interface easier to learn, calmer during long-running work,
|
|
4
|
+
and more reliable across supported platforms.
|
|
5
|
+
|
|
6
|
+
## Guided and discoverable UX
|
|
7
|
+
|
|
8
|
+
- Added first-run onboarding that detects missing model configuration and guides users through
|
|
9
|
+
provider setup instead of stopping at an error.
|
|
10
|
+
- Added a searchable, context-aware keyboard help overlay with shortcuts for the currently focused
|
|
11
|
+
panel.
|
|
12
|
+
- Streamlined slash-command discovery into one flat list, removed duplicate command entries, and
|
|
13
|
+
kept labels focused on the commands themselves.
|
|
14
|
+
- Added `/continue` session selection for the ten most recent sessions in the current workspace.
|
|
15
|
+
- Added automatic update notices with the appropriate upgrade command.
|
|
16
|
+
|
|
17
|
+
## Clearer long-running work
|
|
18
|
+
|
|
19
|
+
- Added tool-aware progress with elapsed time and concise counts for searches and other operations.
|
|
20
|
+
- Added a collapsible task timeline for thinking, tool calls, retries, approvals, and validation
|
|
21
|
+
without adding noise to the transcript.
|
|
22
|
+
- Added context visibility for active files, instructions, project memory, and attachments.
|
|
23
|
+
- Added queue management for pending prompts and attachments, expandable error details, safer undo
|
|
24
|
+
confirmation, and compact completion receipts.
|
|
25
|
+
|
|
26
|
+
## Faster, steadier TUI
|
|
27
|
+
|
|
28
|
+
- Reworked the working indicator into a continuous left-to-right animation with isolated 80 ms
|
|
29
|
+
loader updates, while elapsed status refreshes remain throttled separately.
|
|
30
|
+
- Added reduced-motion support and semantic states for thinking, running tools, waiting for input or
|
|
31
|
+
approval, cancelling, and errors.
|
|
32
|
+
- Improved live-output following so users can inspect earlier output while new-line counts remain
|
|
33
|
+
visible and can jump back to the latest output on demand.
|
|
34
|
+
- Avoided unnecessary full-screen redraws that caused flashing and visual instability.
|
|
35
|
+
|
|
36
|
+
## Reliability
|
|
37
|
+
|
|
38
|
+
- Made common search and read requests accept familiar paths, regex arguments, and content helper
|
|
39
|
+
forms more consistently.
|
|
40
|
+
- Hardened loader shutdown against timer/widget teardown races found on Intel macOS CI.
|
|
41
|
+
- Added a direct-child termination fallback when macOS denies an owned process-group signal.
|
|
42
|
+
- Stabilized asynchronous TUI validation across Linux, Apple-silicon macOS, and Intel macOS.
|
|
43
|
+
|
|
44
|
+
## Upgrade
|
|
45
|
+
|
|
46
|
+
Existing managed installations can run:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
noah update
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
New installations can use the one-command installer from the README.
|
|
53
|
+
|
|
54
|
+
**Full changelog:** https://github.com/skundu42/noah-code/compare/v0.4.0...v0.4.1
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Noah Code v0.5.0
|
|
2
|
+
|
|
3
|
+
This release improves task completion, terminal interaction, and bounded resource use. It includes
|
|
4
|
+
the unreleased prompt recall, model shortcuts, scrollable context rail, and composer usage telemetry.
|
|
5
|
+
|
|
6
|
+
## More reliable task completion
|
|
7
|
+
|
|
8
|
+
- Token-limited model replies no longer report a partial answer as successfully completed. The
|
|
9
|
+
runtime retries within its existing limits and reports failure if the model cannot continue.
|
|
10
|
+
- Subagents wait for their background jobs and resume the task instead of closing their tools
|
|
11
|
+
early. Requests for user input remain visible even after result summarization.
|
|
12
|
+
- Session deadlines now bound asynchronous model requests, queued provider calls, and background
|
|
13
|
+
waits. Provider requests receive the remaining timeout as well.
|
|
14
|
+
- Resumed sessions honor newer mode, model, and reasoning choices over older checkpoints and agent
|
|
15
|
+
snapshots. Resuming another worktree loads its configuration while preserving explicit CLI
|
|
16
|
+
overrides. Failed one-shot startup releases its host resources; repeated cleanup preserves the
|
|
17
|
+
saved undo journal.
|
|
18
|
+
|
|
19
|
+
## Smoother terminal UX
|
|
20
|
+
|
|
21
|
+
- Search previous prompts, recall queued prompts for editing, and use direct model and reasoning
|
|
22
|
+
shortcuts. The context rail scrolls and the composer shows compact usage telemetry.
|
|
23
|
+
- Transcript refreshes preserve your reading position. Switching sessions clears stale activity,
|
|
24
|
+
buffered output, and unread indicators.
|
|
25
|
+
- Cancelling keeps the interface busy until cleanup finishes, preventing overlapping turns and
|
|
26
|
+
session changes during teardown.
|
|
27
|
+
- File mentions support quoted paths, prioritize matching directories, and preserve nested image
|
|
28
|
+
paths when pasted. Text and image attachments share the same file-count limit.
|
|
29
|
+
- Console output renders literal tool/error text safely and preserves shell output chunk boundaries.
|
|
30
|
+
- Console resume preserves the saved model; `-h` and slash commands pasted with whitespace work.
|
|
31
|
+
|
|
32
|
+
## Safer edits and execution
|
|
33
|
+
|
|
34
|
+
- Stale edit anchors cannot overwrite newly changed content, even after a file has been reread.
|
|
35
|
+
- Read-only shell calls enforce workspace permissions and retain their stdin and timeout options.
|
|
36
|
+
Generated code cannot invoke the internal trusted-command bypass.
|
|
37
|
+
- Attachment paths resolve symlinks before containment checks, preventing outside-workspace reads.
|
|
38
|
+
- Background launches serialize capacity and name checks. Split terminal completion markers and
|
|
39
|
+
oversized log events no longer break completion or stall pagination.
|
|
40
|
+
- Invalid process deadlines fail before execution. Log storage failures preserve bounded in-memory
|
|
41
|
+
output, keep pipes draining, and do not prevent process cleanup.
|
|
42
|
+
|
|
43
|
+
## Less context and file I/O
|
|
44
|
+
|
|
45
|
+
- Subagent results obey their character budget, preserve the end of the findings, and bound the
|
|
46
|
+
input sent for distillation.
|
|
47
|
+
- Text attachment reads stop at their inline limit. Managed output ranges stream only as far as
|
|
48
|
+
the requested lines, avoiding whole-file allocation.
|
|
49
|
+
- Repeated glob patterns reuse compiled translations, with bracket pattern support.
|
|
50
|
+
- Runtime database connections close after each transaction, preventing connection accumulation
|
|
51
|
+
during long-running sessions.
|
|
52
|
+
- The existing prompt-size, cache-prefix stability, and helper-context scorecards remain release
|
|
53
|
+
checks. No new runtime dependencies were added by these fixes.
|
|
54
|
+
|
|
55
|
+
## Upgrade
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
noah update
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Validation uses deterministic provider responses and headless terminal tests; live provider billing
|
|
62
|
+
and end-to-end model quality are not benchmarked by this release.
|
|
63
|
+
|
|
64
|
+
**Full changelog:** https://github.com/skundu42/noah-code/compare/v0.4.1...v0.5.0
|
|
@@ -8,6 +8,7 @@ import platform
|
|
|
8
8
|
import site
|
|
9
9
|
import sys
|
|
10
10
|
import sysconfig
|
|
11
|
+
import threading
|
|
11
12
|
import types
|
|
12
13
|
from collections.abc import Iterator
|
|
13
14
|
from contextlib import contextmanager, suppress
|
|
@@ -119,13 +120,13 @@ class _PermissionSandboxedExecutor(SandboxedExecutor):
|
|
|
119
120
|
("ws", "edit"),
|
|
120
121
|
("ws", "inspect"),
|
|
121
122
|
("ws", "apply_patch"),
|
|
123
|
+
("ws", "apply_unified_diff"),
|
|
122
124
|
("ws", "list"),
|
|
123
125
|
("ws", "list_files"),
|
|
124
126
|
("ws", "read"),
|
|
125
127
|
("ws", "read_output"),
|
|
126
128
|
("ws", "replace"),
|
|
127
129
|
("ws", "run"),
|
|
128
|
-
("ws", "run_trusted_readonly"),
|
|
129
130
|
("ws", "search"),
|
|
130
131
|
("ws", "write"),
|
|
131
132
|
("ws", "write_file"),
|
|
@@ -146,7 +147,13 @@ class _PermissionSandboxedExecutor(SandboxedExecutor):
|
|
|
146
147
|
("web", "search"),
|
|
147
148
|
("task", "list"),
|
|
148
149
|
("task", "run"),
|
|
150
|
+
("task", "run_many"),
|
|
151
|
+
("task", "collaborate"),
|
|
149
152
|
("processes", "input"),
|
|
153
|
+
("processes", "open_terminal"),
|
|
154
|
+
("processes", "terminal_run"),
|
|
155
|
+
("processes", "terminal_status"),
|
|
156
|
+
("processes", "close_terminal"),
|
|
150
157
|
("processes", "logs"),
|
|
151
158
|
("processes", "start"),
|
|
152
159
|
("processes", "status"),
|
|
@@ -189,6 +196,8 @@ def _spawn_safe_local_agent(agent: Any) -> Any:
|
|
|
189
196
|
|
|
190
197
|
|
|
191
198
|
_OMIT = object()
|
|
199
|
+
# ``spawnv_passfds`` is process-global; patch and restore it as one critical section.
|
|
200
|
+
_SPAWN_PASSFDS_LOCK = threading.RLock()
|
|
192
201
|
|
|
193
202
|
|
|
194
203
|
def _pipe_picklable(value: Any) -> bool:
|
|
@@ -239,28 +248,29 @@ def _unique_spawn_passfds() -> Iterator[None]:
|
|
|
239
248
|
import multiprocessing.util as util
|
|
240
249
|
import os
|
|
241
250
|
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
251
|
+
with _SPAWN_PASSFDS_LOCK:
|
|
252
|
+
original = util.spawnv_passfds
|
|
253
|
+
|
|
254
|
+
def _inherit_fds(passfds: Any) -> tuple[int, ...]:
|
|
255
|
+
kept: list[int] = []
|
|
256
|
+
for fd in sorted({int(fd) for fd in passfds}):
|
|
257
|
+
if fd < 0:
|
|
258
|
+
continue
|
|
259
|
+
try:
|
|
260
|
+
os.fstat(fd)
|
|
261
|
+
except OSError:
|
|
262
|
+
continue
|
|
263
|
+
kept.append(fd)
|
|
264
|
+
return tuple(kept)
|
|
265
|
+
|
|
266
|
+
def _spawnv(path: Any, args: Any, passfds: Any) -> Any:
|
|
267
|
+
return original(path, args, _inherit_fds(passfds))
|
|
268
|
+
|
|
269
|
+
util.spawnv_passfds = _spawnv
|
|
270
|
+
try:
|
|
271
|
+
yield
|
|
272
|
+
finally:
|
|
273
|
+
util.spawnv_passfds = original
|
|
264
274
|
|
|
265
275
|
|
|
266
276
|
class _MacOSPermissionSandboxedExecutor(_PermissionSandboxedExecutor):
|
|
@@ -379,8 +389,9 @@ _NOAH_CODEACT_INSTRUCTIONS = """## Noah CodeAct
|
|
|
379
389
|
|
|
380
390
|
Work through tool calls; plain assistant prose cannot run code or end a turn.
|
|
381
391
|
Use `execute_python(code)` for work and `return_result(...)` to finish. Python
|
|
382
|
-
cell state persists. Parameters and `self` are preloaded
|
|
383
|
-
|
|
392
|
+
cell state persists. Parameters and `self` are preloaded. Every `self.ws.*`
|
|
393
|
+
call is async: always `await` it before iterating or accessing the result.
|
|
394
|
+
`self.message(text)` is synchronous—never await it.
|
|
384
395
|
|
|
385
396
|
### Tools
|
|
386
397
|
|
|
@@ -389,6 +400,10 @@ tools with `await`. `self.message(text)` is synchronous—never await it.
|
|
|
389
400
|
three arguments; two-argument calls are invalid. Prefer one atomic
|
|
390
401
|
`self.ws.apply_patch(changes)` for a
|
|
391
402
|
coherent batch; `self.ws.apply_unified_diff` accepts git-style hunks.
|
|
403
|
+
- Common shapes: `await ws.search(pattern, path=".", paths=None, regex=True)`
|
|
404
|
+
returns iterable Matches plus `.stdout`; `await ws.read(path, lines=None)`
|
|
405
|
+
returns text with `.text`/`.content`; `lines=60` reads the first 60 lines;
|
|
406
|
+
`await ws.list(pattern="**/*", path=".")` returns paths.
|
|
392
407
|
- Run commands with `await self.ws.run(command)` and inspect
|
|
393
408
|
returncode/stdout/stderr. `read_only=True` skips approval only for commands
|
|
394
409
|
the engine recognizes as read-only (Git inspection, search, listing, text
|
|
@@ -418,7 +433,7 @@ when the host was explicitly launched for a throwaway workspace.
|
|
|
418
433
|
|
|
419
434
|
Sandboxed cells forbid host/system imports (including os, sys, subprocess,
|
|
420
435
|
shutil, nooa, and noah_code), dynamic execution, input, and attaching callables
|
|
421
|
-
to `self`. Use dedicated tools instead; use `doc(
|
|
436
|
+
to `self`. Use dedicated tools instead; use `doc(self)` for API help.
|
|
422
437
|
|
|
423
438
|
End with exactly one RespondResult: DONE, NEED_INPUT, or WAIT (WAIT requires a
|
|
424
439
|
registered running job). In code call
|
|
@@ -432,8 +447,8 @@ _NOAH_EXECUTION_CONTEXT = """## Execution Context
|
|
|
432
447
|
Inside `execute_python`, method parameters and `self` are already in scope and
|
|
433
448
|
state persists across cells. Always available: `print`, `pprint`, `doc`,
|
|
434
449
|
`return_result`, `RespondReason`, `asyncio`, and `typing`. Inspect only the API
|
|
435
|
-
you need with `doc(self
|
|
436
|
-
module imports are intentionally not part of the agent-facing contract.
|
|
450
|
+
you need with `doc(self)`; nested sandbox proxies are not introspectable. Noah's
|
|
451
|
+
internal module imports are intentionally not part of the agent-facing contract.
|
|
437
452
|
"""
|
|
438
453
|
|
|
439
454
|
_OBSERVABILITY_EVENT_TYPES = (
|
|
@@ -83,6 +83,11 @@ class BudgetGuard:
|
|
|
83
83
|
wall_elapsed = max(time.time() - self._started_wall, 0.0)
|
|
84
84
|
return max(monotonic_elapsed, wall_elapsed)
|
|
85
85
|
|
|
86
|
+
def remaining_seconds(self) -> float | None:
|
|
87
|
+
if self._config.max_seconds is None:
|
|
88
|
+
return None
|
|
89
|
+
return max(self._config.max_seconds - self.elapsed_seconds(), 0.0)
|
|
90
|
+
|
|
86
91
|
def add_usage(
|
|
87
92
|
self,
|
|
88
93
|
*,
|
|
@@ -257,28 +262,50 @@ class BudgetedLLM:
|
|
|
257
262
|
if self._prefix_observer is not None:
|
|
258
263
|
self._prefix_observer.observe_prefix(messages, route=route)
|
|
259
264
|
|
|
265
|
+
def _limit_timeout(self, kwargs: dict[str, Any]) -> None:
|
|
266
|
+
remaining = self._guard.remaining_seconds()
|
|
267
|
+
if remaining is not None:
|
|
268
|
+
configured_timeout = kwargs.get("timeout")
|
|
269
|
+
kwargs["timeout"] = (
|
|
270
|
+
min(configured_timeout, remaining)
|
|
271
|
+
if isinstance(configured_timeout, int | float)
|
|
272
|
+
else remaining
|
|
273
|
+
)
|
|
274
|
+
|
|
260
275
|
async def acall(self, messages: list[dict], tools=None, output_model=None, **kwargs) -> Any:
|
|
261
276
|
# Active caps serialize reservations across parent and subagent routes;
|
|
262
277
|
# without this lane, concurrent calls can all pass the same preflight.
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
278
|
+
self._guard.enforce()
|
|
279
|
+
try:
|
|
280
|
+
async with asyncio.timeout(self._guard.remaining_seconds()):
|
|
281
|
+
async with self._guard._async_provider_lock:
|
|
282
|
+
self._guard.enforce()
|
|
283
|
+
self._observe_prefix(messages, route=kwargs.get("prompt_cache_key"))
|
|
284
|
+
# NOOA shields LiteLLM's provider task from cancellation.
|
|
285
|
+
# Bound its own request timeout as well as our outer wait.
|
|
286
|
+
self._limit_timeout(kwargs)
|
|
287
|
+
response = await self._inner.acall(
|
|
288
|
+
messages, tools=tools, output_model=output_model, **kwargs
|
|
289
|
+
)
|
|
290
|
+
prompt, completion, cost = _usage_from_response(response)
|
|
291
|
+
self._guard.add_usage(
|
|
292
|
+
prompt_tokens=prompt,
|
|
293
|
+
completion_tokens=completion,
|
|
294
|
+
cost_usd=cost,
|
|
295
|
+
)
|
|
296
|
+
self._guard.enforce()
|
|
297
|
+
return response
|
|
298
|
+
except TimeoutError:
|
|
299
|
+
# Preserve a provider's own timeout unless the session deadline
|
|
300
|
+
# expired. A session timeout must surface as a sticky budget stop.
|
|
275
301
|
self._guard.enforce()
|
|
276
|
-
|
|
302
|
+
raise
|
|
277
303
|
|
|
278
304
|
def call(self, messages: list[dict], tools=None, output_model=None, **kwargs) -> Any:
|
|
279
305
|
with self._guard._provider_lock:
|
|
280
306
|
self._guard.enforce()
|
|
281
307
|
self._observe_prefix(messages, route=kwargs.get("prompt_cache_key"))
|
|
308
|
+
self._limit_timeout(kwargs)
|
|
282
309
|
response = self._inner.call(
|
|
283
310
|
messages, tools=tools, output_model=output_model, **kwargs
|
|
284
311
|
)
|
|
@@ -146,7 +146,7 @@ def _configure_first_run_model(model_override: str | None) -> str | None:
|
|
|
146
146
|
return selected
|
|
147
147
|
|
|
148
148
|
|
|
149
|
-
@click.command("noah-code")
|
|
149
|
+
@click.command("noah-code", context_settings={"help_option_names": ["-h", "--help"]})
|
|
150
150
|
@click.version_option(__version__, prog_name="noah-code")
|
|
151
151
|
@click.argument("path", required=False, type=click.Path())
|
|
152
152
|
@click.option("--continue", "continue_session", is_flag=True, help="Resume latest session")
|
|
@@ -856,6 +856,7 @@ async def _prepare(
|
|
|
856
856
|
store = SessionStore(config.session_dir)
|
|
857
857
|
|
|
858
858
|
meta = None
|
|
859
|
+
launch_root = workspace.root
|
|
859
860
|
try:
|
|
860
861
|
if session_id:
|
|
861
862
|
meta = store.load_meta(session_id)
|
|
@@ -866,11 +867,18 @@ async def _prepare(
|
|
|
866
867
|
click.echo("error: no prior session for this workspace", err=True)
|
|
867
868
|
return None, EXIT_CONFIG
|
|
868
869
|
workspace = store.workspace_for_resume(meta, workspace)
|
|
869
|
-
if
|
|
870
|
+
if workspace.root != launch_root:
|
|
871
|
+
config = load_config(
|
|
872
|
+
workspace.root,
|
|
873
|
+
cli_overrides={**overrides, "session_dir": store.session_dir},
|
|
874
|
+
)
|
|
875
|
+
if meta is not None and any(value is not None for value in (model, reasoning_effort, mode)):
|
|
870
876
|
if model is not None:
|
|
871
877
|
meta.model = config.model
|
|
872
878
|
if reasoning_effort is not None:
|
|
873
879
|
meta.reasoning_effort = config.reasoning_effort
|
|
880
|
+
if mode is not None:
|
|
881
|
+
meta.mode = config.mode
|
|
874
882
|
store.save_meta(meta)
|
|
875
883
|
except SessionError as exc:
|
|
876
884
|
click.echo(f"error: {exc}", err=True)
|
|
@@ -894,7 +902,7 @@ async def _interactive(
|
|
|
894
902
|
unsafe_inprocess_code_execution: bool,
|
|
895
903
|
) -> int:
|
|
896
904
|
first_run = user_default_model() is None
|
|
897
|
-
if first_run and (model is not None or use_console):
|
|
905
|
+
if first_run and (model is not None or (use_console and not (continue_session or session_id))):
|
|
898
906
|
try:
|
|
899
907
|
model = _configure_first_run_model(model)
|
|
900
908
|
except (OSError, ValueError) as exc:
|
|
@@ -922,7 +930,7 @@ async def _interactive(
|
|
|
922
930
|
return code
|
|
923
931
|
workspace, config, store, meta = prepared
|
|
924
932
|
use_tui = config.ui.frontend == "tui" and not use_console
|
|
925
|
-
if first_run and model is None and not use_tui:
|
|
933
|
+
if first_run and model is None and not use_tui and meta is None:
|
|
926
934
|
try:
|
|
927
935
|
model = _configure_first_run_model(model)
|
|
928
936
|
except (OSError, ValueError) as exc:
|
|
@@ -948,13 +956,18 @@ async def _interactive(
|
|
|
948
956
|
return code
|
|
949
957
|
workspace, config, store, meta = prepared
|
|
950
958
|
if use_tui:
|
|
959
|
+
from noah_code.providers import model_setup_required
|
|
960
|
+
|
|
951
961
|
host = AgentHost(workspace, config, session_meta=meta, store=store)
|
|
952
962
|
onboarding_required = (
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
963
|
+
(
|
|
964
|
+
first_run
|
|
965
|
+
and model is None
|
|
966
|
+
and meta is None
|
|
967
|
+
and not os.environ.get("NOAH_CODE_MODEL")
|
|
968
|
+
and config.model == NoahCodeConfig().model
|
|
969
|
+
)
|
|
970
|
+
or model_setup_required(meta.model if meta is not None else config.model)
|
|
958
971
|
)
|
|
959
972
|
try:
|
|
960
973
|
try:
|
|
@@ -1033,6 +1046,9 @@ async def _run_session(
|
|
|
1033
1046
|
|
|
1034
1047
|
click.echo(f"error: {safe_error_message(exc)}", err=True)
|
|
1035
1048
|
return EXIT_AGENT
|
|
1049
|
+
finally:
|
|
1050
|
+
# Startup can fail before run_once reaches its own cleanup block.
|
|
1051
|
+
await host.close()
|
|
1036
1052
|
|
|
1037
1053
|
|
|
1038
1054
|
def main(argv: list[str] | None = None) -> None:
|