소스 정보
- 저장소
- espennilsen/pi
- 최근 소스 활동
- 2026년 7월 29일 06:20
- 감지된 SKILL.md 언어
- 영어
- 스타
- 116
- 포크
- 13
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/espennilsen/pi --skill pi-subagent명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | pi-subagent |
| description | Delegate tasks to specialized subagents for parallel or sequential execution. |
Use the subagent tool to delegate tasks to isolated pi subprocesses. Each subagent gets a fresh context window — no shared state with the parent session.
{ "agent": "scout", "task": "Find all REST endpoints in " }
{ "tasks": [
{ "agent": "scout", "task": "Audit auth module" },
{ "agent": "scout", "task": "Audit API routes" },
{ "agent": "scout", "task": "Audit database queries" }
]
}
{previous} for prior step's output{ "chain": [
{ "agent": "scout", "task": "Find all TODO comments in the codebase" },
{ "agent": "planner", "task": "Categorize and prioritize these TODOs:\n{previous}" },
{ "agent": "worker", "task": "Fix the top 3 critical TODOs:\n{previous}" }
]
}
Every task (single, parallel item, chain step) supports these overrides:
| Option | Type | Description |
|---|---|---|
model | string | Model override (e.g. "claude-haiku-4-5" for fast, "claude-sonnet-4-5" for complex) |
thinking | string | Thinking level: off, minimal, low, medium, high, xhigh |
extensions | string[] | Extension paths to load (subagents run with -ne — only whitelisted) |
skills | string[] | Skill files/dirs to load via --skill |
noTools | boolean | Disable all built-in tools (--no-tools) — for analysis-only agents |
noSkills | boolean | Disable skill discovery (-ns) |
cwd | string | Working directory override |
Priority: per-task item > top-level params > agent .md frontmatter > global settings
Fast recon with cheap model, no thinking overhead:
{ "agent": "scout", "task": "Map the auth module", "model": "claude-haiku-4-5", "thinking": "off" }
Research task needing web search:
{ "agent": "worker", "task": "Find pricing for Vercel Pro", "extensions": ["extensions/pi-brave-search"] }
Parallel with different models per task:
{ "tasks": [
{ "agent": "scout", "task": "Map the codebase", "model": "claude-haiku-4-5" },
{ "agent": "reviewer", "task": "Review the PR diff", "model": "claude-sonnet-4-5", "thinking": "high" }
]
}
Chain with escalating capability:
{ "chain": [
{ "agent": "scout", "task": "Map the auth module", "model": "claude-haiku-4-5", "thinking": "off" },
{ "agent": "planner", "task": "Plan a refactor based on: {previous}", "thinking": "high" },
{ "agent": "worker", "task": "Implement the plan: {previous}", "thinking": "medium" }
]
}
Subagents always run with --no-extensions (-ne). They cannot:
Whitelist only what a specific task needs via the extensions parameter.
"user" (default) — loads from ~/.pi/agent/agents/*.md"both" — also includes .pi/agents/*.md (prompts for confirmation)"project" — only project-local agentsPlace .md files in ~/.pi/agent/agents/ with YAML frontmatter:
---
name: scout
description: Fast codebase reconnaissance
tools: read, grep, find, ls, bash
extensions: extensions/pi-dotenv
model: claude-haiku-4-5
---
System prompt for the agent goes here...
| Frontmatter | Description |
|---|---|
name | Agent name (required) |
description | What the agent does (required) |
tools | Comma-separated tool whitelist |
model | Default model |
extensions | Comma-separated extension paths to load |
off for fast tasks, high/xhigh for complex reasoning