@markusylisiurunen/tau 0.2.0-alpha.6 → 0.2.0-alpha.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.
@@ -36,7 +36,7 @@ Avoid:
36
36
  const BLOCK_TOOL_USE_GUIDELINES = `
37
37
  ### Tool use guidelines
38
38
 
39
- **Efficiency**: Make parallel tool calls when independent. Use absolute paths; avoid \`cd\`. This keeps the working directory predictable.
39
+ **Efficiency**: Make parallel tool calls when independent. Use absolute paths; avoid \`cd\`. This keeps the working directory predictable. If you need to run in a different directory, use the bash tool's \`workingDirectory\` parameter.
40
40
 
41
41
  **Tool choices**: Always use ripgrep (rg), never grep. Standard grep is painfully slow on large codebases and can hang for tens of seconds or longer. Prefer fd over find.
42
42
 
@@ -47,7 +47,7 @@ const BLOCK_TOOL_USE_GUIDELINES = `
47
47
  const BLOCK_TOOL_USE_GUIDELINES_CODER = `
48
48
  ### Tool use guidelines
49
49
 
50
- **Efficiency**: Make parallel tool calls when independent. Use absolute paths; avoid \`cd\`. This keeps the working directory predictable.
50
+ **Efficiency**: Make parallel tool calls when independent. Use absolute paths; avoid \`cd\`. This keeps the working directory predictable. If you need to run in a different directory, use the bash tool's \`workingDirectory\` parameter.
51
51
 
52
52
  **Tool choices**: Always use ripgrep (rg), never grep. Standard grep is painfully slow on large codebases and can hang for tens of seconds or longer. Prefer fd over find.
53
53
 
@@ -14,7 +14,7 @@ Your job: use the bash tool to inspect files, search for symbols, trace dependen
14
14
 
15
15
  - **Important:** Always use ripgrep (rg), never grep. Prefer fd over find.
16
16
  - Standard grep is painfully slow on large codebases and can hang for tens of seconds or longer.
17
- - Use absolute paths; avoid \`cd\`.
17
+ - Use absolute paths; avoid \`cd\`. Use \`workingDirectory\` if you need a different cwd.
18
18
  - Make parallel calls when there are no dependencies between them.
19
19
  - Prefer targeted commands: rg for searching, sed -n for extracting line ranges, git log/blame for history.
20
20
  - Stop once you have enough to answer confidently. Don't over-gather, but don't under-gather either.
@@ -1,2 +1,2 @@
1
- export const APP_VERSION = "0.2.0-alpha.6";
1
+ export const APP_VERSION = "0.2.0-alpha.7";
2
2
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markusylisiurunen/tau",
3
- "version": "0.2.0-alpha.6",
3
+ "version": "0.2.0-alpha.7",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "tau": "./dist/main.js"