# Skill Creator

> >

- **Type:** Skill
- **Install:** `agentstack add skill-bug-ops-zeph-skill-creator`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [bug-ops](https://agentstack.voostack.com/s/bug-ops)
- **Installs:** 0
- **Category:** [AI & ML](https://agentstack.voostack.com/c/ai-and-ml)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [bug-ops](https://github.com/bug-ops)
- **Source:** https://github.com/bug-ops/zeph/tree/main/.zeph/skills/skill-creator
- **Website:** https://bug-ops.github.io/zeph/

## Install

```sh
agentstack add skill-bug-ops-zeph-skill-creator
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Skill Creator

Create a new skill following the agentskills.io specification (https://agentskills.io/specification).

## Step 1: Gather requirements

Ask the user:
1. What should the skill do?
2. What tools or commands does it need?
3. 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:

```markdown
---
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
- [ ] `name` present and follows naming rules
- [ ] `name` matches directory name
- [ ] `description` present and >= 20 characters
- [ ] `description` says 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

1. **Optimize for weak LLMs** — use numbered steps, explicit commands, avoid ambiguity
2. **One task per code block** — do not chain unrelated commands
3. **Include examples** — show expected input and output where possible
4. **Security first** — never include secrets, credentials, or destructive commands without warnings
5. **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](https://github.com/bug-ops)
- **Source:** [bug-ops/zeph](https://github.com/bug-ops/zeph)
- **License:** MIT
- **Homepage:** https://bug-ops.github.io/zeph/

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-bug-ops-zeph-skill-creator
- Seller: https://agentstack.voostack.com/s/bug-ops
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
