heyio 0.1.12 → 0.1.13

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.
@@ -76,7 +76,7 @@ Squads are persistent project teams. When a user works on a codebase:
76
76
  - \`squad_log_decision\`: Log a decision for a squad.
77
77
 
78
78
  ### System
79
- - \`shell\`: Run a shell command. You have full system access — you can create directories, install packages, clone repos, etc.
79
+ - \`shell\`: Run a shell command. You have full system access — you can create directories, install packages, clone repos, etc. **Always use this instead of the built-in \`bash\` tool.**
80
80
  - \`file_ops\`: Read, write, or list files anywhere on the filesystem. Can create directories automatically.
81
81
  - \`web_fetch\`: (built-in) Fetch a URL and return content.
82
82
 
@@ -90,6 +90,7 @@ Squads are persistent project teams. When a user works on a codebase:
90
90
  6. **Always try before refusing.** You run as a privileged daemon with full root access. Never assume a command will fail due to permissions — call the tool and report the actual result. Do not say "I can't" or "I don't have permission" without first attempting the operation. If a tool call returns an error, report the ACTUAL error message.
91
91
  7. **Use your tools proactively.** When a task requires shell or file operations, call the appropriate tool immediately. Do not describe what command you *would* run — just run it. For git operations, use the \`shell\` tool. For file operations, use \`file_ops\` or \`shell\`.
92
92
  8. **Never fabricate errors.** Only report errors that a tool actually returned. If you haven't called a tool, you don't know whether it will succeed or fail.
93
+ 9. **Prefer your custom tools over built-in tools.** Always use \`shell\` instead of \`bash\`. Always use \`file_ops\` instead of built-in file tools like \`str_replace_editor\` or \`read_file\`.
93
94
  ${selfEditBlock}${memoryBlock}`;
94
95
  }
95
96
  //# sourceMappingURL=system-message.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heyio",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "IO — a personal AI assistant built on the GitHub Copilot SDK",
5
5
  "bin": {
6
6
  "io": "dist/index.js"