@markusylisiurunen/tau 0.1.33 → 0.1.36

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.
Files changed (59) hide show
  1. package/README.md +17 -16
  2. package/dist/app.js +101 -105
  3. package/dist/app.js.map +1 -1
  4. package/dist/commands.js +43 -10
  5. package/dist/commands.js.map +1 -1
  6. package/dist/terminal.js +13 -0
  7. package/dist/terminal.js.map +1 -1
  8. package/dist/tools/bash.js +6 -13
  9. package/dist/tools/bash.js.map +1 -1
  10. package/dist/tools/edit.js +2 -47
  11. package/dist/tools/edit.js.map +1 -1
  12. package/dist/tools/grep.js +3 -23
  13. package/dist/tools/grep.js.map +1 -1
  14. package/dist/tools/read.js +7 -14
  15. package/dist/tools/read.js.map +1 -1
  16. package/dist/tools/registry.js.map +1 -1
  17. package/dist/tools/write.js +1 -19
  18. package/dist/tools/write.js.map +1 -1
  19. package/dist/types.js.map +1 -1
  20. package/dist/ui/app_intro.js +12 -0
  21. package/dist/ui/app_intro.js.map +1 -0
  22. package/dist/ui/assistant_message.js +4 -3
  23. package/dist/ui/assistant_message.js.map +1 -1
  24. package/dist/ui/bash_execution.js +46 -36
  25. package/dist/ui/bash_execution.js.map +1 -1
  26. package/dist/ui/components/one_line_segments.js +69 -0
  27. package/dist/ui/components/one_line_segments.js.map +1 -1
  28. package/dist/ui/custom_editor.js +11 -18
  29. package/dist/ui/custom_editor.js.map +1 -1
  30. package/dist/ui/file_execution.js +70 -27
  31. package/dist/ui/file_execution.js.map +1 -1
  32. package/dist/ui/footer.js +64 -14
  33. package/dist/ui/footer.js.map +1 -1
  34. package/dist/ui/inline.js +4 -0
  35. package/dist/ui/inline.js.map +1 -0
  36. package/dist/ui/queued_messages.js +9 -8
  37. package/dist/ui/queued_messages.js.map +1 -1
  38. package/dist/ui/restricted_execution.js +60 -47
  39. package/dist/ui/restricted_execution.js.map +1 -1
  40. package/dist/ui/session_divider.js +4 -3
  41. package/dist/ui/session_divider.js.map +1 -1
  42. package/dist/ui/session_summary.js +3 -4
  43. package/dist/ui/session_summary.js.map +1 -1
  44. package/dist/ui/slash_autocomplete.js +2 -2
  45. package/dist/ui/slash_autocomplete.js.map +1 -1
  46. package/dist/ui/system_message.js +10 -2
  47. package/dist/ui/system_message.js.map +1 -1
  48. package/dist/ui/task_execution.js +14 -15
  49. package/dist/ui/task_execution.js.map +1 -1
  50. package/dist/ui/theme.js +179 -89
  51. package/dist/ui/theme.js.map +1 -1
  52. package/dist/ui/tool_output.js +7 -2
  53. package/dist/ui/tool_output.js.map +1 -1
  54. package/dist/ui/tool_truncation.js +21 -0
  55. package/dist/ui/tool_truncation.js.map +1 -0
  56. package/dist/ui/user_message.js +1 -2
  57. package/dist/ui/user_message.js.map +1 -1
  58. package/dist/version.js +1 -1
  59. package/package.json +11 -9
package/README.md CHANGED
@@ -150,22 +150,22 @@ tau will create or update AGENTS.md at your project root, integrating the new in
150
150
 
151
151
  tau supports slash commands for common actions:
152
152
 
153
- | command | description |
154
- | ---------------------- | ---------------------------------------------- |
155
- | `/help` | show available commands |
156
- | `/new` | clear the session and start fresh |
157
- | `/copy` | copy the last assistant message |
158
- | `/copy:code` | copy just the code blocks |
159
- | `/reload` | reload personas, prompts, and skills from disk |
160
- | `/fork:only-summary` | compress history and continue with a summary |
161
- | `/fork:with-last-turn` | compress history but keep the last exchange |
162
- | `/persona:<id>` | switch to a different persona |
163
- | `/prompt:<id>` | insert a saved prompt template |
164
- | `/bash:<id>` | run a saved shell command |
165
- | `/risk:<level>` | change the risk level |
166
- | `!<cmd>` | run a shell command directly |
167
-
168
- the fork commands are useful when conversations get long. they compress everything into a summary so the model retains context without the overhead of a full history.
153
+ | command | description |
154
+ | ------------------------- | ---------------------------------------------- |
155
+ | `/help` | show available commands |
156
+ | `/new` | clear the session and start fresh |
157
+ | `/copy` | copy the last assistant message |
158
+ | `/copy:code` | copy just the code blocks |
159
+ | `/reload` | reload personas, prompts, and skills from disk |
160
+ | `/compact:only-summary` | compress history and continue with a summary |
161
+ | `/compact:with-last-turn` | compress history but keep the last exchange |
162
+ | `/persona:<id>` | switch to a different persona |
163
+ | `/prompt:<id>` | insert a saved prompt template |
164
+ | `/bash:<id>` | run a saved shell command |
165
+ | `/risk:<level>` | change the risk level |
166
+ | `!<cmd>` | run a shell command directly |
167
+
168
+ the compact commands are useful when conversations get long. they compress everything into a summary so the model retains context without the overhead of a full history.
169
169
 
170
170
  ## keyboard shortcuts
171
171
 
@@ -307,6 +307,7 @@ release steps:
307
307
  ```sh
308
308
  npm run check
309
309
  npm run build
310
+ npm test
310
311
  ```
311
312
 
312
313
  - bump the version (creates a git tag):