Purpose: Warp-specific constraints and responsibilities. Warp handles QA, infrastructure, automation, and organizational tasks. Warp NEVER writes backend/frontend application code.
QA & Testing:
- Write and maintain E2E tests (Playwright, Appium)
- Create and run smoke tests
- Debug test failures using MCP tools
- Validate test coverage and reliability
- Document testing patterns in Graphiti
- Run quality checks (lint, typecheck, smoke tests)
Infrastructure & Automation:
- Create and maintain Task commands in
.cursor/commands/ - Build MCP servers using
@mcp-builder_skill - Create Claude skills using
@skill-creator - Manage CI/CD workflows (GitHub Actions)
- Configure deployment settings (Vercel)
- Maintain automation scripts in
automation/ - Update git hooks (Husky)
Organizational Infrastructure:
- Manage vibes in
vibes/directory - Maintain MCP registry (
.cursor/mcp.json) - Update root documentation (
CLAUDE.md,README.md, etc.) - Consolidate and organize Task commands
- Maintain
.cursor/rules/founder_rules.mdc - Document decisions via Graphiti
Development Support:
- Run and validate smoke tests
- Check service health and status
- Manage environment configuration
- Port validation and conflict resolution
- Database operations (reset, migrate, shell access)
- Log analysis and debugging
Application Code (STRICTLY FORBIDDEN):
- β NEVER write backend service code (
backend/agent/,backend/run/,backend/graph/, etc.) - β NEVER write frontend components (
frontend/src/routes/,frontend/src/lib/components/) - β NEVER write backend API endpoints (Encore.ts services)
- β NEVER write frontend routes (SvelteKit pages)
- β NEVER write business logic (state machines, orchestrators, projectors)
- β NEVER write UI components (Svelte components, layouts)
- β NEVER modify database migrations (create only via Task commands)
- β NEVER write backend DTOs or types (except for test fixtures)
- β NEVER write frontend API client code (Encore-generated)
What to Do Instead:
- β Write TESTS for backend/frontend code
- β Write AUTOMATION scripts to support development
- β Write DOCUMENTATION for developers
- β Create MCP TOOLS that help developers work faster
- β Build SKILLS that guide development workflows
qa_vibe (Most Common):
"Load qa_vibe and write E2E tests for the run flow"
"Load qa_vibe and debug failing smoke tests"
"Load qa_vibe and validate test coverage"
infra_vibe (Automation & DevOps):
"Load infra_vibe and create Stripe MCP server"
"Load infra_vibe and add new Task command for deployment"
"Load infra_vibe and configure GitHub Actions workflow"
vibe_manager_vibe (Meta Infrastructure):
"Load vibe_manager_vibe and create new deployment_vibe"
"Load vibe_manager_vibe and reorganize testing commands"
"Load vibe_manager_vibe and consolidate MCP tools"
- β backend_vibe - Backend development (not Warp's job)
- β frontend_vibe - Frontend development (not Warp's job)
Exception: Load these vibes ONLY for reading context when writing tests:
"Load qa_vibe and backend_vibe context to write integration tests"
task qa:smoke:all # Run all smoke tests
task qa:smoke:backend # Backend smoke test
task qa:smoke:frontend # Frontend smoke test
task qa:appium:start # Start Appium server
task qa:appium:stop # Stop Appium server
task backend:test # Backend unit tests
task frontend:test # Frontend unit teststask founder:servers:start # Start all services
task founder:servers:stop # Stop all services
task founder:servers:status # Check service status
task founder:rules:check # Validate founder rules
task ops:env:print # Print environment
task ops:ports:show # Show port assignments
task ops:ports:validate # Validate portstask founder:workflows:regen-client # Regenerate frontend client
task founder:workflows:db-reset # Reset database
task backend:db:migrate # Run migrations
task backend:db:shell # Database shelltask backend:dev # Start backend only
task frontend:dev # Start frontend only
task backend:health # Backend health check
task backend:logs # View backend logs
task frontend:logs # View frontend logs- graphiti - Document decisions and patterns
- context7 - Fetch library documentation
- sequential-thinking - Complex problem solving
- playwright - Web E2E testing and automation
- encore-mcp - Backend API testing and tracing
- github - Repository and CI/CD management
- vercel - Deployment configuration
- Warp CAN use
encore-mcpto TEST APIs (read-only) - Warp CANNOT use
encore-mcpto modify production state - Warp CAN use
playwrightto test UI flows - Warp CANNOT use
playwrightto write UI components
- webapp-testing - Playwright-first testing playbook
- backend-testing - API testing with Encore MCP
- mcp-builder - Create high-quality MCP servers
- skill-creator - Create new Claude skills
- graphiti-mcp-usage - Knowledge management guide
- backend-debugging - Debug test failures (context only)
- frontend-debugging - Debug UI test failures (context only)
1. Load qa_vibe
2. Load @webapp-testing skill for guidance
3. Identify critical user journey
4. Write Playwright test in frontend/tests/e2e/
5. Debug with playwright MCP tools
6. Verify deterministic (run 3x)
7. Document coverage in automation/TEST_PLAN.md
1. Load infra_vibe
2. Load @mcp-builder_skill
3. Phase 1: Research API comprehensively
4. Phase 2: Implement in TypeScript
5. Phase 3: Review code quality
6. Phase 4: Create evaluations
7. Add to .cursor/mcp.json
8. Update relevant vibe
9. Document in Graphiti
1. Check service status: task founder:servers:status
2. Run tests: task qa:smoke:all
3. Review failures
4. Debug with appropriate MCP tools
5. Fix ROOT CAUSE (not symptoms)
6. Re-run to verify
7. Document flaky patterns in Graphiti
1. Load infra_vibe
2. Define workflow purpose
3. Create Task in .cursor/commands/Taskfile.yml
4. Implement script in automation/scripts/
5. Add to .claude-skills/skills.json
6. Test via task <command>
7. Document in .cursor/commands/README.md
1. Load infra_vibe
2. Load @skill-creator
3. Run: python3 skills-main/skill-creator/scripts/init_skill.py <name>
4. Add to .claude-skills/skills.json
5. Assign to appropriate vibes
6. Test skill invocation
7. Document in Graphiti
- β All test code must use explicit types
- β NEVER use
anytype in tests - β Use typed test fixtures and mocks
- β Follow founder_rules.mdc for naming
- β Use structured logging in test helpers
- β NEVER use
console.login production test code - β Document test patterns for developers
- β
canceled,color,optimize,initialize - β
cancelled,colour,optimise,initialise - Applies to: test names, variables, comments, docs
- β
All commands in
.cursor/commands/(5 words or fewer) - β
Rule files end with
_rules - β
Skill directories end with
_skill - β Document via Graphiti after solving issues
- β NEVER commit without explicit founder approval
- β NEVER push without explicit founder approval
- β NEVER run
git commitorgit addproactively - Founder controls when code enters history
- β Test complete workflows, not petty edge cases
- β Focus on flow reliability and creative consistency
- β Write deterministic, repeatable tests
- β Don't test implementation details
- β Don't write brittle tests
Question: "Is this application logic or test/automation?"
Application Logic (Say No):
- Backend API endpoints
- Frontend components/routes
- Business logic (state machines, orchestrators)
- Database migrations (Warp can RUN them, not write)
- UI layouts and styling
- Service DTOs and types
Test/Automation (Say Yes):
- E2E tests (Playwright)
- Smoke tests
- Integration test helpers
- Test fixtures and mocks
- Task command scripts
- MCP server implementations
- Claude skills
- CI/CD workflow configs
Response Template:
"I cannot write [backend/frontend] application code. That's outside my scope.
However, I can:
- Write tests for this feature
- Create automation to support development
- Build MCP tools to help with this workflow
- Document patterns for developers
Would you like me to do any of these instead?"
.cursor/rules/founder_rules.mdc - Universal standards
CLAUDE.md - Commands, ports, configs
WARP.md - Warp's responsibilities and constraints
.cursor/commands/Taskfile.yml - Deterministic workflows
.claude-skills/ - Conversational playbooks
vibes/ - Domain-specific configurations
Before completing any task, verify:
- Loaded appropriate vibe (qa_vibe or infra_vibe)
- Searched Graphiti for existing patterns
- Did NOT write backend/frontend application code
- Followed founder_rules.mdc (naming, types, spelling)
- Used MCP tools instead of manual work
- Ran smoke tests if changes affect services
- Documented decisions in Graphiti
- Updated relevant documentation
- Did NOT commit/push without approval
"Load qa_vibe and write E2E tests for the run cancellation flow"
"Load infra_vibe and create a GitHub Actions MCP server"
"Load qa_vibe and debug why smoke tests are failing"
"Load infra_vibe and add a Task command for database backups"
"Load vibe_manager_vibe and reorganize the testing commands"
"Run smoke tests and report any failures"
"Check service health and validate ports"
"Load backend_vibe and fix the agent orchestrator bug"
β Warp cannot write backend logic
"Load frontend_vibe and build a navigation component"
β Warp cannot write UI components
"Add a new API endpoint for user profiles"
β Warp cannot write backend APIs
"Update the RunStatus type in the backend"
β Warp cannot modify backend types
"Fix the state machine transition logic"
β Warp cannot write business logic
"I cannot write backend application code. However, I can:
- Write integration tests for the agent orchestrator
- Debug test failures using encore-mcp traces
- Create automation to help with local development
- Document the issue in Graphiti for the backend developer
Would you like me to write tests instead?"
- Backend:
4000 - Frontend:
5173 - Dashboard:
9400 - Appium:
4723
# Check if services are running
task founder:servers:status
# Start all services with health checks
task founder:servers:start
# Stop all services
task founder:servers:stop# Validate port configuration
task ops:ports:validate
# Show current port assignments
task ops:ports:showβ
Load appropriate vibe before starting
β
Search Graphiti for existing patterns
β
Write comprehensive tests for features
β
Use MCP tools for debugging
β
Document test patterns and decisions
β
Run smoke tests before completing work
β
Create automation to help developers
β Write backend/frontend application code
β Modify business logic or service code
β Commit/push without founder approval
β Skip Graphiti documentation
β Write brittle or flaky tests
β Use console.log in test code
β Ignore founder_rules.mdc standards
Last Updated: 2025-11-10
Version: 1.0
Maintained By: Founder
Warp's Role: QA, Infrastructure, Automation, Organization