Skill Production Pipeline — Claude-skills banner
alirezarezvani alirezarezvani

Skill Production Pipeline — Claude-skills

Data community intermediate

Description

> Effective: 2026-03-07 | Applies to ALL new skills, improvements, and deployments. > Owner: Leo (orchestrator) + Reza (final approval) ---

Installation

Terminal
claude install-skill https://github.com/alirezarezvani/claude-skills

README

Skill Production Pipeline — claude-skills

**Effective: 2026-03-07** | Applies to ALL new skills, improvements, and deployments. **Owner:** Leo (orchestrator) + Reza (final approval)


Mandatory Pipeline

Every skill MUST go through this pipeline. No exceptions.

Intent → Research → Draft → Eval → Iterate → Compliance → Package → Deploy → Verify → Rollback-Ready

Tool: Anthropic Skill Creator (v2025-03+)

**Location:** `~/.openclaw/workspace/skills/skill-creator/` **Components:** SKILL.md, 3 agents (grader, comparator, analyzer), 10 scripts, eval-viewer, schemas

Dependencies

Tool Version Install Fallback
Tessl CLI v0.70.0 tessl login (auth: rezarezvani) Manual 8-point compliance check
ClawHub CLI latest npm i -g @openclaw/clawhub Skip OpenClaw publish, do manually later
Claude Code 2.1+ Already installed Required, no fallback
Python 3.10+ System Required for scripts

Iteration Limits

    undefined

Phase 1: Intent & Research

    undefined

Phase 2: Draft SKILL.md

Using Anthropic's skill-creator workflow:

Required Structure

skill-name/
├── SKILL.md              # Core instructions (YAML frontmatter required)
│   ├── name: (kebab-case)
│   ├── description: (pushy triggers, when-to-use)
│   └── Body (<500 lines ideal)
├── scripts/              # Python CLI tools (no ML/LLM calls, stdlib only)
├── references/           # Expert knowledge bases (loaded on demand)
├── assets/               # Templates, sample data, expected outputs
├── agents/               # Sub-agent definitions (if applicable)
├── commands/             # Slash commands (if applicable)
└── evals/
    └── evals.json        # Test cases + assertions

SKILL.md Rules

    undefined

Phase 3: Eval & Benchmark

3a. Create Test Cases

    undefined

3b. Run Evals

    undefined