ワンクリックで
delegating
Delegate a task to a subagent so you can focus on coordination
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Delegate a task to a subagent so you can focus on coordination
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Grill the user relentlessly about a plan, decision, or idea. Use when the user wants to stress-test their thinking, or uses any 'grill' trigger phrases.
Help the user pin down a clear and actionable plan for a single feature/change.
Quickly learn the core aspects of a project
Use this skill to build a call-dependency graph from source files, grouped by declarations (file/interface/class/object) with visibility-aware styling and a legend
Use this skill when you need to research a topic and it's likely too large for a quick answer
Use this skill to search the web for up to date information or fetch web pages
| name | delegating |
| description | Delegate a task to a subagent so you can focus on coordination |
Spawn yourself as a sub-agent via bash to perform a task: $@
pi --print with appropriate arguments:--provider and --model accordinglytimeout since the subagent might take a long time (e.g. 5 minutes or longer)Subagents see nothing from your session. You must pass:
Keep prompts under ~1KB:
Find something
pi --print <<-'EOF'
Find all calls to fooBar() in the codebase.
Return a list grouped by file.
EOF
Write something
pi --print <<-'EOF'
Write an email validator function:
- Check format (user@domain.tld)
- Return true/false
EOF
Investigate with context
pi --print <<-'EOF'
You are debugging the auth module.
**Goal:** Find why login fails for users with 2FA.
**Prior:** User reports "works without 2FA, fails with it".
**Files:**
- auth/login.js: main login logic
- auth/totp.js: 2FA handling
**Scope:** Focus on 2FA code path only.
**Output:** List of potential causes ranked by likelihood.
EOF