From epieczko-betty
Generates a new Betty Framework Skill directory and manifest. Use when you need to bootstrap a new skill in the Betty Framework.
npx claudepluginhub joshuarweaver/cascade-code-general-misc-1 --plugin epieczko-bettyThis skill uses the workspace's default tool permissions.
This skill automates the creation of a new Claude Code-compatible Skill inside the Betty Framework. It scaffolds the directory structure, generates the `skill.yaml` manifest file, and registers the skill in the internal registry. Use this when you want to add a new skill quickly and consistently.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
This skill automates the creation of a new Claude Code-compatible Skill inside the Betty Framework. It scaffolds the directory structure, generates the skill.yaml manifest file, and registers the skill in the internal registry. Use this when you want to add a new skill quickly and consistently.
Run the script skill_create.py with the following arguments:
python skill_create.py <skill_name> "<description>" [--inputs input1,input2] [--outputs output1,output2]
The script will create a folder under /skills/<skill_name>/ with:
The new manifest will be validated via the skill.define skill.
After creation, review the generated skill.yaml for correctness, edit if necessary, and then mark status: active when ready for use.
python skill_create.py workflow.compose "Compose and orchestrate multi-step workflows" --inputs workflow.yaml,context.schema --outputs execution_plan.json
This will generate:
skills/
workflow.compose/
skill.yaml
README.md
registry/skills.json ← updated with workflow.compose entry
skills/workflow.compose/skill.yaml) to remain cross-platform.name, version, description, inputs, outputs, dependencies, status.skill.define (for validation) and context.schema (for input/output schema support).