project-init

project-init is a command for Claude Code from athola/claude-night-market. It costs 28 tokens per session (1,410 once invoked), scanned C, original, MIT.

A project setup command that creates or updates Git, automation, continuous integration and delivery, code-checking hooks, and language-specific tool settings.

In plain words
What is it for?
Use it to start a Python, Rust, or TypeScript project, create its basic folder and configuration files, and set up Git, a Makefile, CI/CD workflows, and pre-commit hooks.
Why use it?
It removes the repetitive work of preparing a new repository and gives its development tools a consistent starting point.

Command for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 plugins/attune/scripts/attune_init.py \.

Part of the attune plugin — 14 skills, 11 commands, 2 agents shipped together

Good fit Use it to start a Python, Rust, or TypeScript project, create its basic folder and configuration files, and set up Git, a Makefile, CI/CD workflows, and pre-commit hooks.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/athola/claude-night-market
agentmods
npx agentmods add commands/athola/claude-night-market/project-init

Made for: Claude Code.

Or install attune, the plugin that ships this one along with the rest of its 14 skills, 11 commands, 2 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 project-init

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

Your own site · 80×15
<a href="https://agentmods.dev/commands/athola/claude-night-market/project-init"><img src="https://agentmods.dev/badge/commands/athola/claude-night-market/project-init.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 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,410 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 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.00028 $0.01410
Opus 5 $0.00014 $0.00705
Sonnet 5 $0.00006 $0.00282
Haiku 4.5 $0.00003 $0.00141

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

Security

Grade C, and why

project-init scanned grade C with 2 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 6d 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.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -LsSf https://astral.sh/uv/install.sh | sh

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -LsSf https://astral.sh/uv/install.sh | sh
plugins/attune/commands/project-init.md · 213 lines

How it starts

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

Attune Project Init Command

Initialize or update projects with complete development infrastructure and standard tooling.

When To Use

Use this command when you need to:

  • Start a new project from scratch
  • Set up development infrastructure (git, Makefile, CI/CD)
  • Bootstrap project with language-specific tooling
  • Initialize empty repository with standards
  • Create project structure and configurations

When NOT To Use

Avoid this command if:

  • Project already initialized and configured
  • Only need specific component updates (use /attune:upgrade-project)
  • Need architecture selection first (use /attune:arch-init)
  • Modifying established project structure

Usage

# Interactive mode (recommended)
/attune:project-init

# Specify language
/attune:project-init --lang python

# Full specification
/attune:project-init --lang python --name my-project --author "Your Name"

What This Command Does

  1. Detects or accepts language specification (Python, Rust, TypeScript)
  2. Initializes git repository (if not already initialized)
  3. Creates or updates configuration files:
    • .gitignore - Language-specific ignores
    • Makefile - Development automation
    • .pre-commit-config.yaml - Code quality hooks
    • pyproject.toml / Cargo.toml / package.json - Dependency management
  4. Sets up or updates GitHub workflows:
    • Test workflow
    • Lint workflow
    • Type check workflow
  5. Creates project structure (if not present):
    • src/ directory with initial module
    • tests/ directory
    • README.md

Note: For existing projects, init will detect present configurations and offer to update them to current standards. Use --force to overwrite without prompting, or the interactive mode for selective updates.

Workflow

# 1. Invoke skill to guide initialization
Skill(attune:project-init)

# 2. Gather project metadata
#    - Project name (default: directory name)
#    - Language (detect or ask)
#    - Author name
#    - Python version (if Python)
#    - License type

# 3. Run initialization script
python3 plugins/attune/scripts/attune_init.py \
  --lang python \
  --name "my-awesome-project" \
  --author "Your Name" \
  --path .

# 4. Validate setup
git status
make help

Read the full file on GitHub · 213 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. 6d ago First seen · 213 lines · 28 tokens per session scan C 6a0c753a88ba

Subscribe to this mod's changes

project-init is a command published in the GitHub repository athola/claude-night-market (336 stars, last pushed 3d ago), licensed MIT. It adds 28 tokens to every session and 1,410 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.