Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/imgompanda/fireauto/team-statusgit clone --depth 1 https://github.com/imgompanda/fireautoWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00016 | $0.00691 |
| Opus 5 | $0.00008 | $0.00345 |
| Sonnet 5 | $0.00003 | $0.00138 |
| Haiku 4.5 | $0.00002 | $0.00069 |
Grade A, and why
team-status scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
/fireauto-team-status - 팀 상태 대시보드
실행 중인 컴퍼니 모델 팀의 현재 상태를 확인합니다.
확인 절차
1. 태스크 보드 조회
TaskList를 사용하여 팀의 모든 태스크를 조회합니다.
각 태스크에 대해 TaskGet으로 상세 정보를 확인:
- 담당자 (assignee)
- 현재 상태 (pending / in_progress / completed / blocked)
- 설명 및 완료 조건
2. Worktree 상태 확인 (코드 작업인 경우)
git worktree가 사용 중이면 각 worktree의 상태를 확인합니다:
git worktree list
각 worktree의 변경사항:
git -C {worktree_path} log --oneline -3
git -C {worktree_path} diff --stat
3. 상태 리포트 출력
다음 형식으로 보고합니다:
============================================
컴퍼니 팀 상태 리포트
============================================
팀: {team_name}
전체 진행률: {완료}/{전체} 태스크
--------------------------------------------
태스크 보드
--------------------------------------------
[완료] 타입 정의 (type-lead)
src/types/ 디렉토리 4개 파일 생성
[진행] API 엔드포인트 구현 (backend-dev)
src/app/api/ 3/5 엔드포인트 완료
브랜치: worktree-backend-dev-xxxxx
변경: 8개 파일, +342/-12
[진행] UI 컴포넌트 (frontend-dev)
src/components/ 2/4 컴포넌트 완료
브랜치: worktree-frontend-dev-xxxxx
변경: 5개 파일, +228/-0
[대기] 통합 테스트 (tester)
backend-dev, frontend-dev 완료 대기
--------------------------------------------
팀원 간 논의 현황
--------------------------------------------
backend-dev <-> frontend-dev: API 응답 형식 합의 완료
frontend-dev -> CEO: 디자인 시안 승인 요청 대기
============================================
4. 충돌 사전 감지
worktree를 사용 중인 경우, 여러 팀원이 동일 파일을 수정했는지 확인:
# 각 worktree의 변경 파일 목록을 비교
git -C {worktree_path} diff --name-only main
교집합이 발견되면 충돌 가능성을 경고합니다.
5. 추천 액션
상태에 따라 다음을 안내합니다:
- 모든 태스크 완료: "모든 작업이 완료되었습니다. 병합을 진행할까요?"
- 블로커 발생: "{팀원}이 블로킹되었습니다. CEO 개입이 필요합니다."
- 논의 요청 대기: "{팀원}이 CEO의 결정을 기다리고 있습니다."
- 충돌 감지: "다음 파일에서 충돌이 예상됩니다: {목록}"
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 101 lines · 16 tokens per session scan A 3d9f91f12966
team-status is a command published in the GitHub repository imgompanda/fireauto (140 stars, last pushed 4mo ago), licensed MIT. It adds 16 tokens to every session and 691 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
setup
Set up Postman MCP Server. Authenticate via OAuth or API key, verify connection, select workspace.
test
Run Postman collection tests, analyze results, diagnose failures, and suggest fixes.
get-flow-run
Inspect a Postman Flow run by its Run ID — per-block logs, failing block, and status.
warden-cost
Dollar accounting — what does each active rule actually save, in money? Translates the token-measured verdict into dollars using a price table and the agent's own token-type mix, with a per-session net and a break-even. Read-only; spends no tokens.
routine
Execute one maintenance routine defined in scv/routines/ .md (task + guardrails + exit-criteria contract), or list defined routines. SCV never schedules — pair with host features like /loop or cron yourself. Use whenever the user asks to run a recurring maintenance task, or asks what routines exist — not only when…
incident
Live incident response — intake a Sentry issue, stack trace, or symptom; gate mitigate-first vs root-cause-first; keep a UTC timeline. Use when production is broken RIGHT NOW; for the after-action write-up alone, use /orc:postmortem.