Community라이팅 & 에디팅github.com

zakelfassi/skills-driven-development

Agents that learn by doing — and remember how they did it. A methodology for AI agents to create, evolve, and share reusable skills.

지원 대상Claude Code~Codex CLI~Cursor
npx skills add zakelfassi/skills-driven-development

Ask in your favorite AI

Open a new chat with this agent skill pre-loaded.

문서

SkillForge

Create well-formed, spec-compliant skills from observed patterns.

When to Forge

Forge when:

  • You've done the same sequence 2-3 times in a session
  • A project convention isn't documented anywhere
  • You solved a hard problem with a reusable solution
  • Someone asks you to create a skill

Don't forge when:

  • It's a one-time task
  • An existing skill already covers it (update instead)
  • The "skill" is just a single command (use a script alias)

Steps

1. Name the pattern

  • What problem does this skill solve?
  • What triggers it? (be specific — the description field is the discovery surface)
  • What are the inputs and outputs?

2. Choose a name

  • kebab-case, 1-64 characters
  • Verb-led when possible: deploy-preview, scaffold-component, triage-bug
  • One responsibility per skill

3. Create the skill directory

mkdir -p skills/<skill-name>

4. Write SKILL.md

Use this skeleton:

---
name: <skill-name>
description: <what it does>. Use when <triggers>.
metadata:
  forged-by: <agent-id>
  forged-from: <session-or-context>
  forged-reason: "<why this was created>"
---

# <Skill Name>

## Inputs
- ...

## Steps
1. ...
2. ...

## Conventions
- Project-specific patterns that apply

## Edge Cases
- Known gotchas or special handling

5. Add scripts (optional)

If the skill involves file generation or automation:

skills/<skill-name>/
├── SKILL.md
├── scripts/
│   └── run.sh         # Executable automation
└── references/
    └── conventions.md # Detailed reference (keeps SKILL.md lean)

6. Register the skill

Update .skills-registry.md at the project root (same level as skills/). Create it if it doesn't exist:

| <skill-name> | local | <today> | 1 | <description> |

If the project uses the machine-readable registry (.skills-registry.json), update it too — skdd forge handles both formats automatically.

Updating an Existing Skill

When you use a skill and encounter something it doesn't cover:

  1. Add the new edge case or step to the existing SKILL.md
  2. If the skill is getting too long (>200 lines), split it
  3. Update last-used and increment usage-count in the registry

Quality Checklist

Before committing a new skill:

  • name is kebab-case, ≤64 chars
  • description includes what it does AND when to use it
  • Steps are numbered and actionable
  • No hardcoded paths, secrets, or environment-specific values
  • SKILL.md is under 200 lines (move details to references/)
  • Registered in .skills-registry.md

관련 스킬

steipete/notion

Notion CLI/API for pages, Markdown content, data sources, files, comments, search, Workers, and raw API calls.

community

affaan-m/seo

Audit, plan, and implement SEO improvements across technical SEO, on-page optimization, structured data, Core Web Vitals, and content strategy. Use when the user wants better search visibility, SEO remediation, schema markup, sitemap/robots work, or keyword mapping.

community

affaan-m/brand-voice

Build a source-derived writing style profile from real posts, essays, launch notes, docs, or site copy, then reuse that profile across content, outreach, and social workflows. Use when the user wants voice consistency without generic AI writing tropes.

community

affaan-m/crosspost

Multi-platform content distribution across X, LinkedIn, Threads, and Bluesky. Adapts content per platform using content-engine patterns. Never posts identical content cross-platform. Use when the user wants to distribute content across social platforms.

community

affaan-m/x-api

X/Twitter API integration for posting tweets, threads, reading timelines, search, and analytics. Covers OAuth auth patterns, rate limits, and platform-native content posting. Use when the user wants to interact with X programmatically.

community

affaan-m/content-engine

Create platform-native content systems for X, LinkedIn, TikTok, YouTube, newsletters, and repurposed multi-platform campaigns. Use when the user wants social posts, threads, scripts, content calendars, or one source asset adapted cleanly across platforms.

community