- Home
- Skills
- Cdeistopened
- Skill Stack
- Skill Creator
skill-creator_skill
- TypeScript
1
GitHub Stars
1
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill cdeistopened/skill-stack --skill skill-creator- SKILL.md9.7 KB
Overview
This skill guides creators to build effective extensions that expand Claude’s capabilities with domain knowledge, workflows, and tool integrations. It provides a repeatable process to design, package, and iterate skills, plus suggested reusable resources and example scripts. Use it to create focused, production-ready skills that trigger reliably and scale across teams.
How this skill works
Inspect intended user intents and concrete examples to define clear triggers and supported functionality. Recommend which reusable resources to bundle (scripts, reference documents, and output assets), generate a standard skill structure, validate packaging rules, and outline iterative testing steps. Provide templates and command snippets for initializing, packaging, and quick-validating a skill for distribution.
When to use it
- Building a new specialized agent for a specific domain or workflow
- Updating an existing skill with new tools, docs, or assets
- Packaging deterministic scripts or templates for repeatable tasks
- Onboarding contributors to a standard skill structure
- Preparing a skill for distribution and automated validation
Best practices
- Keep each skill focused on a single clear purpose and set of triggers
- Document triggers and expected inputs concisely in the skill manifest and examples
- Bundle deterministic code as executable scripts, large docs as reference files, and final output files as assets
- Limit in-manifest documentation size; move long references into searchable reference files and include grep/search patterns
- Write procedural instructions in imperative verb-first style (e.g., "To X, do Y")
- Include quality checks and example inputs/outputs to validate behavior during testing
Example use cases
- Create a PDF processing skill with a rotate-and-crop script and sample templates
- Build a data-query skill that includes schema references and query examples for analytics teams
- Package a frontend-boilerplate asset bundle for rapid app scaffolding and CI-ready scripts
- Create a compliance skill that references company policies and includes validation checklists
- Iterate an existing skill by adding a quick-validate script and expanded examples after real-world testing
FAQ
Include any deterministic scripts needed to execute tasks, reference documents that Claude should consult at runtime, and output assets required for generated deliverables.
How do I keep context efficient?
Keep the skill manifest concise (under ~5k words), move lengthy docs into references with search patterns, and only load assets when needed; prefer executing scripts rather than loading large code into context.