
from deepagents-autoglm119
Guide and templates for authoring modular Agent Skills (SKILL.md), including best practices, file layout, and initialization scripts to scaffold skills.
Provides a concise, opinionated guide and tooling for creating Agent Skills. It explains SKILL.md anatomy, progressive disclosure, bundled resource patterns (scripts, references, assets), and offers init scripts and templates to scaffold new skills.
Use when creating or updating an Agent Skill: initializing skill folders, writing SKILL.md frontmatter, deciding what belongs in scripts vs references, and validating skill format before publishing. Ideal during development of agent capabilities or when packaging repeatable workflows.
Designed for DeepAgents CLI workflows and generic agent runtimes that load SKILL.md files; applicable to Claude/Codex-style agent integrations and CLI-driven skill tooling.
A well-documented skill-creator guide for the DeepAgents CLI ecosystem, providing templates and scripts to scaffold new Agent Skills. The SKILL.md is comprehensive with progressive disclosure patterns, frontmatter specs, and step-by-step authoring workflow. Both scripts (init_skill.py, quick_validate.py) require CLI arguments and exited with usage messages when run without them — expected behavior for scaffolding/validation tools, not bugs.
pyyaml (quick_validate.py imports yaml)Clean skill with no security concerns. SKILL.md is thorough and well-structured — serves as both a reference and a template. The init_skill.py script properly validates skill names per the Agent Skills spec (Unicode lowercase alphanumeric + hyphens, max 64 chars). quick_validate.py uses yaml.safe_load (safe). No network calls, no credentials, no destructive operations.