claude-code-starter-kit CLAUDE.md

claude-code-starter-kit CLAUDE.md is an instructions file for Claude Code from dachivadachkoria/claude-code-starter-kit. It costs 992 tokens per session, scanned A, original, MIT.

Repository instructions for a starter kit that help an agent understand a project's name, technology stack, folder structure, development commands, and dependencies. A technology stack is the set of programming languages, frameworks, databases, and tools a project uses.

In plain words
What is it for?
Use it to document a project's structure, installation steps, tests, coverage checks, and linting commands before development begins.
Why use it?
It gives agents a consistent starting point for working in a new or unfinished codebase.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions 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 instructions/dachivadachkoria/claude-code-starter-kit/claude-md
Clone the repo
git clone --depth 1 https://github.com/dachivadachkoria/claude-code-starter-kit

Made for: Claude Code.

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 claude-code-starter-kit CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dachivadachkoria/claude-code-starter-kit/claude-md.svg)](https://agentmods.dev/instructions/dachivadachkoria/claude-code-starter-kit/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/dachivadachkoria/claude-code-starter-kit/claude-md"><img src="https://agentmods.dev/badge/instructions/dachivadachkoria/claude-code-starter-kit/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 992 This file is loaded in full into every session.
When invoked 992 The same file — it is already loaded in full.
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.1 $0.00992 $0.00992
Opus 5 $0.00496 $0.00496
Sonnet 5 $0.00198 $0.00198
Haiku 4.5 $0.00099 $0.00099

Measured 5d ago against content hash 6440c2d2814b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

claude-code-starter-kit 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 5d 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.

CLAUDE.md · 170 lines

How it starts

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

Project: [YOUR PROJECT NAME]

⚠️ Customize this file for your specific project. This is the most important file for Claude Code to understand your codebase.

Overview

[Brief description of what your project does]

Tech Stack

  • Language: [Python 3.11+ / TypeScript / Go / etc.]
  • Framework: [FastAPI / Express / Gin / etc.]
  • Database: [PostgreSQL / MongoDB / etc.]
  • Cache: [Redis / Memcached / etc.]
  • Testing: [pytest / jest / go test / etc.]

Project Structure

src/                    # Source code
├── api/               # API endpoints/routes
├── services/          # Business logic
├── models/            # Data models
├── utils/             # Utilities
tests/                  # Test files (mirrors src/ structure)
├── conftest.py        # Shared fixtures (Python)
├── unit/              # Unit tests
└── integration/       # Integration tests
docs/                   # Documentation

Development Commands

# Install dependencies
[pip install -r requirements.txt / npm install / go mod download]

# Run tests
[pytest tests/ -v / npm test / go test ./...]

# Run with coverage
[pytest --cov=src / npm test -- --coverage / go test -cover ./...]

# Lint
[ruff check . / npm run lint / golangci-lint run]

# Format
[black . && isort . / npm run format / gofmt -w .]

# Start dev server
[uvicorn main:app --reload / npm run dev / go run main.go]

Testing Conventions

File Naming

  • Test files: test_<module>.py or <module>.test.ts or <module>_test.go
  • Located in tests/ directory, mirroring src/ structure

Test Structure

# Python example
def test_<function>_<scenario>_<expected_result>():
    # Arrange
    ...
    # Act
    ...
    # Assert
    ...

Mocking Guidelines

  • Mock external services (APIs, databases, cache)
  • Use fixtures for common setup
  • Never mock the code under test

What to Test

  • ✅ Public functions and methods
  • ✅ Edge cases and error handling
  • ✅ Business logic in services
  • ⚠️ Integration points (with mocks)
  • ❌ Private implementation details
  • ❌ Third-party library internals

Read the full file on GitHub · 170 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. 5d ago First seen · 170 lines · 992 tokens per session scan A 6440c2d2814b

Subscribe to this mod's changes

claude-code-starter-kit CLAUDE.md is an instructions file published in the GitHub repository dachivadachkoria/claude-code-starter-kit (4 stars, last pushed 6mo ago), licensed MIT. It adds 992 tokens to every session, about $0.0050 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.