Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ x-agent/
├── junie/SKILL.md # Thin entry point (~27 lines)
├── qwen/SKILL.md # Thin entry point (~27 lines)
├── opencode/SKILL.md # Thin entry point (~27 lines)
├── pi/SKILL.md # Thin entry point (~20 lines)
├── pi/SKILL.md # Thin entry point (~27 lines)
├── references/
│ ├── shared-procedure.md # Core procedure (~105 lines)
│ ├── cli-codex.md # Codex CLI identity, invocation, version matrix
Expand Down
15 changes: 11 additions & 4 deletions pi/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
---
name: pi
description: Delegate tasks or get a second opinion from Pi CLI. Infers mode (delegation vs validation) from prompt context. Detects available models at runtime via the CLI. Use when cross-validating code, plans, or architecture with Pi, or offloading work to it. Do not use when already running inside Pi CLI or for tasks that do not benefit from cross-model input.
description: Delegate tasks or get a second opinion from Pi CLI.
Infers mode (delegation vs validation) from prompt context. Detects
available models at runtime via the CLI. Use when cross-validating code,
plans, or architecture with Pi, or offloading work to it.
Do not use when already running inside Pi CLI or for tasks
that do not benefit from cross-model input.
---

# Cross-Agent Task Runner — Pi CLI
Expand All @@ -15,6 +20,8 @@ description: Delegate tasks or get a second opinion from Pi CLI. Infers mode (de

**Step 2: Execute Shared Procedure**

1. Read `references/shared-procedure.md` for the core workflow (mode inference, context gathering, prompt construction, result presentation).
2. Read `references/cli-pi.md` for Pi-specific flags, model selection heuristics, and version compatibility matrix.
3. Follow the shared procedure using the Pi-specific details.
1. Read `references/shared-procedure.md` for the core workflow
(mode inference, context gathering, prompt construction, result presentation).
2. Read `references/cli-pi.md` for Pi-specific flags, model selection
heuristics, and version compatibility matrix.
3. Follow the shared procedure using the Pi-specific details.
Loading