# Template Skill

> A template for creating new modular and scalable agent skills.

- Skill: `vodailocz/template-skill` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vodailocz/template-skill`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vodailocz/template-skill/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: VoDaiLocz (https://skillmd.com/u/vodailocz)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/vodailocz/template-skill

---


# Template Skill

This is a blueprint for creating new skills. Follow this folder structure and the guidelines in `STRUCTURE.md`.

## Folder Layout

- `SKILL.md`: Metadata and high-level instructions.
- `scripts/`: Implementation logic (Python/Node).
- `resources/`: Prompts, reference documents, or static data.
- `examples/`: Sample usage for the agent to learn from.
- `tests/`: Basic verification to ensure the skill works.

## Guidelines

1. **Self-Documentation**: Always keep `SKILL.md` updated with the latest capabilities.
2. **Utilities**: Import from `../common/` for logging and environment management.
3. **Artifacts**: Store temporary outputs in `artifacts/` (don't commit these).

## Usage Example

Refer to `examples/basic_usage.md` for a demonstration.

