From devflow
Use when creating new DevFlow skills — follows TDD-for-docs methodology from superpowers with devflow conventions
npx claudepluginhub nexuz-sys/devflow --plugin devflowThis skill uses the workspace's default tool permissions.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Executes pre-written implementation plans: critically reviews, follows bite-sized steps exactly, runs verifications, tracks progress with checkpoints, uses git worktrees, stops on blockers.
Create new DevFlow skills using TDD applied to documentation — test that agents follow the skill before shipping it.
Announce at start: "I'm using the devflow:skill-creation skill to create a new skill."
Every skill lives in skills/<skill-name>/SKILL.md:
---
name: <skill-name>
description: "<CSO-optimized description — what triggers this skill>"
---
# Skill Title
[One-line purpose statement]
**Announce at start:** "I'm using the devflow:<skill-name> skill to [action]."
## When to Use
[Explicit triggers — when should the agent invoke this?]
## Checklist
[Ordered steps the agent must follow]
## [Process sections]
[Detailed instructions per step]
## Mode Integration
[How behavior changes across Full/Lite/Minimal modes]
## Anti-Patterns
[Table of rationalizations and their rebuttals]
Adapted from superpowers:writing-skills:
The description field in frontmatter is how agents find skills. Optimize it:
Every skill MUST include a "Mode Integration" section showing behavior in Full/Lite/Minimal modes.
If the skill relates to a specialist agent, include how to invoke it in each mode.
Specify which PREVC phases the skill applies to in the skills-map.md entry.
Every skill MUST end with an anti-patterns table. Format:
| Pattern | Problem |
|---------|---------|
| "I don't need this" | [Why they do] |
For the full TDD-for-docs methodology, invoke superpowers:writing-skills which provides:
| Pattern | Problem |
|---|---|
| Writing skills without testing | Untested skills are ignored or misapplied |
| Vague description field | Agent won't find the skill when it's needed |
| No anti-rationalization table | Agent will rationalize skipping the skill |
| Too long | Skills over 200 lines lose agent attention |
| No mode integration | Skill fails silently in Lite/Minimal mode |