Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/tomes --skill skill-creator명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
> Use when this capability is needed.
Use when writing kernel, account, or note MASM code that reads from or writes to the advice provider (advice stack / advice map) — validate advice data.
Use when writing a Rust test that exercises a failure path or a MASM test that expects a `panic` / `assert` — assert on the specific expected error variant or error code.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | skill-creator |
| description | > Use when this capability is needed. |
Create a new skill following the agentskills.io specification (https://agentskills.io/specification).
Ask the user:
If the user already provided enough context, skip asking and proceed.
Rules for the name field:
a-z, 0-9, -)---)Rules for the description field:
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.
.zeph/skills/<skill-name>/
├── SKILL.md # Required
├── scripts/ # Optional: executable scripts
├── references/ # Optional: detailed docs loaded on demand
└── assets/ # Optional: templates, schemas, data files
Use this template:
---
name: <skill-name>
description: <what it does and when to use it>
compatibility: <only if environment requirements exist>
metadata:
author: zeph
version: "1.0"
---
# <Skill Title>
<One-line summary of what this skill does.>
## Step 1: <First action>
<Instructions with code blocks showing exact commands or tool invocations.>
## Step 2: <Next action>
<Continue step-by-step. Keep instructions concrete and >
| 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) |
After writing, verify these rules:
name present and follows naming rulesname matches directory namedescription present and >= 20 charactersdescription says WHEN to use the skillreferences/ directoryscripts/ directorySource: bug-ops/zeph — distributed by TomeVault.