_template
A template for defining and configuring custom agent skills.
Install
mkdir -p .claude/skills/template && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/11260" && unzip -o skill.zip -d .claude/skills/template && rm skill.zipInstalls to .claude/skills/template
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
- `config.apiKey` - `config.baseUrl` - `config.modelId`Key capabilities
- →Define agent skill structure
- →Document skill configuration requirements
- →Manage skill parameters via OpenClaw configuration tree
How it works
It provides a template structure for declaring configuration fields like apiKey and baseUrl, which are then integrated into the OpenClaw configuration tree.
Inputs & outputs
When to use _template
- →Define new agent skill structure
- →Document skill requirements
- →Manage skill configuration parameters
About this skill
your-skill-id
用途
一句话说明这个技能是做什么的。
适用场景
- 场景 1
- 场景 2
输入
- 用户会提供什么
- 依赖哪些配置项
输出
- 你希望技能最终返回什么结果
配置项
如果你的技能需要用户在面板里配置参数,请在 skill.json 里声明:
config.apiKeyconfig.baseUrlconfig.modelId
这些配置值会写入 OpenClaw 配置树中,供技能运行时读取。
注意事项
- 不要在 SKILL.md 中硬编码密钥
- 配置缺失时要给出友好报错
- 涉及外发动作前先让用户确认
When not to use it
- →When implementing logic that requires hardcoded secrets
Prerequisites
Limitations
- →Do not hardcode keys in SKILL.md
How it compares
It provides a standardized schema for skill documentation instead of ad-hoc implementation notes.
Compared to similar skills
_template side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| _template (this skill) | 0 | 5mo | No flags | Beginner |
| using-superpowers | 95 | 3mo | No flags | Beginner |
| ultrawork | 11 | 2mo | No flags | Advanced |
| clawhub | 25 | 2mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
using-superpowers
obra
Use when starting any conversation - establishes mandatory workflows for finding and using skills, including using Skill tool before announcing usage, following brainstorming before coding, and creating TodoWrite todos for checklists
ultrawork
Yeachan-Heo
Parallel execution engine for high-throughput task completion
clawhub
openclaw
Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed clawhub CLI.
skill-installer
openai
Install Codex skills into $CODEX_HOME/skills from a curated list or a GitHub repo path. Use when a user asks to list installable skills, install a curated skill, or install a skill from another repo (including private repos).
continuous-learning
affaan-m
Automatically extract reusable patterns from Claude Code sessions and save them as learned skills for future use.
memory-keeper-proactive-context-maintenance
b4CU-R4U
Automatically detect and maintain memory freshness by monitoring context staleness, significant code changes, task completions, and phase transitions. Proactively suggests and executes memory sync operations with user confirmation. Use when the user says "sync memory", "update context", or when the Skill detects that context is stale (>2 hours), significant changes have occurred (new commits), tasks completed, or major milestones reached. Replaces passive "context is stale" warnings with active maintenance.