claude-code/skills/quick/SKILL.md
Fast-tracks small tasks into a ready-to-use prompt pack in one command. Skips discover, generates an ephemeral spec in memory, and outputs a prompt pack with embedded patterns. Use for well-defined tasks that fit in ≤4 files.
npx skillsauth add pe-menezes/vibeflow quickInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
What it does: For small, well-defined tasks (e.g. bug fix, tiny feature), skips PRD and full spec: generates a minimal spec in memory and a prompt pack you can hand to the coding agent. Task should fit in ≤4 files.
Examples:
/vibeflow:quick corrigir formatação de data no dashboard — One command; you get a prompt pack and can paste it to the agent./vibeflow:quick adicionar botão de exportar CSV na tela de relatórios — Same; use when scope is clear and small.Detect the language of the user's input ($ARGUMENTS or conversation). Write ALL output in that same language. Technical terms in English are acceptable regardless of the detected language.
Use WebSearch and WebFetch only when local context (.vibeflow/, codebase
files, git history) is insufficient. Prefer local knowledge first:
patterns, conventions, and existing code. Typical valid uses: researching
unknown frameworks/libraries found in the codebase, checking official docs
for unfamiliar APIs.
Fast-track prompt pack for: $ARGUMENTS
/vibeflow:discover first./vibeflow:gen-spec..vibeflow/ exist?
.vibeflow/)This is NOT a full analyze. Do NOT generate .vibeflow/. Do just enough
to understand the project:
package.json, pyproject.toml, Cargo.toml,
go.mod, build.gradle, pom.xml, or equivalent. Determine the stack..cursorrules, CLAUDE.md, or .cursor/rules/ exist, read them for
coding conventions.Keep all findings in memory — do NOT write files.
At the end, suggest: "For deeper analysis, run /vibeflow:analyze."
Using .vibeflow/ (if available) or Phase 1 context, generate a spec
in memory only (do NOT save to file). The spec must contain:
/vibeflow:gen-spec.".vibeflow/patterns/
apply (if .vibeflow/ exists).Do NOT include Technical Decisions or Risks sections (this is fast-track).
Using the ephemeral spec and .vibeflow/ knowledge (if available),
generate the prompt pack. Follow the same structure as /vibeflow:prompt-pack:
The prompt pack MUST start with:
You are only seeing this prompt; there is no context outside it.
(Write this opening line in the user's detected language.)
Then include, in this order:
From the ephemeral spec.
What NOT to do.
≤ 4 files (default for quick).
If .vibeflow/ exists: embed real code examples from pattern docs
and conventions.md, just like /vibeflow:prompt-pack does.
If .vibeflow/ does NOT exist: include the conventions and patterns
you observed during the Phase 1 lightweight scan.
Real file paths. Verify they exist. Include relevant code snippets.
Architectural direction. NOT step-by-step.
Detect test runner from stack. Always include test commands. If no test runner detected: "No test runner detected. Add manual tests to validate."
Save the prompt pack to: .vibeflow/prompt-packs/<feature-slug>.md
Create .vibeflow/prompt-packs/ if it doesn't exist.
.vibeflow/ didn't exist: remind to run /vibeflow:analyze
for richer results next time/vibeflow:audit to verify."If this command is modified, update MANUAL.md to reflect the changes.
testing
Updates .vibeflow/ with corrections, new conventions, architectural decisions, or new patterns from natural language feedback. Also imports from external repos via --from <url|path>. Use to keep .vibeflow/ accurate as the project evolves.
development
Compiles statistics from audit reports: PASS/PARTIAL/FAIL rates, most violated patterns, most failing DoD checks, and quality trends. Use after running several audits to spot improvement areas.
data-ai
Fast-tracks small tasks into a prompt pack in one command. Skips discover, generates an ephemeral spec in memory. Use for well-defined tasks that fit in ≤4 files.
development
Generates a self-contained prompt pack from a spec. Embeds real code patterns from .vibeflow/ so any coding agent follows the project's conventions. Use when handing off implementation to a separate session or agent.