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.
npx agentmods add skills/thesmuks/ai-project-template/setupnpx skills add TheSmuks/ai-project-template --skill setupgit clone --depth 1 https://github.com/TheSmuks/ai-project-templateWrote 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/skills/thesmuks/ai-project-template/setup)<a href="https://agentmods.dev/skills/thesmuks/ai-project-template/setup"><img src="https://agentmods.dev/badge/skills/thesmuks/ai-project-template/setup.svg" alt="Measured on agentmods" 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.00026 | $0.05055 |
| Opus 5 | $0.00013 | $0.02527 |
| Sonnet 5 | $0.00005 | $0.01011 |
| Haiku 4.5 | $0.00003 | $0.00505 |
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 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.
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.
How it starts
The opening of the file, as written. The whole thing — 612 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Interactive Setup Skill
Guides the agent (or user) through project initialization from the ai-project-template. This skill replaces the static SETUP_GUIDE.md with an interactive, multi-step workflow that lets adopters select which features to include.
When to Use
Invoke this skill when:
- Starting a new project from the
ai-project-template - Adopting template conventions into an existing project
- Running
/setupin an OMP session for a new repo - User says "set up this project" or "initialize from template"
- User pastes the bootstrap prompt: "Set up this project from the ai-project-template. Read SETUP_GUIDE.md and follow the interactive setup."
One-Liner Trigger
When a user pastes this prompt, invoke this skill immediately:
Set up this project from the ai-project-template. Read SETUP_GUIDE.md and follow the interactive setup.
The skill will:
- Read
SETUP_GUIDE.mdfor structured guidance - Detect the context (greenfield vs existing repo)
- Ask targeted questions about language, build tools, and features
- Generate and customize files
- Verify the setup
- Present a post-setup orientation explaining what was installed
Prerequisites
Before running this skill:
- Ensure you're in a git repository (initialized or about to be)
- Verify you have write permissions to create files
- Read
SETUP_GUIDE.md— it contains the authoritative step definitions
Feature Groups
The setup workflow operates on opt-in feature groups. Each group can be accepted or declined. The skill asks, doesn't assume.
| Group | Default | Includes |
|---|---|---|
| Core Docs | On (required) | AGENTS.md, ARCHITECTURE.md, CONTRIBUTING.md, README.md, CHANGELOG.md |
| CI Workflows | On | commit-lint, changelog-check, blob-size-policy, ci.yml, branch-lint |
| Agent Config | On | .omp/agents/ (code-reviewer, adr-writer, changelog-updater) |
| OMP Extensions | On | .omp/rules/, .omp/hooks/, .omp/tools/ |
| OMP Skills | On | .omp/skills/ (cut-release, merge-to-main, template-guide) |
| Dev Container | Off | .devcontainer/ configuration |
| Code Quality | On | .editorconfig, code style thresholds |
| ADR Process | On | docs/decisions/, initial ADR template |
| Git Ignore | On | Language-specific .gitignore patterns |
| CODEOWNERS | Off | CODEOWNERS file |
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 · 612 lines · 26 tokens per session scan A 2e5b44b77db7
setup is a skill published in the GitHub repository TheSmuks/ai-project-template (6 stars, last pushed 3mo ago), licensed MIT. It adds 26 tokens to every session and 5,055 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.
Other skills, from other repositories
merge-seed
Merge upstream React Starter Kit updates (the seed remote) into main, preserving this project's identity, scope, and behavior. Use when asked to sync, pull, or merge the seed / starter kit / upstream template.
scaffold
Use when starting hyperflow in a new project, refreshing the .hyperflow/ cache, or installing auto-detection shims (AGENTS.md, CLAUDE.md). One-shot project setup; does not start the spec → scope → dispatch chain. Trigger with /hyperflow:scaffold, "init hyperflow", "set up hyperflow", "refresh hyperflow", "install…
architecture-aware-init
Selects architecture paradigm via research before scaffolding. Use when architecture is undecided and the choice needs justification and documentation.
bankofai-guide
Onboarding guide for BofAI skills — handles post-install setup, AgentWallet creation, and wallet guard when no wallet is configured.
bestie-features
Add BestieTemplate features (AGENTS.md, changelog, dependabot, pre-commit, lint workflow, testitem runner) to a Julia package with the bestie CLI — no Julia needed. Use when asked to add one of these files/setups to a package, or to see what BestieTemplate can add.
rust-skills
Comprehensive Rust coding guidelines with 265 rules across 26 categories. Use when writing, reviewing, or refactoring Rust code. Covers ownership, error handling, async patterns, concurrency, unsafe code, API design, memory optimization, performance, numeric safety, conversions, serde, pattern matching, macros…