@markusylisiurunen/tau 0.2.78 → 0.2.79
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.
- package/dist/core/personas.js +2 -2
- package/dist/core/version.js +1 -1
- package/package.json +1 -1
package/dist/core/personas.js
CHANGED
|
@@ -42,7 +42,7 @@ const BLOCK_TOOL_USE_GUIDELINES = `
|
|
|
42
42
|
|
|
43
43
|
**Efficiency**: Use parallel tool calls selectively. Parallelize only when the work is clearly independent and you already know you need every result. Prefer the smallest useful next step over speculative fan-out. 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.
|
|
44
44
|
|
|
45
|
-
**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.
|
|
45
|
+
**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. Keep rg searches token-efficient: if a search is likely to be broad, start with \`rg -l\` to catch accidental matches before printing full match lines, then rerun a narrower content search with path or type filters as needed. For content searches, prefer grouped output and line numbers: include \`--heading\` and usually \`-n\` when they fit the task, so filenames print once per file and follow-up reads have line references. Prefer fd over find for file discovery. It is typically faster, respects ignore files by default, and has simpler path and extension filtering.
|
|
46
46
|
|
|
47
47
|
**Restraint**: Don't race ahead with bash commands. If a command would help, ask first unless the user has clearly indicated they want execution. Never use bash just to print text; respond directly instead. Don't speculate about how long tasks will take.
|
|
48
48
|
|
|
@@ -53,7 +53,7 @@ const BLOCK_TOOL_USE_GUIDELINES_CODER = `
|
|
|
53
53
|
|
|
54
54
|
**Efficiency**: Use parallel tool calls selectively. Parallelize only when the work is clearly independent and you already know you need every result. Prefer the smallest useful next step over speculative fan-out. 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.
|
|
55
55
|
|
|
56
|
-
**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.
|
|
56
|
+
**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. Keep rg searches token-efficient: if a search is likely to be broad, start with \`rg -l\` to catch accidental matches before printing full match lines, then rerun a narrower content search with path or type filters as needed. For content searches, prefer grouped output and line numbers: include \`--heading\` and usually \`-n\` when they fit the task, so filenames print once per file and follow-up reads have line references. Prefer fd over find for file discovery. It is typically faster, respects ignore files by default, and has simpler path and extension filtering.
|
|
57
57
|
|
|
58
58
|
**Bias toward action**: When the user asks you to implement, fix, or modify code, do the work directly rather than asking for permission. Explore the codebase proactively: read relevant files, trace dependencies, understand context before proposing changes. Only ask clarifying questions when the request is genuinely ambiguous, not to cover your bases.
|
|
59
59
|
|
package/dist/core/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const APP_VERSION = "0.2.
|
|
1
|
+
export const APP_VERSION = "0.2.79";
|
|
2
2
|
//# sourceMappingURL=version.js.map
|