Install
$ agentstack add skill-maxstudiocoder-vibe-coding-workflow-vibe-coding-workflow ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Vibe Coding Workflow
Use this skill to turn a vague or complex coding goal into a controlled engineering workflow: requirements, design, task split, implementation, and verification. Prefer this workflow when a single prompt would create too much ambiguity, context pressure, or unreviewable code.
Core Rules
- Do not start implementation until the goal, scope, and success criteria are clear enough to test.
- Keep project knowledge in files, not only in chat. Use
doc/for planning artifacts and update existing project state files when present. - Make every phase produce an artifact that the next phase consumes.
- Keep tasks small enough for one agent pass. A task should have explicit files, steps, and checks.
- Treat AI output as a draft until verified with diffs, tests, lint, type checks, and runtime checks.
- Pause and ask the user when a requirement, product decision, data contract, destructive action, or external dependency is unclear.
Workflow
1. Stabilize The Project
Inspect the repository before planning. Identify the language, framework, package manager, test commands, lint commands, and existing conventions. If the project is new, choose conservative defaults and prefer tooling the user already knows.
For Python projects, prefer uv when no project-specific tool is established. Use it for virtual environment, dependency, and command management.
Create planning directories only when needed:
doc/
proposal.md
high-level-design.md
detailed-design.md
prompt.md
tasks/
progress.md
2. Clarify Requirements
Interview the user or the existing codebase before writing code. Convert rough intent into doc/proposal.md.
Include:
- Goal and non-goals
- Target users or runtime context
- Inputs, outputs, and external dependencies
- Functional requirements
- Constraints and assumptions
- Success criteria and acceptance checks
- Open questions
If important answers are missing, ask targeted questions before moving to design.
3. Design Before Implementation
Generate or update:
doc/high-level-design.mdfor architecture, modules, data flow, storage, dependencies, and major tradeoffs.doc/detailed-design.mdfor module responsibilities, interfaces, file layout, algorithms, errors, tests, and edge cases.
Require the design to call out risk, ambiguity, and alternatives. Do not hide uncertainty in confident prose.
4. Split Tasks
Break doc/detailed-design.md into independent task files:
doc/tasks/.md
doc/tasks/progress.md
Each task file must include:
- Objective
- Input docs
- Files expected to change
- Implementation steps
- Tests and checks
- Definition of done
- Dependencies on other tasks
progress.md must be the shared source of truth. Use checklists for task state and keep notes short.
5. Generate The Control Prompt
When the project is ready for agentic implementation, generate doc/prompt.md. It should define:
- Main agent role: coordinate, track progress, review diffs, run checks, update
progress.md. - Sub-agent role: implement exactly one task or module, add tests, report blockers, update task status.
- Required context files: proposal, designs, task files, progress.
- Guardrails: ask on ambiguity, avoid unrelated refactors, do not skip tests, do not overwrite user work.
- Verification commands and final reporting format.
Load detailed templates from references/prompt-templates.md when drafting prompts or planning docs.
6. Implement In Small Passes
Work from doc/tasks/progress.md, one task or tightly related group at a time. Before edits, inspect the relevant files and confirm the task still matches the codebase.
For each implementation pass:
- Select the next unblocked task.
- Read the task file and dependent design sections.
- Implement only the scoped change.
- Add or update focused tests.
- Run the task's checks.
- Inspect
git diff. - Update
progress.mdwith status, commands run, failures, and next steps.
Use sub-agents only when the task boundaries are clean enough that their work can be reviewed independently.
7. Verify And Close
Before calling the work done:
- Run the relevant test suite.
- Run lint and type checks when available.
- Run a smoke test or dev server for user-facing behavior when applicable.
- Inspect the final diff for unrelated edits, generated clutter, secrets, and accidental rewrites.
- Update project state or session logs when the session produced durable context.
- Report what changed, what was verified, and remaining risks.
Templates
Use references/prompt-templates.md for reusable prompts and document skeletons:
- Requirements discussion prompt
- Proposal template
- High-level design template
- Detailed design template
- Task file template
- Progress file template
- Main-agent prompt
- Sub-agent prompt
- Verification checklist
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: MaxStudiocoder
- Source: MaxStudiocoder/vibe-coding-workflow
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.