Borrowing it
Nothing to install: this file belongs to jhl-labs/vibe-project. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/jhl-labs/vibe-project/main/CLAUDE.mdgit clone --depth 1 https://github.com/jhl-labs/vibe-projectWrote 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.
[](https://agentmods.dev/instructions/jhl-labs/vibe-project/claude-md)<a href="https://agentmods.dev/instructions/jhl-labs/vibe-project/claude-md"><img src="https://agentmods.dev/badge/instructions/jhl-labs/vibe-project/claude-md/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/instructions/jhl-labs/vibe-project/claude-md"><img src="https://agentmods.dev/badge/instructions/jhl-labs/vibe-project/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00761 | $0.00761 |
| Opus 5 | $0.00380 | $0.00380 |
| Sonnet 5 | $0.00152 | $0.00152 |
| Haiku 4.5 | $0.00076 | $0.00076 |
Grade A, and why
vibe-project CLAUDE.md 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 8d 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
CLAUDE.md
Claude Code를 위한 프로젝트 지침서
이 파일은 Claude가 대화 시작 시 자동으로 컨텍스트에 로드합니다. 간결하게 유지하세요 - 모든 줄은 실제 작업과 주의를 경쟁합니다.
프로젝트 개요
- 이름:
<project-name> - 설명:
<project-description> - 기술 스택:
<primary-language>
빠른 명령어
# 의존성 설치 (Dependencies)
# npm install / pip install -r requirements.txt / go mod download
# 개발 서버 (Dev server)
# npm run dev / uvicorn app.main:app --reload / go run cmd/main.go
# 테스트 (Test)
# npm test / pytest / go test ./...
# 빌드 (Build)
# npm run build / python -m build / go build ./...
# 린트 (Lint)
# npm run lint / ruff check . / golangci-lint run
프로젝트 구조
src/
├── domain/ # 비즈니스 로직 (순수, 의존성 없음)
├── application/ # 유스케이스, 서비스
├── infrastructure/ # DB, 외부 API 연동
└── presentation/ # HTTP/API 레이어
코딩 규칙
네이밍
- 파일:
kebab-case.ts(TS/JS),snake_case.py(Python) - 클래스:
PascalCase - 함수/변수:
camelCase(TS/JS),snake_case(Python) - 상수:
UPPER_SNAKE_CASE
스타일
- 들여쓰기: 2 spaces (TS/JS), 4 spaces (Python, PEP 8)
- 최대 줄 길이: 100자
- 함수 최대 길이: 30줄
- Conventional Commits 사용
아키텍처 원칙
- 단일 책임 원칙 (SRP)
- 의존성 역전 (DIP)
- 도메인은 외부 의존성 없음
보안 필수 사항
절대 금지:
- 하드코딩된 시크릿
- eval() 또는 동적 코드 실행
- 검증 없는 사용자 입력 사용
- SQL 인젝션 가능한 쿼리
필수:
- 환경 변수로 설정 관리
- 모든 입력 검증
- 적절한 에러 처리
AI 작업 지침
코드 생성 시
- 기존 패턴과 스타일 따르기
- 테스트 코드 함께 작성
- 에러 처리 포함
- 새 의존성 추가 전 기존 라이브러리 확인
리뷰 시
- 보안 취약점 우선 확인
- 에러 처리 검증
- 성능 이슈 체크
- 컨벤션 준수 여부
환경 변수
# .env.example 참조
DATABASE_URL=
API_KEY=
참고 문서
.agent/context.md- 상세 프로젝트 컨텍스트.agent/conventions.md- 코딩 컨벤션 상세docs/adr/- 아키텍처 결정 기록
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.
- 8d ago First seen · 111 lines · 761 tokens per session scan A 9744b36b2c68
vibe-project CLAUDE.md is an instructions file published in the GitHub repository jhl-labs/vibe-project (2 stars, last pushed 7mo ago), licensed MIT. It adds 761 tokens to every session, about $0.0038 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 instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
deepseek-harness AGENTS.md
AGENTS.md instructions for deepseek-ai/deepseek-harness, covering agents.md, pre-stable apis and released session data, repository layout, commands and host sandbox failures.