home / skills / nickcrew / claude-cortex / template-skill
This skill helps you bootstrap new AI skills by enforcing structure, metadata, and starter templates for rapid, consistent skill creation.
npx playbooks add skill nickcrew/claude-cortex --skill template-skillReview the files below or copy the command above to add this skill to your agents.
---
name: template-skill
description: A template for creating new skills. Use when initializing a new skill to ensure proper structure and metadata.
---
# Insert instructions below
This skill is a lightweight template for creating new Claude Cortex skills. It provides a structured starting point with metadata, folder layout, and example code so you can initialize a new Python-based skill quickly and consistently. Use it to ensure each skill follows the expected conventions for CLI, context management, and integration with Claude agent frameworks.
The template supplies a minimal Python project scaffold, example entrypoints, and metadata that the agent system expects. It includes example configuration for context handling, CLI hooks, and recommended testing stubs so you can replace placeholders with real logic. The template does not implement domain logic; it gives the structure and example patterns to extend.
Is this template production-ready code?
No. It is a scaffold meant to be customized. Replace example logic and add tests, security checks, and CI before production use.
Does the template enforce a specific framework version?
The template includes example Python packaging and may reference common dependencies, but you should pin versions and adapt the environment to your target runtime.