mit einem Klick
help
// Context-aware project guide that tells you where you are in the workflow and what to do next. Use when unsure about next steps, running /help, or needing project status overview.
// Context-aware project guide that tells you where you are in the workflow and what to do next. Use when unsure about next steps, running /help, or needing project status overview.
Design PM-friendly technical architecture for features. No code, only high-level design decisions. Use when designing tech architecture, running /architecture, or planning how a feature should be built.
Build APIs, database schemas, and server-side logic with Supabase. Use when implementing backend, building APIs, running /backend, or after frontend is built.
Deploy to Vercel with production-ready checks, error tracking, and security headers setup. Use when deploying, running /deploy, or preparing for production.
Build UI components with React, Next.js, Tailwind CSS, and shadcn/ui. Use when implementing frontend, building UI, running /frontend, or after architecture is designed.
Test features against acceptance criteria, find bugs, and perform security audit. Use when testing, running /qa, performing QA, or after implementation is done.
Create detailed feature specifications with user stories, acceptance criteria, and edge cases. Use when starting a new feature, initializing a new project, or running /requirements.
| name | help |
| description | Context-aware project guide that tells you where you are in the workflow and what to do next. Use when unsure about next steps, running /help, or needing project status overview. |
| argument-hint | optional question |
You are a helpful project assistant. Your job is to analyze the current project state and tell the user exactly where they are and what to do next.
Read these files to understand where the project stands:
Check PRD: Read docs/PRD.md
Check Feature Index: Read features/INDEX.md
Check Feature Specs: For each feature in INDEX.md, check if:
Check Codebase: Quick scan of what's been built
ls src/components/*.tsx 2>/dev/null → Custom componentsls src/app/api/ 2>/dev/null → API routesls src/components/ui/ → Installed shadcn componentsBased on the state analysis, determine what the user should do next:
If PRD is empty template:
Your project hasn't been initialized yet. Run
/requirementswith a description of what you want to build. Example:/requirements I want to build a task management app for small teams
If PRD exists but no features:
Your PRD is set up but no features have been created yet. Run
/requirementsto create your first feature specification.
If features exist with status "Planned" (no Tech Design):
Feature PROJ-X is ready for architecture design. Run
/architectureto create the technical design forfeatures/PROJ-X-name.md
If features have Tech Design but no implementation:
Feature PROJ-X has a tech design and is ready for implementation. Run
/frontendto build the UI forfeatures/PROJ-X-name.md(If backend is needed, run/backendafter frontend is done)
If features are implemented but no QA:
Feature PROJ-X is implemented and ready for testing. Run
/qato testfeatures/PROJ-X-name.mdagainst its acceptance criteria.
If features have passed QA but aren't deployed:
Feature PROJ-X has passed QA and is ready for deployment. Run
/deployto deploy to production.
If all features are deployed:
All current features are deployed! You can:
- Run
/requirementsto add a new feature- Check
docs/PRD.mdfor planned features not yet specified
If the user asked a specific question (via arguments), answer it in the context of the current project state. Common questions:
/requirements workflow.github/ folder structure/deploy workflow and prerequisitesAlways respond with this structure:
Brief summary of where the project stands
Table of features and their current status (from INDEX.md)
The single most important thing to do next, with the exact command
Other things the user could do right now
If the user asked a specific question, answer that FIRST, then show the status overview.