guide

guide is a command for coding agents from sangrokjung/claude-forge. It costs 21 tokens per session (909 once invoked), scanned A, original, MIT.

An interactive beginner's guide for Claude Forge that checks whether a project, its rules file, and Git are ready, then suggests common next steps.

In plain words
What is it for?
Use it to check for project files, CLAUDE.md, Git, and onboarding status, then start work such as planning a feature, fixing a bug with TDD, or removing unused code.
Why use it?
It helps new users understand their current setup and choose a workflow without already knowing the project's commands or conventions.

Command

Part of the claude-forge plugin — 5 skills, 35 commands, 17 agents shipped together

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/sangrokjung/claude-forge/guide
Clone the repo
git clone --depth 1 https://github.com/sangrokjung/claude-forge

Or install claude-forge, the plugin that ships this one along with the rest of its 5 skills, 35 commands, 17 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for guide

README.md
[![agentmods](https://agentmods.dev/badge/commands/sangrokjung/claude-forge/guide.svg)](https://agentmods.dev/commands/sangrokjung/claude-forge/guide)
Your own site
<a href="https://agentmods.dev/commands/sangrokjung/claude-forge/guide"><img src="https://agentmods.dev/badge/commands/sangrokjung/claude-forge/guide.svg" alt="Measured on agentmods" height="20"></a>
Per session 21 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 909 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.00021 $0.00909
Opus 5 $0.00010 $0.00454
Sonnet 5 $0.00004 $0.00182
Haiku 4.5 $0.00002 $0.00091

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

Security

Grade A, and why

guide 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 4d 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.

commands/guide.md · 128 lines

What it actually says

/guide - 첫 사용자 인터랙티브 가이드

이 가이드는 약 3분이면 끝납니다. Claude Forge를 처음 사용하는 분을 위한 튜토리얼입니다.


1단계: 환영 + 상태 진단

먼저 현재 환경을 진단한다:

  1. 프로젝트 폴더 확인: package.json, go.mod, Cargo.toml, pyproject.toml 중 하나라도 있는지 확인
  2. CLAUDE.md 존재 여부: 현재 디렉토리 또는 상위에 CLAUDE.md가 있는지 확인
  3. Git 초기화 여부: .git 디렉토리 존재 확인
  4. 온보딩 완료 여부: ~/.claude/.forge-onboarded 마커 파일 존재 확인

진단 결과를 다음 형식으로 출력한다:

Claude Forge 가이드에 오신 것을 환영합니다!

현재 상태:
  프로젝트:  [감지된 프로젝트 타입 또는 "프로젝트 파일 없음"]
  CLAUDE.md: [있음 / 없음]
  Git:       [초기화됨 / 안됨]

2단계: 상황별 안내

진단 결과에 따라 분기한다:

프로젝트 파일이 없는 경우

여기는 프로젝트 폴더가 아닌 것 같습니다.

다음 중 선택하세요:
  1. 기존 프로젝트 폴더로 이동하고 싶다 -> 해당 폴더에서 claude를 다시 실행하세요
  2. 새 프로젝트를 시작하고 싶다 -> /init-project로 프로젝트를 만들 수 있습니다

CLAUDE.md가 없는 경우

이 프로젝트에 CLAUDE.md가 없습니다.
CLAUDE.md는 AI에게 이 프로젝트의 규칙을 알려주는 설정 파일입니다.

/init-project를 실행하면 자동으로 생성됩니다.

Git이 초기화되지 않은 경우

Git이 초기화되지 않았습니다.
코드 관리와 커밋/PR 기능을 사용하려면 Git이 필요합니다.

git init으로 초기화할 수 있습니다.

모두 준비된 경우

프로젝트가 준비되었습니다!

3단계: 워크플로우 선택

뭘 하고 싶으세요?

  1. 새 기능 만들기
     -> /plan [기능 설명]
     예: /plan 로그인 기능 만들기

  2. 버그 수정하기
     -> /tdd [버그 설명]
     예: /tdd 결제 금액이 0원으로 나오는 버그

  3. 코드 정리하기
     -> /refactor-clean
     사용하지 않는 코드를 찾아서 정리합니다

  4. 보안 점검하기
     -> /security-review
     보안 취약점을 자동으로 검사합니다

  5. 전체 자동 모드
     -> /auto [작업 설명]
     계획부터 커밋까지 한 번에 자동 실행

자주 쓰는 커맨드 TOP 6:
  /plan           AI가 구현 계획을 세워줍니다
  /tdd            테스트 먼저 만들고 코드 작성
  /code-review    코드 보안+품질 검사
  /handoff-verify 빌드/테스트/린트 자동 검증
  /commit-push-pr 커밋+푸시+PR 한 번에
  /sync           프로젝트 문서 동기화 (세션 시작/완료 후)

4단계: 온보딩 완료 마커 생성

가이드 출력이 끝나면 마커 파일을 생성한다:

touch ~/.claude/.forge-onboarded

5단계: 추가 안내

더 알고 싶다면:
  docs/FIRST-STEPS.md     - 용어 사전 + 첫 사용자 가이드
  docs/WORKFLOW-RECIPES.md - 상황별 레시피 5가지
  setup/GLOSSARY.md        - 전체 용어 사전
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. 4d ago First seen · 128 lines · 21 tokens per session scan A 883cc97c122e

Subscribe to this mod's changes

guide is a command published in the GitHub repository sangrokjung/claude-forge (822 stars, last pushed yesterday), licensed MIT. It adds 21 tokens to every session and 909 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.