@markusylisiurunen/tau 0.1.6 → 0.1.7

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 (3) hide show
  1. package/README.md +16 -16
  2. package/dist/app.js +2 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -96,17 +96,17 @@ tau --persona opus-4.5-coder
96
96
 
97
97
  ## reasoning
98
98
 
99
- some models support extended thinking, where they reason through problems before responding. cycle through reasoning levels with `Shift+Tab`, or set one at startup:
99
+ some models support extended thinking, where they reason through problems before responding. cycle through reasoning levels with `shift+tab`, or set one at startup:
100
100
 
101
101
  ```sh
102
102
  tau --persona opus-4.5:high
103
103
  ```
104
104
 
105
- toggle visibility of the model's thinking with `Ctrl+T`.
105
+ toggle visibility of the model's thinking with `ctrl+t`.
106
106
 
107
107
  ## working with files
108
108
 
109
- reference files in your message by typing `@` followed by the filename. autocomplete helps you find the right path. press `Ctrl+F` to expand file contents into the conversation, letting the model see the actual code.
109
+ reference files in your message by typing `@` followed by the filename. autocomplete helps you find the right path. press `ctrl+f` to expand file contents into the conversation, letting the model see the actual code.
110
110
 
111
111
  you can also pipe content directly:
112
112
 
@@ -151,12 +151,12 @@ the fork commands are useful when conversations get long. they compress everythi
151
151
 
152
152
  | key | action |
153
153
  | ----------- | --------------------------- |
154
- | `Shift+Tab` | cycle reasoning effort |
155
- | `Ctrl+T` | toggle thinking visibility |
156
- | `Ctrl+O` | toggle compact tool display |
157
- | `Ctrl+F` | expand @file mentions |
158
- | `Escape` | interrupt generation |
159
- | `Ctrl+C` | exit |
154
+ | `shift+tab` | cycle reasoning effort |
155
+ | `ctrl+t` | toggle thinking visibility |
156
+ | `ctrl+o` | toggle compact tool display |
157
+ | `ctrl+f` | expand @file mentions |
158
+ | `esc` | interrupt generation |
159
+ | `ctrl+c` | exit |
160
160
 
161
161
  ## configuration
162
162
 
@@ -241,23 +241,23 @@ tau connects your terminal to large language models, giving them tools to intera
241
241
 
242
242
  the model sees your messages, any file contents you've shared, and the results of tool calls. it doesn't have ambient access to your filesystem; it only sees what you show it or what it explicitly requests through tools.
243
243
 
244
- tool calls are displayed in the UI so you can see exactly what the model is doing. use `Ctrl+O` to toggle between compact and detailed views.
244
+ tool calls are displayed in the UI so you can see exactly what the model is doing. use `ctrl+o` to toggle between compact and detailed views.
245
245
 
246
246
  ## creating a release
247
247
 
248
248
  releases are published to npm locally (no CI publish workflow).
249
249
 
250
- - bump the version (creates a git tag):
250
+ - run checks and build:
251
251
 
252
252
  ```sh
253
- npm version patch
253
+ npm run check
254
+ npm run build
254
255
  ```
255
256
 
256
- - run checks and build:
257
+ - bump the version (creates a git tag):
257
258
 
258
259
  ```sh
259
- npm run check
260
- npm run build
260
+ npm version patch
261
261
  ```
262
262
 
263
263
  - push the commit and tag:
@@ -266,7 +266,7 @@ npm run build
266
266
  git push --follow-tags
267
267
  ```
268
268
 
269
- - create a github release (optional, for release notes):
269
+ - create a github release:
270
270
 
271
271
  ```sh
272
272
  gh release create v$(node -p "require('./package.json').version") --generate-notes
package/dist/app.js CHANGED
@@ -246,7 +246,7 @@ export class ChatApp {
246
246
  ? this.getContextWindowForLastTurn(last)
247
247
  : this.currentPersona.model.contextWindow;
248
248
  const { read, write } = this.getCacheTotals();
249
- let stats = `R${formatTokenWindow(read)} W${formatTokenWindow(write)}`;
249
+ let stats = `r${formatTokenWindow(read)} w${formatTokenWindow(write)}`;
250
250
  if (!last) {
251
251
  return `${stats} 0%/${formatTokenWindow(windowTokens)}`;
252
252
  }
@@ -261,7 +261,7 @@ export class ChatApp {
261
261
  totalOutputTokens += m.usage?.output ?? 0;
262
262
  }
263
263
  }
264
- stats += ` O${formatTokenWindow(totalOutputTokens)}`;
264
+ stats += ` o${formatTokenWindow(totalOutputTokens)}`;
265
265
  const promptTokensSent = (last.usage?.input ?? 0) + (last.usage?.cacheRead ?? 0) + (last.usage?.cacheWrite ?? 0);
266
266
  const percent = windowTokens > 0 ? (promptTokensSent / windowTokens) * 100 : 0;
267
267
  const percentStr = `${formatAdaptiveNumber(percent, 1, 3)}%`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markusylisiurunen/tau",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "tau": "./dist/main.js"