boarding

A command that reads a Linear issue—a task or bug tracked in Linear—and records its requirements and likely code impact in local files.

In plain words
What is it for?
Use it to inspect an issue by ID, synchronize its status to Todo when appropriate, and save a requirements and impact summary for later workflow steps.
Why use it?
It gives coding work a written starting point and avoids repeatedly fetching or interpreting the same ticket.

Command for Claude Code

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/circui-try/circuit/boarding
Clone the repo
git clone --depth 1 https://github.com/CIrcui-try/Circuit

Made for: Claude Code.

Per session 27 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,087 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.00027 $0.01087
Opus 5 $0.00014 $0.00544
Sonnet 5 $0.00005 $0.00217
Haiku 4.5 $0.00003 $0.00109

Measured yesterday against content hash d0d7727a442a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

boarding 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 yesterday.

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.

.claude/commands/boarding.md · 84 lines

How it starts

The opening of the file, as written. The whole thing — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.

이륙 시퀀스의 1단계 (Boarding). Linear 이슈를 읽어 요구사항을 정리하고 코드 영향 범위를 메모해 디스크에 캐싱한다. Linear 티켓 상태 동기화 외 원격 부수효과 없음.

$ARGUMENTS 형식: <ISSUE-ID> [--force]. 예: /boarding CIR-15, /boarding CIR-15 --force.

인자 파싱

  1. $ARGUMENTS 에서 --force 토큰 분리. 남은 토큰의 첫 번째를 <ISSUE> 로 취급.
  2. <ISSUE> 가 비어있으면 사용법 안내 후 중단: /boarding <Linear 이슈 ID> [--force].

상태 파일 경로

  • MAIN_REPO_ROOT = $(git rev-parse --path-format=absolute --git-common-dir | xargs dirname)
  • STATE_DIR = $MAIN_REPO_ROOT/.claude/state
  • STATE_FILE = $STATE_DIR/<ISSUE>.json
  • ISSUE_FILE = $STATE_DIR/<ISSUE>.issue.md
  • STATE_DIR 이 없으면 생성한다.

자기 단계 실행 절차

  1. 상태 파일 로딩. 없으면 빈 상태(stages.boarding.done_at = null)로 초기화.

  2. 스킵 판정: stages.boarding.done_at 이 채워져 있고 --force 가 없으면 한 줄 요약(boarding skipped (done at <시각>)) 출력 후 종료.

  3. 이슈 조회: mcp__linear-server__get_issue<ISSUE> 조회. 못 찾으면 사용자에게 알리고 중단. Done/Canceled 상태면 사용자에게 경고하고 계속 진행할지 확인.

  4. 티켓 상태 동기화: 이슈가 작업 전 상태(Backlog/Triage 등)이면 Linear 상태를 Todo 로 직접 변경한다. 이미 In Progress, Done, Canceled 이면 되돌리지 않는다.

  5. 요구사항 정리: 제목·상태·우선순위·라벨·설명을 분석해 다음 형식으로 ISSUE_FILE 작성:

    # <ISSUE> — <제목>
    
    - 상태: <status>
    - 우선순위: <priority>
    - 라벨: <labels>
    - 브랜치: <gitBranchName>
    
    ## 요구사항
    1. ...
    2. ...
    
    ## 수락 기준
    - ...
    
    ## 코드 영향 범위
    - <Grep/Glob 으로 식별한 파일·디렉토리 목록과 한 줄 메모>
    
  6. 코드 영향 범위 탐색: Grep/Glob 으로 이슈 키워드와 매칭되는 파일·심볼을 찾아 코드 영향 범위 섹션 채우기. 탐색 범위가 넓으면 Explore 서브에이전트를 1개 띄워 위임.

  7. 상태 파일 갱신: 다음 필드를 채워 저장.

    {
      "issue": "<ISSUE>",
      "branch": "<gitBranchName>",
      "stages": {
        "boarding":     { "done_at": "<UTC ISO8601>" },
        "door_closing": { "done_at": null },
        "taxiing":      { "done_at": null },
        "takeoff":      { "done_at": null }
      },
      "issue_cache": {
        "title": "...",
        "description_md": "...",
        "labels": [...],
        "priority": <number>,
        "status": "...",
        "fetched_at": "<UTC ISO8601>"
      },
      "issue_summary_path": "<ISSUE_FILE 상대경로>"
    }
    

Read the full file on GitHub · 84 lines

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. yesterday First seen · 84 lines · 27 tokens per session scan A d0d7727a442a

Subscribe to this mod's changes

boarding is a command published in the GitHub repository CIrcui-try/Circuit (5 stars, last pushed 3mo ago), licensed MIT. It adds 27 tokens to every session and 1,087 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-31.