Everyday patterns
Recipes for common days with VibeBar. Each matches how the app works today.
Pre-PR security pass
Goal: Catch issues before review without leaving your flow.
- Select the project. Open Security Audit.
- Triage critical and high findings. Copy fix prompt for each.
- Paste in Cursor. Implement fixes.
Ctrl+Shift+T→ run your test script in Smart Terminal.- Re-run the audit. Accept risk on findings you are knowingly shipping.
- Right-click the GitHub badge → copy git diff prompt for a final review message.
- Pin key items in Session Hub. Copy handoff if someone else picks up the PR.
Commit .vibebar-audit.json rule toggles if your team shares them.
Debug a failing test
Goal: Turn terminal output into a useful Cursor prompt.
- Open Smart Terminal (
Ctrl+Shift+T). - Run the failing command (try Project commands).
- When the dock shows an issue, Copy fix prompt.
- Paste in Cursor. Apply the fix.
- Re-run. Mark resolved when green.
- Optional: Save to note for your PR checklist.
Report a UI bug
Goal: Give the model something visual.
- Reproduce the bug on screen.
- Snip to AI Context over the affected area.
- Paste the copied prompt into Cursor.
- Add numbered reproduction steps in the same chat.
- Pin the session entry if the fix takes multiple rounds.
Hand off to tomorrow-you
Goal: One pasteable bundle for the next session.
- During the day, pin prompts, audit copies, and terminal issues in Session Hub.
- Open Session Hub → Sync project context to check
AGENTS.mdand Cursor rules. - End of day: Copy handoff (requires pins).
- Start tomorrow's chat by pasting the handoff.
Handoffs include an AGENTS.md excerpt when the file exists.
Set up a new repo
Goal: Stand up assistant context quickly.
- Finish onboarding: project → Cursor path → create AI Context folder.
- Open Code Sync. Mirror
src/or key packages intoAI Context/. - Run Security Audit once for a baseline.
- Copy a Context prompt from the library to draft or refine
AGENTS.md. - Session Hub → confirm AI docs section looks right.
Dependency upgrade day
Goal: Catch supply chain and static issues after updates.
- Enable npm audit in Security Audit.
- Rescan. Triage new advisories.
- Copy fix prompts where code must change.
- Batch test in Smart Terminal between upgrades.
- Export SARIF if your pipeline ingests it.
Work in one package of a monorepo
Goal: Keep context scoped to one package.
- Switch project to the package root, not always the monorepo root.
- Context Packer → Changed files or Entry points.
- Session Hub → Pack changed for quick copies.
- Confirm Prompt Library stack summary matches that package.
When to reach for something else
| Situation | Try |
|---|---|
| Runtime-only bug | Reproduce in Smart Terminal, copy fix prompt with stack trace |
| Architecture decision | Code Review or Refactor prompts + Context Packer for design docs |
| Team policy | Commit audit rule toggles; document accepted risks in Notes |