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.
git clone --depth 1 https://github.com/athola/claude-night-marketnpx agentmods add commands/athola/claude-night-market/project-initWrote 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/commands/athola/claude-night-market/project-init)<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.
<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>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.00028 | $0.01410 |
| Opus 5 | $0.00014 | $0.00705 |
| Sonnet 5 | $0.00006 | $0.00282 |
| Haiku 4.5 | $0.00003 | $0.00141 |
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 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
- Detects or accepts language specification (Python, Rust, TypeScript)
- Initializes git repository (if not already initialized)
- Creates or updates configuration files:
.gitignore- Language-specific ignoresMakefile- Development automation.pre-commit-config.yaml- Code quality hookspyproject.toml/Cargo.toml/package.json- Dependency management
- Sets up or updates GitHub workflows:
- Test workflow
- Lint workflow
- Type check workflow
- Creates project structure (if not present):
src/directory with initial moduletests/directoryREADME.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
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.
- 6d ago First seen · 213 lines · 28 tokens per session scan C 6a0c753a88ba
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.
Other commands, from other repositories
bug-fix
Streamlines bug fixing by creating a GitHub issue first, then a feature branch for implementing and thoroughly testing the solution before merging.
quick-commit
Quick commit with automatic formatting, linting, and conventional commit message.
commit-claude-config
Version the Solana AI Kit config in git (un-ignores .claude/, CLAUDE.md, .mcp.json, .gitmodules and commits them).
validate-pr-description
Use when validating a PR title and description for conventional commit format, issue linking keywords, and template compliance before submission.
git-commit
IMPORTANT: This command ONLY runs when explicitly invoked via /git-commit. Do NOT auto-commit after code modifications. Wait for user to explicitly run /git-commit.
git-push
IMPORTANT: This command ONLY runs when explicitly invoked via /git-push. Do NOT auto-push after commits or modifications. Wait for user to explicitly run /push.