mit einem Klick
skill-creator
Create or update agent skills with proper SKILL.md structure, frontmatter, and best practices. Use when building new private skills for this repository and the vercel-labs/skills CLI.
Menü
Create or update agent skills with proper SKILL.md structure, frontmatter, and best practices. Use when building new private skills for this repository and the vercel-labs/skills CLI.
Secure Fly.io web application deployment workflow. Use when configuring, reviewing, or debugging Fly apps with private internal services, public frontends, custom domains, Cloudflare Access, OIDC origin protection, Fly secrets, volumes, Docker images, or smoke checks.
Operate and debug this Hermes Agent Fly.io deployment repo. Use when running or updating Makefile targets, validating .env and Fly config, syncing secrets, deploying Hermes or Open WebUI, smoke testing Cloudflare/OIDC/private networking/Modal, reading logs, or troubleshooting startup, auth, host-gate, model, or sandbox issues in this repository.
Configure agent command execution through Modal Sandboxes. Use when deploying or reviewing an agent that runs terminal/tool commands in Modal instead of the app host, including Modal token setup, sandbox resource limits, filesystem sync, environment passthrough, and smoke tests.
Rewrite technical writing in this repo so readers understand it on the first pass. Use when improving docs, MDX pages, changelog entries, blog posts, UI copy, onboarding text, help text, headings, lists, or formatting without changing the underlying meaning or product behavior.
| name | skill-creator |
| description | Create or update agent skills with proper SKILL.md structure, frontmatter, and best practices. Use when building new private skills for this repository and the vercel-labs/skills CLI. |
Create well-structured agent skills that work with the open skills CLI and install cleanly into supported agents.
Every skill requires this directory structure:
skills/
└── skill-name/
├── SKILL.md # Required - main skill definition
├── references/ # Optional - docs loaded only when needed
├── scripts/ # Optional - deterministic helper scripts
└── assets/ # Optional - templates or files used in outputs
---
name: skill-name
description: Brief description of what the skill does and when to use it. Max 1024 chars.
---
# Skill Title
[Main instructions for the agent when this skill is activated]
| Field | Required | Constraints |
|---|---|---|
name | Yes | Lowercase letters, numbers, hyphens only. Max 64 chars. |
description | Yes | What it does + when to use it. Max 1024 chars. |
metadata.internal | No | Set true only for skills hidden from normal discovery. |
The description determines when an agent activates the skill. Be specific:
Good descriptions:
Bad descriptions:
Include:
# Skill Title
Brief context paragraph.
## Context
Who/what this skill represents, target audience.
## [Main Sections]
Core instructions, templates, guidelines.
## Examples
Input/output examples when helpful.
## Quality Checklist
Verification criteria for outputs.
SKILL.md concise; move large examples or domain references into references/Use skills/<skill-name>/ as the canonical source layout in this repo. The skills CLI installs from there into each agent's preferred directory, such as ~/.codex/skills/ for Codex or ~/.claude/skills/ for Claude Code.
mkdir -p skills/skill-namenpx skills add . --listnpx skills add . --global --agent codex --skill skill-name---
name: code-review
description: Review code for bugs, security issues, and best practices. Use when asked to review or audit code.
---
# Code Review Skill
Review code systematically for:
## Checklist
- [ ] Logic errors and edge cases
- [ ] Security vulnerabilities (injection, auth, etc.)
- [ ] Performance concerns
- [ ] Code style and readability
- [ ] Error handling
## Output Format
Provide findings as:
1. **Critical**: Must fix before merge
2. **Important**: Should fix soon
3. **Suggestions**: Nice to have improvements
Define character, tone, writing style for consistent outputs.
Step-by-step instructions for specific workflows.
Output formats, document structures, boilerplate.
Checklists, criteria, evaluation frameworks.