AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Vibe Coding Workflow

skill-maxstudiocoder-vibe-coding-workflow-vibe-coding-workflow · by MaxStudiocoder

Run a document-driven Vibe Coding workflow for complex AI-assisted software projects. Use when the user wants to build or refactor a non-trivial project with Codex, Claude Code, Cursor, or another coding agent; asks for vibe coding; wants requirements, design docs, task decomposition, multi-agent implementation, progress tracking, or verification loops; or needs to turn a rough product idea into…

No reviews yet
0 installs
32 views
0.0% view→install

Install

$ agentstack add skill-maxstudiocoder-vibe-coding-workflow-vibe-coding-workflow

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-maxstudiocoder-vibe-coding-workflow-vibe-coding-workflow)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Vibe Coding Workflow? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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.md for architecture, modules, data flow, storage, dependencies, and major tradeoffs.
  • doc/detailed-design.md for 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:

  1. Select the next unblocked task.
  2. Read the task file and dependent design sections.
  3. Implement only the scoped change.
  4. Add or update focused tests.
  5. Run the task's checks.
  6. Inspect git diff.
  7. Update progress.md with 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.