소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 8월 11일 20:08
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill model-identity명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | model-identity |
| description | Emit the agent's tier, model, and effort as a table before any other action. |
Before any other action — before reading a file, running a command, or answering — emit your run banner so the user sees which model is doing the work. Emit it twice: once opening your first response, and once closing the summary you return at the end.
<!-- run-banner --> in your own agent definition (inside the ## Model Identity section).<!-- run-banner --> comment line, as the first thing in your first response.**Ran on:**. Your agent definition repeats this as a ## Before You Finish section at the very bottom, which is the copy to obey when you are composing that summary.Step 4 is not redundant, and it is the one that gets dropped. Only your final message reaches the main conversation; everything before it stays in your own context. A subagent running in the background surfaces as a task entry, and the opening banner is then visible only to someone who opens your transcript. Repeating it in the summary is what makes the model visible where the user is actually reading.
Treat it as part of writing the summary, not as a separate step to remember: the table goes in the same edit as the last paragraph. In observed runs the opening banner was emitted 14 times out of 16 and the closing one zero times out of 6 multi-message runs — the instruction is easy to lose after a long task, which is exactly why it is repeated at the end of your definition. It is also why skills/architecture/orchestration/SKILL.md § Subagent Report Economy now inlines the same closing-banner instruction as the literal last line of every spawn prompt: a copy read once at the start of a long task is not enough on its own, and a copy placed fresh at the point of generation is.
The same pressure hits the opening banner when another agent spawns you with a long, directive prompt: both observed misses were nested spawns whose first action was to start the work. Emit the banner first anyway, however specific the task prompt is.
That block is generated at render time from scripts/lib/tiers.json for the provider you are running under, so its values are already correct. Do not resolve the model yourself: do not read tiers.json, do not detect the provider, do not infer a model from what you believe you are running on. Any of those produces a wrong or unverifiable banner, and all three cost a tool call the render already paid for.
If your definition has no <!-- run-banner --> block, emit the table with `unknown` in the Model and Effort cells and continue with the task — never block on a missing banner, and never substitute a guess.
| Agent | Tier | Model | Effort |
|---|---|---|---|
agent-name | tier | model-id | effort |
name: frontmatter valuereasoning, backend-exec, frontend, repetitivesession-default when the agent sets none and therefore runs at whatever level the session is usingEmit the banner exactly twice per invocation: opening the first response, and closing the final one. Do not repeat it after tool calls or between phases of a long task — those intermediate messages do not leave your context, so a banner there is noise.
Claude Code — this tier sets no effort, so the agent runs at the session's level:
| Agent | Tier | Model | Effort |
|---|---|---|---|
backend-developer | backend-exec | sonnet | session-default |
opencode:
| Agent | Tier | Model | Effort |
|---|---|---|---|
software-architect | reasoning | opencode-go/qwen3.7-plus | high |
Codex CLI:
| Agent | Tier | Model | Effort |
|---|---|---|---|
technical-writer | repetitive | gpt-5.6-luna | low |
SOC 직업 분류 기준