ash1794/vibe-engineering Skills
(20)Browse AI agent skills from ash1794/vibe-engineering for Claude Code, OpenClaw, Cursor, Windsurf, and more. Install them with a single command to extend what your agents can do.
vibe-acceptance-gate
ash1794/vibe-engineering
Validate completed work against defined acceptance criteria. Use after completing a task that has specific success criteria defined in issues, specs, or task descriptions.
vibe-adversarial-test-generation
ash1794/vibe-engineering
Generate edge case and failure mode test cases after happy-path tests are written. Covers boundary values, nil inputs, concurrency, resource exhaustion, and malformed data.
vibe-anti-rationalization-check
ash1794/vibe-engineering
Detect and prevent shortcut rationalization — when Claude is about to skip a step, simplify a requirement, or optimize away a constraint. Use proactively when you notice rationalization patterns.
vibe-async-task-queue
ash1794/vibe-engineering
Persistent cross-session task queue for work that should be done but isn't blocking current tasks. Enables background and future-session work tracking.
vibe-cherry-pick-integration
ash1794/vibe-engineering
Safely integrate commits from parallel agent branches using sequential cherry-pick. Use after parallel work completes in isolated branches or worktrees.
vibe-concurrent-test-safety
ash1794/vibe-engineering
Audit tests for concurrency safety -- race conditions, shared mock state, cleanup ordering. Use when writing tests that involve goroutines, async operations, or shared mutable state.
vibe-coverage-enforcer
ash1794/vibe-engineering
Enforce tiered test coverage standards — critical paths >=90%, business logic >=80%, general code >=70%. Use before claiming code is complete.
vibe-debugging-journal
ash1794/vibe-engineering
Record resolved bugs in a persistent journal — symptom, root cause, difficulty, fix, prevention. Organized by category for future reference.
vibe-decision-journal
ash1794/vibe-engineering
Record architectural and technology decisions in ADR format for cross-session persistence. Use after making any significant design choice.
vibe-devil-advocate-review
ash1794/vibe-engineering
Challenge recommendations, designs, or synthesis by adversarial review across 5 dimensions. Use before shipping any significant recommendation or design document.
vibe-doc-quality-gate
ash1794/vibe-engineering
Fast 6-point quality check for technical documents (specs, design docs, READMEs). Use after editing any specification or design document.
vibe-fuzz-parser-inputs
ash1794/vibe-engineering
Generate fuzz test scaffolding for parsers handling external input (YAML, JSON, config files, user input). Seeds corpus from existing fixtures and runs initial pass.
vibe-golden-file-testing
ash1794/vibe-engineering
Implement snapshot/golden file tests with temporal normalization so tests don't break daily. Use when implementing tests that compare output against expected snapshots.
vibe-handover-doc
ash1794/vibe-engineering
Generate a session continuity document at the end of a long session or when switching context on a multi-session project. Enables seamless resumption.
vibe-iteration-review
ash1794/vibe-engineering
End-of-iteration review with quality grading, metrics, and trend analysis. Use at the end of each development iteration or sprint.
vibe-parallel-task-decomposition
ash1794/vibe-engineering
Analyze large tasks for independent subtasks that can be safely parallelized. Produces a DAG-based dispatch plan with dependency ordering and maximum parallelism.
vibe-pattern-library
ash1794/vibe-engineering
Detect recurring implementation patterns and record them for reuse. When the same code pattern appears 3+ times, it belongs in the pattern library.
vibe-pre-commit-audit
ash1794/vibe-engineering
Scan staged changes for secrets, debug statements, TODOs without references, and other common commit mistakes. Use before creating any commit.
vibe-production-mindset
ash1794/vibe-engineering
Set quality expectations for implementation — "imagine this serves 1 million users." Checks for observability, error handling, input validation, graceful degradation.
vibe-quality-loop
ash1794/vibe-engineering
Enforce the Implement→Review→Test→Fix→Loop cycle until work is clean. Use after any non-trivial implementation to prevent "good enough" exits.