用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/liza-mas/liza --skill generic-subagent命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | generic-subagent |
| description | Context-efficient delegation to subagents (read-only default, READ-WRITE opt-in) |
Subagents offload context-expensive work. The caller receives a digest, not the full trace.
Default subagents are read-only (research, analyze, summarize). READ-WRITE subagents may modify state within declared scope.
See the contract's Subagent Delegation Protocol for authoritative triggers.
Summary:
| Trigger | Threshold |
|---|---|
| Uncertain scope | Assess with cheap ops first → convert to defined |
| Content to read | >250KB of files to READ (not search scope) |
| Processing depth | >2 intermediate tool calls whose outputs aren't needed in final delivery |
Clarification on 250KB:
Read operations (full content enters context)Grep (only matches enter context)# Check total size of files to READ (not search)
stat --printf="%s\n" src/api/*.py | awk '{sum+=$1} END {print sum}'
MODE: SUBAGENT
MODE: SUBAGENT READ-WRITE ← only when objective requires state changes
GOAL: {{objective}}
CONTEXT: {{what caller already knows — no pre-analysis required}}
SCOPE: {{files, directories, or boundaries}}
Brief principles:
Use Task tool. Subagent inherits contract but operates in Subagent Mode (no external gates, compressed output). Default is read-only; READ-WRITE permits state modification with mandatory Intent Gate per action.
The CLAUDE_CODE_SUBAGENT_MODEL env var sets the default model.
Override it per-agent when the task doesn't need the default's reasoning:
| Task type | Model | Examples |
|---|---|---|
| Mechanical | haiku | grep, glob, file reads, size checks, find-and-list |
| Analytical | default | code review, architecture survey, dependency analysis |
| Judgment-heavy | opus | cross-module impact, ambiguous specs, security review |
Rule of thumb: if the brief could be expressed as a shell pipeline
but delegation is used for context isolation, use haiku.
When receiving a MODE: SUBAGENT brief:
RESULT: [success | partial | blocked | failed]
SUMMARY: [what was found/analyzed]
CONCERNS: [issues for caller review]
BLOCKERS: [if not success — what prevented completion]
DETAILED RESPONSE: [findings]
Review: Verify result addresses goal intent. Address concerns before proceeding.
| Pattern | Goal Template |
|---|---|
| Find definition | "Find where {{symbol}} is defined and its signature" |
| Analyze dependencies | "List what {{module}} imports and what imports it" |
| Explore area | "Understand how {{area}} works" (vague is OK) |
| Search and summarize | "Find all {{pattern}} and summarize their purposes" |
| Architecture survey | "Identify the main components and their relationships in {{area}}" |
Don't delegate:
READ-WRITE marker — default subagents are read-onlyException — debugging research IS delegatable:
These support Bug Qualification / Pattern Analysis phases without owning the hypothesis loop.
Independent research tasks can run simultaneously:
Dependency awareness: If task B depends on task A's output, dispatch sequentially.