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 skills add bdiasti/maestro-bundle-cli --skill deep-agent-skills-systemgit clone --depth 1 https://github.com/bdiasti/maestro-bundle-cliWrote 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/bdiasti/maestro-bundle-cli/deep-agent-skills-system)<a href="https://agentmods.dev/skills/bdiasti/maestro-bundle-cli/deep-agent-skills-system"><img src="https://agentmods.dev/badge/skills/bdiasti/maestro-bundle-cli/deep-agent-skills-system.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.00041 | $0.01022 |
| Opus 5 | $0.00020 | $0.00511 |
| Sonnet 5 | $0.00008 | $0.00204 |
| Haiku 4.5 | $0.00004 | $0.00102 |
Grade A, and why
deep-agent-skills-system 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 8d 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 — 156 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Deep Agent Skills System
Create SKILL.md files that your Deep Agent loads contextually — only when relevant. This reduces startup tokens while keeping the agent knowledgeable.
When to Use
- When the agent needs domain knowledge loaded on-demand
- When creating reusable instructions for the agent
- When reducing context window usage
- When organizing agent capabilities into modules
Available Operations
- Create SKILL.md files with frontmatter
- Organize skills in directories
- Load skills into the agent
- Create skills with supporting files
Multi-Step Workflow
Step 1: Create Skill Directory
mkdir -p skills/deploy/
mkdir -p skills/code-review/
mkdir -p skills/database-migration/
Step 2: Write SKILL.md
# skills/deploy/SKILL.md
---
name: deploy
description: Deploy application to production
---
# Deploy Skill
## Steps
1. Run tests: `pytest --tb=short`
2. Build Docker image: `docker build -t app:latest .`
3. Push to registry: `docker push registry/app:latest`
4. Update K8s: `kubectl set image deployment/app app=registry/app:latest`
5. Verify: `kubectl rollout status deployment/app`
## Rollback
If deploy fails: `kubectl rollout undo deployment/app`
Step 3: Add Supporting Files
skills/deploy/
├── SKILL.md # Main instructions
├── references/
│ └── k8s-commands.md # Reference doc loaded when needed
└── scripts/
└── healthcheck.sh # Script the agent can execute
Step 4: Load Skills into Agent
from deepagents import create_deep_agent
from deepagents.backends import FilesystemBackend
from langgraph.checkpoint.memory import MemorySaver
agent = create_deep_agent(
model="anthropic:claude-sonnet-4-6",
backend=FilesystemBackend(root_dir=".", virtual_mode=True),
skills=["./skills/"], # Directory containing skill folders
checkpointer=MemorySaver() # Required for skills
)
Step 5: Load Skills via Store (No Filesystem)
from deepagents import create_deep_agent
from deepagents.backends import StoreBackend
from deepagents.backends.utils import create_file_data
from langgraph.store.memory import InMemoryStore
store = InMemoryStore()
# Inject skill content into store
skill_content = open("skills/deploy/SKILL.md").read()
store.put(
namespace=("filesystem",),
key="/skills/deploy/SKILL.md",
value=create_file_data(skill_content)
)
agent = create_deep_agent(
backend=lambda rt: StoreBackend(rt),
store=store,
skills=["/skills/"]
)
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.
- 8d ago First seen · 156 lines · 41 tokens per session scan A b87b16f0d373
deep-agent-skills-system is a skill published in the GitHub repository bdiasti/maestro-bundle-cli (21 stars, last pushed 5mo ago), licensed MIT. It adds 41 tokens to every session and 1,022 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-30.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…