init-project

init-project is a command for Claude Code from boparaiamrit/skills-by-amrit. It costs 18 tokens per session (1,882 once invoked), scanned A, original, MIT.

A project-starting command that gathers context, requirements, decisions, and a roadmap into a structured .planning folder.

In plain words
What is it for?
Use it when starting a project that needs requirements, phases, implementation plans, progress tracking, research notes, and long-term project memory.
Why use it?
It gives the coding agent a shared record of the project’s goals, constraints, technology choices, current state, and known issues.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the skills-by-amrit plugin — 33 skills, 34 commands, 9 agents shipped together

Good fit Use it when starting a project that needs requirements, phases, implementation plans, progress tracking, research notes, and long-term project memory.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/boparaiamrit/skills-by-amrit/init-project
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.

Clone the repo
git clone --depth 1 https://github.com/boparaiamrit/skills-by-amrit

Made for: Claude Code.

Or install skills-by-amrit, the plugin that ships this one along with the rest of its 33 skills, 34 commands, 9 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 init-project

README.md
[![agentmods](https://agentmods.dev/badge/commands/boparaiamrit/skills-by-amrit/init-project/github.svg)](https://agentmods.dev/commands/boparaiamrit/skills-by-amrit/init-project)
Your own site
<a href="https://agentmods.dev/commands/boparaiamrit/skills-by-amrit/init-project"><img src="https://agentmods.dev/badge/commands/boparaiamrit/skills-by-amrit/init-project/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.

agentmods 80×15 button for init-project

Your own site · 80×15
<a href="https://agentmods.dev/commands/boparaiamrit/skills-by-amrit/init-project"><img src="https://agentmods.dev/badge/commands/boparaiamrit/skills-by-amrit/init-project.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 18 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,882 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00018 $0.01882
Opus 5 $0.00009 $0.00941
Sonnet 5 $0.00004 $0.00376
Haiku 4.5 $0.00002 $0.00188

Measured 12d ago against content hash 11b2d4c189a1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

init-project 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 12d 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/init-project.md · 239 lines

How it starts

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

/init-project — Project Initialization

Initialize a new project through structured context gathering: questioning → research → requirements → roadmap → state. Uses planning-tools.cjs for deterministic state setup.

What This Creates

.planning/
├── PROJECT.md        — Project context, goals, constraints, tech stack
├── REQUIREMENTS.md   — Scoped requirements with acceptance criteria
├── ROADMAP.md        — Phase structure with dependencies and estimates
├── STATE.md          — Current state tracker (living document)
├── MEMORY.md         — Persistent project brain (~300 lines max)
├── config.json       — Workflow preferences and execution config
├── plans/            — Implementation plans per phase
├── research/         — Research outputs and discussion contexts
├── debug/            — Debug investigation logs
├── sessions/         — Session logs for memory system
│   └── _archive/     — Archived older sessions
├── decisions/
│   └── DECISIONS.md  — Chronological decision log
├── context/
│   ├── architecture.md — Architecture decisions record
│   ├── patterns.md     — Established code patterns
│   ├── gotchas.md      — Known issues and workarounds
│   └── tech-debt.md    — Known technical debt
├── handoffs/
│   ├── LATEST.md       — Last session's handoff note
│   └── _history/       — Previous handoffs
├── phases/           — Phase directories (created as needed)
└── uat/              — User acceptance testing

After this command: Run /discuss [feature] to lock decisions, then /plan to start.

Instructions

Step 0: Bootstrap Structure (MANDATORY FIRST STEP)

node planning-tools.cjs init

This creates the entire .planning/ directory structure and config.json deterministically. Do NOT create directories/files manually.

Step 1: Context Gathering

If $ARGUMENTS is provided, use it as the project description. Otherwise, ask:

  1. What are you building? — Project name, one-line description, 3-sentence vision.
  2. Who is this for? — Target users, use cases, scale expectations.
  3. Tech stack? — Language, framework, database, infrastructure.
  4. What exists already? — Greenfield or adding to existing codebase?
  5. Constraints? — Deadlines, budget, team size, mandatory tech choices.
  6. Quality priorities? — Rank: speed, reliability, security, maintainability, UX.
  7. Working style? — Interactive (confirm each step) or auto (trust the agent)?
  8. Depth preference? — Quick (speed), standard (balanced), or comprehensive (thorough)?

Read the full file on GitHub · 239 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. 12d ago First seen · 239 lines · 18 tokens per session scan A 11b2d4c189a1

Subscribe to this mod's changes

init-project is a command published in the GitHub repository boparaiamrit/skills-by-amrit (5 stars, last pushed 6mo ago), licensed MIT. It adds 18 tokens to every session and 1,882 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.