Install
$ agentstack add skill-bug-ops-zeph-skill-creator ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Skill Creator
Create a new skill following the agentskills.io specification (https://agentskills.io/specification).
Step 1: Gather requirements
Ask the user:
- What should the skill do?
- What tools or commands does it need?
- Does it need references, scripts, or assets?
If the user already provided enough context, skip asking and proceed.
Step 2: Choose a name
Rules for the name field:
- 1-64 characters
- Lowercase letters, numbers, hyphens only (
a-z,0-9,-) - Must NOT start or end with
- - Must NOT contain consecutive hyphens (
--) - Must match the parent directory name
Step 3: Write the description
Rules for the description field:
- 1-1024 characters
- Must describe WHAT the skill does AND WHEN to use it
- Include keywords that help semantic matching
Good:
description: Extract text and tables from PDF files, fill PDF forms, and merge multiple PDFs. Use when working with PDF documents or when the user mentions PDFs, forms, or document extraction.
Bad:
description: Helps with PDFs.
Step 4: Create the directory structure
.zeph/skills//
├── SKILL.md # Required
├── scripts/ # Optional: executable scripts
├── references/ # Optional: detailed docs loaded on demand
└── assets/ # Optional: templates, schemas, data files
Step 5: Write SKILL.md
Use this template:
---
name:
description:
compatibility:
metadata:
author: zeph
version: "1.0"
---
#
## Step 1:
## Step 2:
Optional frontmatter fields
| Field | When to use | |-------|-------------| | license | Skill has specific licensing terms | | compatibility | Skill requires specific binaries, network, or environment | | metadata | Extra key-value pairs (author, version, tags) | | allowed-tools | Pre-approve specific tools (experimental) |
Step 6: Validate the skill
After writing, verify these rules:
Frontmatter
- [ ]
namepresent and follows naming rules - [ ]
namematches directory name - [ ]
descriptionpresent and >= 20 characters - [ ]
descriptionsays WHEN to use the skill - [ ] No unknown required fields
Body
- [ ] Contains step-by-step instructions
- [ ] Code blocks use correct language tags
- [ ] Total SKILL.md under 500 lines
- [ ] No sensitive data (API keys, passwords, paths)
Progressive disclosure
- [ ] Main SKILL.md < 5000 tokens
- [ ] Detailed references in
references/directory - [ ] Scripts in
scripts/directory
Writing Guidelines
- Optimize for weak LLMs — use numbered steps, explicit commands, avoid ambiguity
- One task per code block — do not chain unrelated commands
- Include examples — show expected input and output where possible
- Security first — never include secrets, credentials, or destructive commands without warnings
- Keep it focused — one skill = one capability. Split broad topics into multiple skills
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: bug-ops
- Source: bug-ops/zeph
- License: MIT
- Homepage: https://bug-ops.github.io/zeph/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.