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/circui-try/circuit/autolandgit clone --depth 1 https://github.com/CIrcui-try/CircuitWhat 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.00012 | $0.01602 |
| Opus 5 | $0.00006 | $0.00801 |
| Sonnet 5 | $0.00002 | $0.00320 |
| Haiku 4.5 | $0.00001 | $0.00160 |
Grade A, and why
autoland 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.
How it starts
The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.
takeoff 이후 사후 자동화 단계. PR 의 CI checks 를 기다렸다가 모두 통과하면 merge commit 방식으로 머지하고, 이어서 landing 과 동일하게 로컬 워크트리를 제거하고 develop 을 최신화한다.
$ARGUMENTS 형식: [ISSUE-ID | branch | PR URL] [--interval <seconds>] [--timeout <minutes>].
타깃을 생략하면 커맨드를 호출한 위치의 현재 브랜치를 대상으로 한다.
예: /autoland, /autoland CIR-15, /autoland feature/cir-15-fix-..., /autoland https://github.com/OWNER/REPO/pull/123.
인자 파싱
- 첫 토큰이 플래그가 아니면
<TARGET>으로 둔다. 없으면 메인 레포로 이동하기 전에CURRENT_BRANCH = $(git branch --show-current)로 호출 위치의 브랜치를 저장해<TARGET>기본값으로 사용한다.<TARGET>도CURRENT_BRANCH도 없으면 사용자에게 직접 입력받는다. --interval <seconds>를 파싱한다. 기본값은30, 1 미만이거나 숫자가 아니면 중단.--timeout <minutes>를 파싱한다. 기본값은60, 1 미만이거나 숫자가 아니면 중단.
자기 단계 실행 절차
- 메인 레포로 이동: 인자 파싱 중 캡처한
CURRENT_BRANCH를 보존한 채MAIN_REPO_ROOT = $(git rev-parse --path-format=absolute --git-common-dir | xargs dirname)→cd $MAIN_REPO_ROOT. - GitHub 인증 확인:
gh-auth-check스킬로 GitHub CLI 로그인 상태와 active account 를 확인한다. - 대상 결정:
<TARGET>이CIR-/PROJ-같은 이슈 키 패턴이면 Linear MCPget_issue로gitBranchName을 조회해 branch 로 사용한다.<TARGET>이https://github.com/.../pull/...형태면 PR URL 로 사용한다.- 그 외에는 branch 로 사용한다.
- PR 상태 확인:
gh pr view <PR URL 또는 branch> --json number,url,state,isDraft,baseRefName,headRefName,headRefOid,mergeable실행.- PR 을 찾지 못하면 중단.
state가MERGED면 머지는 스킵하고 landing 정리만 진행.state가OPEN이 아니면 중단.isDraft == true면 중단.baseRefName != "develop"이면 중단.- 이후 단계에서는 PR URL, PR number, head branch, head SHA 를 고정해 사용한다.
- CI checks 초기 확인:
gh pr checks <PR> --json bucket,state,name,workflow,link실행.- 반환된 check 가 0개면 자동 머지하지 않고 중단.
bucket이fail또는cancel인 check 가 있으면 중단.
- CI 대기:
gh pr checks <PR> --watch --fail-fast --interval <interval>로 checks 종료를 기다린다.- 대기 시간이
<timeout>분을 넘으면 프로세스를 중단하고 자동 머지하지 않는다. - watch 가 실패, 취소, timeout 으로 끝나면 원인 check 이름과 링크를 요약하고 중단.
- 최종 CI 재확인:
gh pr checks <PR> --json bucket,state,name,workflow,link를 다시 실행한다.- check 가 0개면 중단.
- 모든
bucket이pass가 아니면 중단.skipping,pending,fail,cancel은 자동 머지 대상이 아니다.
- 머지 직전 PR 재확인:
gh pr view <PR> --json state,isDraft,baseRefName,headRefOid,mergeable실행.- PR 이 더 이상
OPEN이 아니거나 draft 가 되었거나 base 가develop이 아니면 중단. headRefOid가 4단계에서 확인한 SHA 와 다르면 checks 를 다시 기다려야 하므로 중단.
- PR 이 더 이상
- PR 머지:
gh pr merge <PR> --merge --delete-branch --match-head-commit <head SHA>실행.--admin,--auto,--squash,--rebase는 사용하지 않는다.- branch protection, required review, merge conflict, 권한 오류는 우회하지 않고 중단.
- 로컬 정리: 기존
/landing <ISSUE 또는 branch>절차와 동일하게 진행한다.- 이슈 키로 호출된 경우 원래
<TARGET>을/landing입력으로 사용한다. - PR URL 로 호출된 경우 4단계의
headRefName을 branch 입력으로 사용한다. - 워크트리가 없으면 landing 처럼 스킵 메시지만 출력하고 계속한다.
- 이슈 키로 호출된 경우 원래
- 티켓 상태 동기화: PR 머지와 landing 정리가 끝났고 이슈 키를 확인할 수 있으면 Linear 상태를
Done으로 직접 변경한다. - 직접 확인 포인트 정리: PR 본문의
Manual verification섹션을 우선 사용하고, 없으면 PR diff/커밋/Linear 이슈 내용을 보고 사용자가 직접 확인할 수 있는 가시적인 피처를 1~5개로 정리한다.- 화면, 버튼, 리스트, 상태 표시, 알림, 에러 메시지, 사용자 플로우처럼 눈으로 확인 가능한 단위로 쓴다.
- 코드 정리, 테스트, 인프라 변경처럼 직접 확인할 UI/동작이 없으면 "직접 확인할 가시 피처 없음" 이라고 명시한다.
- 애매하면 근거를 짧게 붙여 추정이라고 표시한다.
- 요약 출력: PR URL, checks 통과 여부, merge commit 방식으로 머지했는지, landing 정리 결과, 직접 확인 포인트를 함께 안내한다.
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 · 70 lines · 0 tokens per session scan A dab4121a5f10
autoland is a command published in the GitHub repository CIrcui-try/Circuit (5 stars, last pushed 3mo ago), licensed MIT. It adds 12 tokens to every session and 1,602 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.
Other commands, from other repositories
planwt
You are the orchestrator for a bounded worktree task.
statuswt
You are checking the status of all active worktree task files in the project.
finishwt
You are finishing a worktree task.
harness-parallel
Run the parallel Auto-Harness orchestration flow with worktree workers. /auto-harness:harness-parallel.
harness
Run the full Auto-Harness orchestration flow. /auto-harness:harness.
qa-parallel
Advance parallel Evaluator-side actions only. Auto-selects review, QA, retest, or final report from status.md. /auto-harness:qa-parallel [sprint].