Scaffold a new reusable Skill (SKILL.md + optional scripts/references/assets). Use when asked to create a new skill, when a task would benefit from a reusable procedural guide, or when you notice repeated workflow friction.
Create well-formed Skills quickly and consistently.
Restate the spec
Pick the skill type
operational: narrowly-scoped, repeatable procedure (preferred default).meta: orchestration / governance / decision-making.composed: "manager" skills that chain other skills together.Name the skill
kebab-case, short, verb-led if possible.Create the skill folder
skills/<type>/<name>/forgeloop/skills/<type>/<name>/ only when you are changing the kit itselfSKILL.mdscripts/, references/, assets/Write SKILL.md
name + description only.description is the trigger surface: include what it does + when to use it.references/.Sync skills into your agents
./forgeloop/bin/sync-skills.sh (Claude Code mirror + optional Codex install)---
name: your-skill-name
description: "What it does. Use when … (include triggers)."
---
# Your Skill Name
## Inputs
- …
## Outputs
- …
## Steps
1. …
## Examples
- …
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer