32 lines
1.5 KiB
Markdown
32 lines
1.5 KiB
Markdown
# .grok/agents/
|
|
|
|
Grok equivalents / thin adapters for the subagent personas defined in `.claude/agents/`.
|
|
|
|
**Pattern (same as .grok/skills/ for commands and .claude/skills/):**
|
|
- Thin files here that say "See the corresponding .claude/agents/<name>.md for the full persona definition and instructions."
|
|
- Adapt for Grok: use `run_terminal_command`, `spawn_subagent`, `search_tool` + `use_tool` (esp. grepai__* for deep exploration), other Grok tools (image/video if relevant).
|
|
- All agents must obey CLAUDE.md (Grok loads it), .grok/README.md, GrepAI-first rule before any direct file reads, and the coexistence rules.
|
|
- Do not edit or duplicate the original .claude/agents/ files.
|
|
|
|
This keeps single source of truth in .claude/ while giving Grok native discovery for subagents (via .grok/agents/ and project rules).
|
|
|
|
See .claude/agents/AGENT_QUICK_REFERENCE.md and the individual .md for details.
|
|
|
|
## Key Grok-adapted agents (full list mirrors .claude/agents/):
|
|
- coding.md
|
|
- deep-explore.md (heavy GrepAI/grepai MCP + trace callers/callees)
|
|
- code-review.md
|
|
- backup.md
|
|
- gitea.md
|
|
- database.md
|
|
- documentation-squire.md
|
|
- testing.md
|
|
- photo.md , video-analysis.md
|
|
- dos-coding.md
|
|
- code-fixer.md
|
|
- And the supporting: CODE_REVIEW_ST_*.md , DATABASE_CONNECTION_INFO.md , AGENT_QUICK_REFERENCE.md
|
|
|
|
For subagent spawning in Grok, use the `spawn_subagent` tool with the persona from the .grok/ or .claude/ definition (deeper wins or as specified).
|
|
|
|
See also: .grok/skills/ for the main /command skills, CLAUDE.md for when to use subagents.
|