workflow-validate

Validates technical feasibility through prototypes, tests, and research before implementation.

1|Updated Mar 8, 2026
One-click install
npx skills add https://github.com/kubrickcode/cine-mirror --skill workflow-validate-kubrickcode
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: workflow-validate
Source: https://github.com/kubrickcode/cine-mirror/tree/main/.agents/skills/workflow-validate
Command: npx skills add https://github.com/kubrickcode/cine-mirror --skill workflow-validate-kubrickcode

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Before committing to a full implementation, teams often face uncertainty about whether a chosen technical approach will actually work. This Skill validates technical feasibility early using prototypes, tests, or research, preventing wasted effort on unworkable solutions. ## Core Features & Use Cases - Multiple Validation Methods: Choose from prototype implementation, Playwright UI verification, TDD, library exploration, documentation research, or user delegation based on the type of uncertainty. - Prototype Management: Create minimal working code in a __prototype__/ directory as proof of feasibility and reference for later phases. - Clear Status Assessment: Produce explicit Success, Partial Success, or Failure verdicts with actionable next steps documented in Korean. - Use Case: After analyzing a feature that depends on an unfamiliar third-party API, run this Skill to explore the library, build a small prototype, and confirm compatibility before writing the implementation plan. ## Quick Start Run the workflow-validate skill to verify the technical feasibility of the approach selected in my analysis document.

Frequently Asked Questions about workflow-validate

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I validate technical feasibility before implementation?▼

Run this Skill after completing an analysis document. It selects an appropriate validation method such as prototyping, TDD, or library exploration, executes it, and records a clear success or failure verdict with next steps in a validation report.

What validation methods does this workflow support?▼

It supports six methods: prototype implementation for core logic, Playwright verification for UI changes, TDD for complex algorithms, library exploration for external dependencies, documentation research for standards, and user delegation for environment-specific checks.

When should I use a prototype versus a TDD approach?▼

Use a prototype when core logic feasibility is uncertain and you need working code as proof. Use TDD when validating complex algorithms where edge cases and correctness matter more than a runnable demonstration.

What happens if the validation fails?▼

A failure verdict means the core approach is not feasible or has blocking issues without workarounds. The Skill directs you back to the analysis phase to re-evaluate alternatives rather than proceeding to planning.

Where is prototype code stored and what happens to it?▼

Prototype code is stored in a __prototype__/{feature-name}/ directory. It serves as a reference for later plan and execute phases, and the user manages its cleanup since prototypes are throwaway learning artifacts.