setup

A command that sets up a new software project with standard folders, documentation, build settings, continuous integration, and quality checks.

In plain words
What is it for?
Use it when starting a project in Rust, TypeScript, Python, Java, or Go to create its basic structure and required setup.
Why use it?
It removes the initial work of deciding which project files and development practices to create.

Command

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 commands/zircote-plugins/sdlc-quality/setup
Clone the repo
git clone --depth 1 https://github.com/zircote-plugins/sdlc-quality
Per session 32 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,879 The whole file, excluding the scripts and references it only reads on demand.
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 $0.00032 $0.01879
Opus 5 $0.00016 $0.00940
Sonnet 5 $0.00006 $0.00376
Haiku 4.5 $0.00003 $0.00188

Measured yesterday against content hash 85759f3189e3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

setup 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 yesterday.

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/setup.md · 405 lines

How it starts

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

SDLC Project Initialization

Initialize a new project with full SDLC compliance from the start.

Process

1. Detect or Confirm Language

If not specified, detect from existing files or ask:

# Auto-detect language
if [ -f "Cargo.toml" ]; then echo "rust"
elif [ -f "package.json" ]; then echo "typescript"
elif [ -f "pyproject.toml" ] || [ -f "setup.py" ]; then echo "python"
elif [ -f "pom.xml" ] || [ -f "build.gradle" ]; then echo "java"
elif [ -f "go.mod" ]; then echo "go"
else echo "unknown"
fi

2. Create Directory Structure

# Create standard directories
mkdir -p src tests docs docs/adrs .github/workflows

# Language-specific directories
# Rust: src/ already standard
# TypeScript: src/, tests/
# Python: src/{package}/, tests/
# Java: src/main/java/, src/test/java/
# Go: cmd/, internal/, pkg/

3. Create Required Files

README.md
# Project Name

[![CI](https://github.com/org/repo/actions/workflows/ci.yml/badge.svg)](...)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)

Brief project description.

## Installation

```bash
# Installation instructions
```

Quick Start

# Usage example

Documentation

See docs/ for detailed documentation.

Contributing

See CONTRIBUTING.md for guidelines.

License

MIT


#### LICENSE (MIT default)

MIT License

Copyright (c) [year] [name]

Permission is hereby granted, free of charge, to any person obtaining a copy ...


#### CONTRIBUTING.md

```markdown
# Contributing

## Development Setup

1. Clone the repository
2. Install dependencies: `make setup`
3. Run tests: `make test`

## Code Style

- Run `make format` before committing
- Ensure `make lint` passes
- Follow existing code patterns

## Pull Request Process

1. Create feature branch from `develop`
2. Make changes with tests
3. Update documentation
4. Submit PR with description

## Commit Messages

Follow Conventional Commits:
- `feat:` New features
- `fix:` Bug fixes
- `docs:` Documentation
- `test:` Tests
- `refactor:` Code restructuring
CHANGELOG.md

Read the full file on GitHub · 405 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. yesterday First seen · 405 lines · 32 tokens per session scan A 85759f3189e3

Subscribe to this mod's changes

setup is a command published in the GitHub repository zircote-plugins/sdlc-quality (10 stars, last pushed 28d ago), licensed MIT. It adds 32 tokens to every session and 1,879 once invoked, about $0.0002 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.