An agentic skills framework & software development methodology that works.
Skill bundles for Claude Code and Codex
This repo packages original, method-level agent skills for common builder workflows like command surfaces, tool orchestration, memory, multi-agent runs, and terminal UI. You install individual skills or curated bundles into Codex-compatible or Claude Code-compatible folders using the helper scripts.
Builders who use Claude Code or Codex and want reusable patterns for agent workflows.
You can add proven agent behaviors to your setup without copying source code or rebuilding the patterns yourself.
What it does
Individual skill installs
Installs one skill by slug with validation and replacement for upgrades or reinstalls.
Curated bundles
Groups skills into install sets like starter, command-surfaces, tool-orchestration, context-management, and multi-agent.
Agent-specific layouts
Provides compatible folder layouts for Claude Code and Codex.
Machine-readable catalog
Includes catalog files for browsing and automated skill discovery.
Safety checks
Includes scripts that check public-safety rules before publishing or installing.
How to get it
- 1Run
.\scripts\install-skill.ps1 -Agent codex -Slug concurrency-safe-tool-batching
- 2Run
./scripts/install-skill.sh codex concurrency-safe-tool-batching
- 3Run
.\scripts\install-skill.ps1 -Agent claude-code -Slug concurrency-safe-tool-batching
- 4Run
./scripts/install-skill.sh claude-code concurrency-safe-tool-batching
- 5Install a curated bundle with the helper script
.\scripts\install-bundle.ps1 -Agent codex -Bundle starter .\scripts\install-bundle.ps1 -Agent claude-code -Bundle starter
- 6Run
./scripts/install-bundle.sh codex starter ./scripts/install-bundle.sh claude-code starter
README
cskill-agents
Curated, public-safe agent skills for building and improving coding CLIs, terminal tools, context engines, remote bridges, and multi-agent runtimes.
This repo contains original, method-level skill files distilled from reviewed implementations. It does not ship upstream source code, copied comments, tests, prompts, logos, or proprietary assets.
Quick Start
Install one skill with the helper scripts. These installers validate the slug and replace any existing installed copy, so they are safe for upgrades and reinstalls.
Codex-compatible
.\scripts\install-skill.ps1 -Agent codex -Slug concurrency-safe-tool-batching
./scripts/install-skill.sh codex concurrency-safe-tool-batching
Claude Code-compatible
.\scripts\install-skill.ps1 -Agent claude-code -Slug concurrency-safe-tool-batching
./scripts/install-skill.sh claude-code concurrency-safe-tool-batching
Install a curated bundle with the helper script:
.\scripts\install-bundle.ps1 -Agent codex -Bundle starter
.\scripts\install-bundle.ps1 -Agent claude-code -Bundle starter
./scripts/install-bundle.sh codex starter
./scripts/install-bundle.sh claude-code starter
What You Can Build
- Coding CLI command surfaces with dynamic skill loading, cache-safe registries, and curated slash-command discovery
- Tool runners with concurrency-safe batching, ordered streaming, output persistence, and deterministic budgeting
- Long-running agent sessions with compaction, memory prefetch, retry control, and stable session state
- Multi-agent systems with isolated child contexts, scoped MCP clients, transcript sidechains, and lifecycle cleanup
- Remote-safe bridges and terminal interfaces with capability filtering, privacy-aware init payloads, and motion-aware terminal UI
What This Repo Is
- A curated distribution repo built from a larger authoring corpus.
- A set of reusable skill files that tell agents how to reproduce strong patterns without copying implementation code.
- A practical install target for Codex-compatible and Claude Code-compatible skill directories.
- A bundle-based catalog of high-value agent-runtime patterns.
What This Repo Is Not
- Not a source mirror.
- Not a vendor-affiliated SDK, extension pack, or official template set.
- Not a redistribution of third-party code, copied comments, tests, prompts, or internal assets.
- Not the full authoring corpus; this repo only ships a curated public-safe subset.
Included Skills
- 158 curated skills
- 36 starter skills
- 19 curated bundles
Start with:
Supported Agents
- Codex-compatible folder layout in agents/codex
- Claude Code-compatible folder layout in agents/claude-code
Compatibility here means the repo uses a skill-folder layout that these agents can consume. It does not imply endorsement, certification, or affiliation.
Curated Bundles
starter: best first install for most coding agentscommand-surfaces: command registries, skill loaders, and capability surfacestool-orchestration: batching, streaming, persistence, and output shapingcontext-management: compaction, memory, and session controlmulti-agent: child-agent isolation, cleanup, and fork controlextensions-mcp: extension lifecycle and parity patternssafety-worktrees: shell safety, path guards, and worktree handlingremote-bridge: remote-safe command and bridge transport patternsterminal-ui: terminal presentation and feedback patternsregistry-bootstrap: root resolution, registry composition, feature-gated loading, and cache-safe startup assemblyskill-discovery: high-signal admission, filtering, listing, and first-turn discovery rulesoutput-budgeting: tool result persistence, previews, truncation, and budget-aware output shapingcompaction-core: retry, grouping, cache-edit, and compaction-control mechanicsmemory-signals: memory prefetch, recall selection, attachment timing, and session-memory shapingextension-sync: marketplace reconciliation, lifecycle parity, and runtime refresh consistencybridge-privacy: remote-safe bridge payloads, capability advertising, and normalized transport recoveryagent-lifecycle: child-agent context handoff, scoped MCP setup, cleanup, and completion reportingfork-integrity: cache-stable forks, isolated skill runs, transcript hygiene, and resume consistencyworkspace-safety: shell validation, sensitive-path guards, and worktree-safe repo operations
Repo Layout
cskill-agents/
README.md
LICENSE
NOTICE
LEGAL.md
PROVENANCE.md
CONTRIBUTING.md
catalog/
bundles/
skills/
agents/
scripts/
skills/: canonical public universal skillsagents/: direct-install compatible skill foldersbundles/: curated install groupscatalog/: machine-readable and human-readable indexesscripts/: install helpers and safety checks
Skill Format
Each public skill contains:
SKILL.md: the reusable method instructionsskill.yaml: sanitized public metadata for catalogs and agents
Public metadata is intentionally coarse. This repo does not publish raw source repo paths or internal mirror paths.
Public Provenance Model
Public artifacts in this repo use coarse provenance only:
- pattern family
- category
- review status
- bundle membership
Private maintainer evidence can exist outside this repo, but public files should remain abstraction-first and path-safe.
Legal And Non-Affiliation
Read:
Short version:
- this repo licenses only its original authored materials
- third-party product names are used only for nominative compatibility references
- this repo is not affiliated with, endorsed by, sponsored by, or certified by Anthropic or OpenAI
Contributing
Before contributing, read CONTRIBUTING.md.
Public contributions must stay method-level. Do not add:
- source code snippets
- copied comments or tests
- raw internal file paths
- repo mirrors
- proprietary assets
Removal Requests
If you believe a public artifact in this repo is too close to upstream protected material, open an issue or contact the maintainer. See LEGAL.md for the review and correction process.
Files in the repo
- .github
- agents
- bundles
- catalog
- scripts
- skills
- CONTRIBUTING.md
- LEGAL.md
- LICENSE
- NOTICE
- PROVENANCE.md
- README.md
Discussion (0)
Ask about usage, or say what you built with itSign in to join the discussion.
No comments yet. Be the first to say what this is good for.
More skills

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.
Topic in, narrated explainer video out. A Claude Code / Codex skill that turns any topic into a black-canvas motion-graphics explainer video with TTS voiceover, subtitles and a chapter progress bar. Chinese or English; every frame drawn in code with Remotion.
Public repository for Agent Skills
Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

Production-grade engineering skills for AI coding agents.