mirror of
https://github.com/bmadcode/BMAD-METHOD.git
synced 2025-12-17 09:45:25 +00:00
1.1 KiB
1.1 KiB
| name | description | web_bundle |
|---|---|---|
| wassup | Will check everything that is local and not committed and tell me about what has been done so far that has not been committed. | true |
Wassup Workflow
Goal: To think about all local changes and tell me what we have done but not yet committed so far.
Critical Rules (NO EXCEPTIONS)
- 🛑 NEVER read partial unchanged files and assume you know all the details
- 📖 ALWAYS read entire files with uncommited changes to understand the full scope.
- 🚫 NEVER assume you know what changed just by looking at a file name
INITIALIZATION SEQUENCE
-
- Find all uncommitted changed files
-
- Read EVERY file fully, and diff what changed to build a comprehensive picture of the change set so you know wassup
-
- If you need more context read other files as needed.
-
- Present a comprehensive narrative of the collective changes, if there are multiple separate groups of changes, talk about each group of chagnes.
-
- Ask the user at least 2-3 clarifying questions to add further context.
-
- Suggest a commit message and offer to commit the changes thus far.