Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Skill Creator

ASecurity

Meta-skill for creating complex skill packages with scripts, data, and multi-file structures

7 stars
0 votes
0 copies
4 views
Added 12/19/2025
toolspythonshellbashdebuggingdocumentation

Security Analysis

A100/100

Scanned 2/12/2026

Install to Claude Code

$npx -y skills add nemori-ai/agent_skills --skill skill-creator --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Skill Creator?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Skill Creator
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/nemori-ai-skill-creator/badge)](https://www.skillsdirectory.com/skills/nemori-ai-skill-creator)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: skill-creator
description: Meta-skill for creating complex skill packages with scripts, data, and multi-file structures
---

# Skill Creator

This skill teaches you how to create **Skill Packages**—complete directory structures containing guides, scripts, and data.

## ⚠️ Path Guidelines

> **Rule**: Scripts should accept output path parameters, letting callers specify output locations. Skill directories only store code.
>
> For detailed guidelines: `skills_read(path="skills/skill-creator/docs/script-guidelines.md")`

## What is a Skill Package?

A skill package is not just a Markdown file, but a complete directory structure:

```
skill-name/
├── SKILL.md          # Entry guide (required)
├── scripts/          # Executable scripts
│   ├── main.py
│   └── pyproject.toml  (dependency config)
├── data/             # Templates and data files
└── docs/             # Detailed documentation (optional)
```

---

## 📖 Choose Guide by Scenario

Based on your needs, read the corresponding detailed documentation:

### 🆕 Create New Skill from Scratch

First time creating a skill package, learn the complete process (5-step creation method).

```python
skills_read(path="skills/skill-creator/docs/quick-start.md")
```

### 📝 Write/Modify SKILL.md Documentation

Learn the structure and template for SKILL.md.

```python
skills_read(path="skills/skill-creator/docs/skillmd-template.md")
```

### 🔧 Add Scripts to Skill

Learn Python/Bash script writing standards and dependency management.

```python
skills_read(path="skills/skill-creator/docs/script-guidelines.md")
```

### 🔄 Script Debugging Failed, Need Iteration

How to properly clean up old versions after creating replacement scripts.

```python
skills_read(path="skills/skill-creator/docs/iteration-and-cleanup.md")
```

### 📚 View Complete Example

Reference a complete skill creation process (code reviewer skill).

```python
skills_read(path="skills/skill-creator/docs/full-example.md")
```

---

## Command Quick Reference

| Tool | Purpose | Example |
|------|---------|---------|
| `skills_ls(path="skills")` | List all skills | View available skills |
| `skills_ls(path="skills/<name>")` | List files in skill | Check file structure |
| `skills_read(path="skills/<name>/SKILL.md")` | Read skill documentation | Learn skill usage |
| `skills_create(name, description, instructions)` | Create skill skeleton | Create new skill |
| `skills_write(path, content)` | Add/overwrite file | Add script |
| `skills_run(name, command)` | Execute skill command | Test script |
| `skills_bash(command, cwd)` | Execute shell command | Delete/rename file |

---

## Quick Start

Creating the simplest skill requires only 2 steps:

```python
# 1. Create skill skeleton
skills_create(
    name="hello-world",
    description="Example skill",
    instructions="# Hello World\n\nRun `skills_run(name=\"hello-world\", command=\"python scripts/hello.py\")`"
)

# 2. Add script
skills_write(
    path="skills/hello-world/scripts/hello.py",
    content='print("Hello, World!")'
)

# 3. Test
skills_run(name="hello-world", command="python scripts/hello.py")
```

Need more detailed guidance? Read [Quick Start Guide](docs/quick-start.md).

Attribution

nemori-ainemori-ai
View sourceMore from nemori-ai →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

ucoz-landing-skill

Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...

107 votes

Paperclip

Interact with the Paperclip control plane API for task coordination and governance. Use when checking assignments, updating issue status, posting comments, delegating work, managing routines, or calling Paperclip API endpoints.

805541 votes

Instantly Rdsthomas Mission Control

Instantly.ai cold email outreach API - manage campaigns, leads, accounts, and analytics. Use for cold email automation, lead management, campaign creation/monitoring, and email account warmup.

761 votes

Daw Music

Digital Audio Workstation usage, music composition, interactive music systems, and game audio implementation for immersive soundscapes.

761 votes

Caveman Compress

Compress natural language memory files (CLAUDE.md, todos, preferences) into caveman format to save input tokens. Preserves all technical substance, code, URLs, and structure. Compressed version overwrites the original file. Human-readable backup saved as FILE.original.md. Trigger: /caveman-compress FILEPATH or "compress memory file"

1066600 votes
View all in tools →