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/fmind/dot/agent-projectnpx skills add fmind/dot --skill agent-projectgit clone --depth 1 https://github.com/fmind/dotWrote 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/fmind/dot/agent-project)<a href="https://agentmods.dev/skills/fmind/dot/agent-project"><img src="https://agentmods.dev/badge/skills/fmind/dot/agent-project.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 | $0.00049 | $0.01335 |
| Opus 5 | $0.00024 | $0.00668 |
| Sonnet 5 | $0.00010 | $0.00267 |
| Haiku 4.5 | $0.00005 | $0.00134 |
Grade A, and why
agent-project 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.
How it starts
The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Set Up Agents on a Project
Create the portable instruction and skill layer once, then add only the host-specific files a project needs. agent-mcp owns MCP servers, agent-skills owns skill packages, and readme-agents keeps AGENTS.md current afterwards.
Workflow
- Create the shared layer:
Startmkdir -p .agents/skills .agents/promptsAGENTS.mdfrom the project template; project skills live in.agents/skills/<name>/SKILL.mdand handover prompts in.agents/prompts/(gitignored). - Bridge Claude Code: Claude reads
CLAUDE.mdand.claude/skills, notAGENTS.mdand.agents/skills. After checking that neither path already exists unmanaged:
Whenln -s AGENTS.md CLAUDE.md # or a CLAUDE.md containing only `@AGENTS.md` mkdir -p .claude && ln -s ../.agents/skills .claude/skills.claude/orCLAUDE.mdis gitignored (globally or in the repository), un-ignore both tracked entries so every clone gets them; a directory rule cannot be re-included, so ignore the contents instead:.claude/* !.claude/skills !CLAUDE.md - Add host files only when needed:
- Antigravity: reads
AGENTS.mdand.agents/skills; workspace settings and MCP file paths follow its current docs and it respects.gitignore. - Claude Code:
.mcp.jsonfor project MCP servers (claude mcp add --scope project). - Codex: reads
AGENTS.mdand.agents/skills;.codex/config.tomlholds trusted project overrides and MCP. - Copilot: reads
AGENTS.mdand.agents/skills;.github/copilot-instructions.mdonly for extra repository-wide Copilot instructions. - Grok: reads
AGENTS.mdand.agents/skills; project MCP lives in./.grok/config.tomlviagrok mcp add --scope project. - OpenCode: reads
AGENTS.mdand.agents/skills;opencode.jsonholds project settings and MCP.
- Antigravity: reads
- Keep secrets and state out of git: ignore local credentials, generated agent state, and secret-bearing overrides; commit only portable configuration.
- Verify each installed CLI: start it from the repository root and confirm instructions, skills, and configured MCP servers load, using the listing commands in host discovery.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- yesterday First seen · 85 lines · 49 tokens per session scan A 6cf9fb833c88
agent-project is a skill published in the GitHub repository fmind/dot (4 stars, last pushed today), licensed MIT. It adds 49 tokens to every session and 1,335 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-09-03.
Other skills, from other repositories
github-issues
Manage GitHub issues with gh: confirm repo and state, deduplicate, preserve evidence, and verify authorized creation, edits, labels, comments, or closure.
product-loop
Discovery, specification, launch, and learning for a product in one loop. Build-or-stop calls, MVP wedges, demand tests, customer interviews, PRDs, requirements, user journeys, acceptance, positioning, onboarding, rollout, pricing, pivots.
project-backlog
Turn audit findings into deduplicated, prioritized issue drafts with dependencies and explicit authorization before GitHub mutation.
go-stack
Build Go projects, libraries, CLIs, TUIs, web apps, or ADK agents with the standard package layout and pinned tooling.
python-stack
Build typed Python projects with uv, Ruff, ty, pytest, Litestar, and Typer. Use for packages, CLIs, web apps, tests, typing, or API verification.
k8s-local
Create and manage local Kubernetes clusters (k3d or kind) and deploy to them with kubectl, helm, helmfile, and skaffold. Use for local k8s cluster setup, dev loops, and debugging.