deep-agent-skills-system

deep-agent-skills-system is a skill for Claude Code, Codex from bdiasti/maestro-bundle-cli. It costs 41 tokens per session (1,022 once invoked), scanned A, original, MIT.

A system for creating reusable instruction files that a Deep Agent loads only when they are relevant, such as guidance for deployment or code review.

In plain words
What is it for?
Use it to create, organise, and load SKILL.md files with domain instructions, procedures, and supporting material.
Why use it?
It keeps the agent’s starting instructions smaller while still giving it specialised knowledge when needed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit Use it to create, organise, and load SKILL.md files with domain instructions, procedures, and supporting material.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bdiasti/maestro-bundle-cli/deep-agent-skills-system
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.

Any agent
npx skills add bdiasti/maestro-bundle-cli --skill deep-agent-skills-system
Clone the repo
git clone --depth 1 https://github.com/bdiasti/maestro-bundle-cli

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for deep-agent-skills-system

README.md
[![agentmods](https://agentmods.dev/badge/skills/bdiasti/maestro-bundle-cli/deep-agent-skills-system.svg)](https://agentmods.dev/skills/bdiasti/maestro-bundle-cli/deep-agent-skills-system)
Your own site
<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>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,022 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00041 $0.01022
Opus 5 $0.00020 $0.00511
Sonnet 5 $0.00008 $0.00204
Haiku 4.5 $0.00004 $0.00102

Measured 8d ago against content hash b87b16f0d373, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

templates/bundle-ai-agents-deep/skills/deep-agent-skills-system/SKILL.md · 156 lines

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

  1. Create SKILL.md files with frontmatter
  2. Organize skills in directories
  3. Load skills into the agent
  4. 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/"]
)

Read the full file on GitHub · 156 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. 8d ago First seen · 156 lines · 41 tokens per session scan A b87b16f0d373

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

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…

microsoft/ai-agents-for-beginners · 200 tokens

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…

vercel/next.js · 95 tokens

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…

vercel/next.js · 103 tokens

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…

microsoft/vscode · 72 tokens

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…

openai/codex · 114 tokens