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/ntorga/agent-starter-kitnpx agentmods add skills/ntorga/agent-starter-kit/bootWrote 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/ntorga/agent-starter-kit/boot)<a href="https://agentmods.dev/skills/ntorga/agent-starter-kit/boot"><img src="https://agentmods.dev/badge/skills/ntorga/agent-starter-kit/boot/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/skills/ntorga/agent-starter-kit/boot"><img src="https://agentmods.dev/badge/skills/ntorga/agent-starter-kit/boot.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.00023 | $0.00917 |
| Opus 5 | $0.00012 | $0.00458 |
| Sonnet 5 | $0.00005 | $0.00183 |
| Haiku 4.5 | $0.00002 | $0.00092 |
Grade A, and why
boot 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 2d 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 — 74 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Purpose
Every session starts cold. The Maestro needs to ensure the project is wired correctly, the framework is up to date, load the project's rules, and understand the codebase before it can dispatch work effectively. This skill defines the boot sequence that brings the Maestro from zero to ready.
Path Convention
All framework files live under .agents/. Markdown references within the framework use bare paths for readability — always resolve them under .agents/. Shell commands always use the .agents/ prefix for project-root paths.
Procedure
-
Gitignore. Ensure
.agents/,.memory/, andopencode.jsonare in the project's.gitignore. Run:touch .gitignore for entry in '.agents/' '.memory/' 'opencode.json' '.ignore'; do grep -qxF "$entry" .gitignore || echo "$entry" >> .gitignore done -
Framework pull. Run:
git -C .agents pull- If the pull brought changes:
- Read the
CHANGELOG.mdin.agentsto understand what changed. - Purge obsolete long-term memory entries — read
.memory/long-term.md, read the changelog, and for each memory entry remove it only if the changelog describes a feature, skill, or rule that replaces that memory's purpose. If the entry's purpose is not clearly covered by the changelog, keep it. - Re-read
personas/maestro.mdfrom the top so updated instructions take effect.
- Read the
- If already up to date, continue.
- If the pull brought changes:
-
Memory. Load memory (uses:
skills/agent-memory/SKILL.md). -
Core skills. Read the following core skills IN FULL now. These are mandatory for every dispatch and planning decision. Do not skip, summarize, or rely on memory:
skills/dispatch/SKILL.md— required for every sub-agent dispatchskills/plan-management/SKILL.md— required for planning decisions and epic tracking
-
CLI configuration. Run:
bash .agents/skills/assets/maestro-boot-configure-cli.sh- If the script reports the config was
createdorupdated, inform the user that agent bindings changed and they should restart the session for the new bindings to take effect. - If the script reports
unchanged, no action is needed. - If
yqorjqis not installed, the script prints a skip message — no action needed. - If no supported CLI config file is found, the script exits silently — no action needed.
- If the script reports the config was
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.
- 2d ago First seen · 74 lines · 23 tokens per session scan A 24983c26558e
boot is a skill published in the GitHub repository ntorga/agent-starter-kit (142 stars, last pushed 2d ago), licensed MIT. It adds 23 tokens to every session and 917 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-09-13.
Other skills, from other repositories
agent-framework-py-release
Use when cutting a Python release for the microsoft/agent-framework monorepo. Triggers on "bump py versions", "cut a python release", "prepare release PR for python", "release py packages", "bump python to X.Y.Z", or similar requests to bump Python package versions and prepare a release PR. Handles all four lifecycle…
maintainer-bar
Operate the MaintainerBar SwiftUI menu bar app and its ghcrawl backend. Use for: refreshing issue clusters, searching issues semantically, checking repo pulse, managing notifications, building/running the app, and coordinating ghcrawl data pipelines.
gh
You have access to gh (GitHub CLI) for repository and project management.
release-notes
Convert changes into concise release notes with highlights, fixes, and upgrade notes.
automations
Create, inspect, edit, archive, delete, run, and search scheduled or executable automation assets.
hatch3r-cli-fd
User-friendly find replacement, gitignore-aware. Use when locating filenames or directories by glob with parallel walking; invoke fd. Outputs newline-separated hit records; bound results with -c or --max-count.