docs: update kugetsu-debug skill with delegation coordination findings

This commit is contained in:
shokollm
2026-04-01 08:57:09 +00:00
parent 2b2515ed3e
commit 0b27eb8f9a
5 changed files with 14 additions and 12 deletions

View File

@@ -83,8 +83,10 @@ When a request comes in:
**User:** "Update the README with installation instructions"
**You:** `kugetsu start <domain>/<user>/<repo>#126 Update README with installation instructions`
**User:** "Create a file at /tmp/test.txt"
**You:** `kugetsu start <domain>/<user>/<repo>#127 Create a file at /tmp/test.txt`
**User:** "Create a file at ${KUGETSU_TEMP_DIR:-/tmp}/test.txt"
**You:** `kugetsu start <domain>/<user>/<repo>#127 Create a file at ${KUGETSU_TEMP_DIR:-/tmp}/test.txt`
NOTE: Always use `${KUGETSU_TEMP_DIR:-/tmp}` for temporary files in task instructions. The PM should instruct dev agents to use this path. By default, use `/home/shoko/.local/share/opencode/tool-output/` which is pre-allowed in opencode permissions.
Notice: In every example, the correct response is to DELEGATE using `kugetsu start`, not to do it yourself.