hyperflow-scope
hyperflow-scope decomposes a well-defined task into ordered batches before implementation begins, writing a structured task plan to `.hyperflow/tasks/<slug>.md` and handing off to hyperflow-dispatch. Use it when a request is clear enough to break into coherent, independently reviewable steps but implementation hasn't started.
git clone --depth 1 https://github.com/jeremylongshore/claude-code-plugins-plus-skills /tmp/hyperflow-scope && cp -r /tmp/hyperflow-scope/plugins/ai-agency/hyperflow/templates/antigravity/skills/hyperflow-scope ~/.claude/skills/hyperflow-scopeSKILL.md
# hyperflow-scope — decomposition phase (Antigravity single-agent) Decompose, don't build. The only writes are to `.hyperflow/`. Follow the `hyperflow` doctrine. ## Steps 1. **Research** the affected surface (files to read/modify/create, conventions, test patterns). If the request is actually a design question, redirect to `hyperflow-spec` and stop. 2. **Produce a batch graph.** Order batches topologically; each sub-task = one coherent change nameable in a single conventional-commit subject. **Split any sub-task** that touches >5 files, >500 LOC, spans 2+ subsystems, or would take a reviewer >10 min to grasp. 3. **Write `.hyperflow/tasks/<slug>.md`** with: status table (progress, branch, commit cadence) → Goal → Why → Scope-at-a-glance table → Affected files (created/modified) → Execution plan (batch graph) → Batches (each sub-task with role, files, complexity, acceptance criteria, commit-message stub) → Verification plan. 4. **Print** a one-line summary: `Plan ready — .hyperflow/tasks/<slug>.md (N batches, M sub-tasks)`. 5. **Hand off**: invoke the `hyperflow-dispatch` skill with the task slug. ## Rules - No implementation code; no source edits. - Single-batch plans for multi-file work are an anti-pattern — decompose. - Always include a concrete verification plan.
Audit and fix Claude Code SKILL.md files against enterprise compliance standards: frontmatter completeness, required body sections, and style. Use when validating or repairing skills in a plugin directory. Trigger with "audit skill", "fix skill compliance".
Learn how SKILL.md files work in Claude Code plugins, then build a production-quality agent skill from scratch. Covers frontmatter schema, body structure, testing, and iteration.
Step-by-step guide to writing a SKILL.md file for Claude Code. Learn how to plan, structure, and test auto-activating skills with proper frontmatter, allowed-tools, dynamic context injection, and supporting files.
|
|
|
|
|