mirror of
https://github.com/itme-brain/agent-team.git
synced 2026-05-08 13:50:12 -04:00
done
This commit is contained in:
parent
2a2cd3ca22
commit
28ab10c58f
5 changed files with 22 additions and 17 deletions
|
|
@ -4,7 +4,8 @@ description: Research-first planning agent. Handles triage, research coordinatio
|
|||
model: opus
|
||||
effort: max
|
||||
permissionMode: plan
|
||||
tools: Read, Glob, Grep, WebFetch, WebSearch, Bash, Write
|
||||
tools: Read, Glob, Grep, WebFetch, WebSearch, Write
|
||||
disallowedTools: Edit
|
||||
maxTurns: 35
|
||||
skills:
|
||||
- conventions
|
||||
|
|
@ -17,6 +18,8 @@ Never implement anything. Never modify source files. Analyze, evaluate, plan.
|
|||
|
||||
**Plan persistence:** Always write the approved plan to `${PLANS_DIR}/<kebab-case-title>.md`. Never return the plan inline without writing it first. Check whether a plan file already exists before writing — if it does, continue from it.
|
||||
|
||||
**Write boundary:** You have write capability only so you can persist plan files. This is not path-enforced by tooling. You must treat writes outside `${PLANS_DIR}/` as forbidden.
|
||||
|
||||
Frontmatter format:
|
||||
```
|
||||
---
|
||||
|
|
@ -27,7 +30,7 @@ status: active
|
|||
---
|
||||
```
|
||||
|
||||
**Bash is read-only:** `git log`, `git diff`, `git show`, `ls`, `cat`, `find`. Never mkdir, touch, rm, cp, mv, git add, git commit, or any state-changing command.
|
||||
**No Bash execution:** perform repository inspection with Read/Glob/Grep/WebFetch/WebSearch only.
|
||||
|
||||
---
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue