team-status

A command that shows a dashboard of an AI team's tasks, assignments, progress, discussions, and code worktree changes. A worktree is a separate checked-out copy of a Git project used for parallel work.

In plain words
What is it for?
Use it to see which tasks are pending, active, completed, or blocked, who owns them, what files changed, and whether parallel worktrees are waiting on one another.
Why use it?
It gathers task-board and code-branch details in one status report instead of requiring separate checks for each team member.

Command

Install

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.

agentmods
npx agentmods add commands/imgompanda/fireauto/team-status
Clone the repo
git clone --depth 1 https://github.com/imgompanda/fireauto
Per session 16 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 691 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce 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

Measured 2d ago against content hash 3d9f91f12966, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

plugin/commands/team-status.md · 101 lines

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의 결정을 기다리고 있습니다."
  • 충돌 감지: "다음 파일에서 충돌이 예상됩니다: {목록}"
Changes

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.

  1. 2d ago First seen · 101 lines · 16 tokens per session scan A 3d9f91f12966

Subscribe to this mod's changes

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.