Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
97acde0
refactor: extract format/ module from main.rs (Phase 0.1)
jaikoo Apr 25, 2026
cfffce3
refactor: extract app.rs, args.rs, cli_commands.rs from main.rs + add…
jaikoo Apr 25, 2026
9d436b2
feat: add runtime models.json config, SDK crate, and extension/sessio…
jaikoo Apr 25, 2026
deb5a2b
Merge pull request #1 from deep-thinking-llc/feat/sdk-and-models-config
jaikoo Apr 25, 2026
278f7e7
Phase 2: collapsible tool output (10-line default)
jaikoo Apr 25, 2026
dd9581c
docs: add pi-mono parity design and implementation plan
jaikoo Apr 25, 2026
66294c6
Phase 3: enhanced permission prompt with box-drawing and approve-all
jaikoo Apr 25, 2026
c7b78bd
Phase 4: diff visualization with ANSI-colored output
jaikoo Apr 25, 2026
6fe7ce6
Phase 5: thinking indicator with animated dot-wave + completion line
jaikoo Apr 25, 2026
9986228
Phase 6: compact startup banner (2-line default)
jaikoo Apr 25, 2026
8b996ee
Phase 8: terminal resize awareness with TerminalSize tracker
jaikoo Apr 25, 2026
21850ac
Phase 9: tool call timeline with step-by-step rendering
jaikoo Apr 25, 2026
fc1952c
docs: rewrite docs for agent-first autonomous coding harness
jaikoo Apr 25, 2026
0b1f7d7
Phase 10: theme system with semantic color tokens
jaikoo Apr 25, 2026
ff63a03
integration: wire ToolCallTimeline, TerminalSize, and Theme into runtime
jaikoo Apr 25, 2026
c67ba24
feat: add JSON-RPC server for agent integration (Phase 2.1)
jaikoo Apr 25, 2026
fb714bc
fix: address review findings in RPC module
jaikoo Apr 25, 2026
24fd87f
feat: wire --mode rpc CLI flag into the claw binary
jaikoo Apr 25, 2026
8e56395
review fixes: char-count truncation, Theme migration across 5 modules
jaikoo Apr 25, 2026
4c58c74
fix: truncate_str byte-length -> char-count for unicode safety
jaikoo Apr 25, 2026
e4dae16
feat: harden SDK with AgentSessionBuilder, BoxedApiClient, and plugga…
jaikoo Apr 25, 2026
2d8fedc
feat: complete Phase 2.2 SDK hardening with steer, set_model, compact…
jaikoo Apr 25, 2026
33adf13
fix: address 6 review findings in SDK session module
jaikoo Apr 25, 2026
4406879
Theme migration: format/tool_fmt.rs — replace hard-coded ANSI codes w…
jaikoo Apr 26, 2026
ad58362
feat: implement Phase 2.3 tool registration with schema validation an…
jaikoo Apr 26, 2026
e7c0677
fix: address review findings and fill 20 test gaps in tool registration
jaikoo Apr 26, 2026
6b0132e
feat: implement Phase 2.5 session tree persistence with JSONL format
jaikoo Apr 26, 2026
8688d25
Add MIT license
jaikoo Apr 26, 2026
0816dfa
fix: address review findings and add 16 tests to session tree persist…
jaikoo Apr 26, 2026
8d2c410
Merge branch 'main' into feat/tui-refactor
jaikoo Apr 26, 2026
40e484c
Merge pull request #2 from deep-thinking-llc/feat/tui-refactor
jaikoo Apr 26, 2026
d8e2474
feat: implement Phase 3.1 review workflow with risk classification an…
jaikoo Apr 26, 2026
85a6ce4
test: add 26 tests covering review workflow edge cases and testing gaps
jaikoo Apr 26, 2026
9d2a401
feat: add DeepSeek, Ollama, Qwen (non-DashScope), and vLLM providers
jaikoo Apr 26, 2026
b2e2823
wire startup_banner config, Theme migration in app.rs, complete_tool …
jaikoo Apr 26, 2026
23ff959
test: add integration + e2e tests for new providers
jaikoo Apr 26, 2026
10882f9
feat: add onboarding setup module, fix clippy issues
jaikoo Apr 26, 2026
548c511
feat: add notification dispatcher subsystem (Phase 3.2)
jaikoo Apr 26, 2026
0869ff0
feat: add DeepSeek pricing, token limits, README docs, and models.jso…
jaikoo Apr 26, 2026
a760876
fix: add Qwen base URL fallback and review-driven fixes
jaikoo Apr 26, 2026
2cffcae
Merge pull request #3 from deep-thinking-llc/feat/tui-refactor
jaikoo Apr 26, 2026
b0159c5
complete_tool: SharedToolCallTimeline scaffolding in CliToolExecutor
jaikoo Apr 26, 2026
9fe8f3a
thread shared ToolCallTimeline through build_runtime to client and ex…
jaikoo Apr 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
MIT License

Copyright (c) 2025 UltraWorkers
Copyright (c) 2026 Jonathan Conway

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
187 changes: 0 additions & 187 deletions PARITY.md

This file was deleted.

114 changes: 0 additions & 114 deletions PHILOSOPHY.md

This file was deleted.

Loading