What is a Mission?
A mission is RUSVEL’s daily planning system, powered by the Forge engine. It reads your active goals, checks the state of all departments, and generates a prioritized task list for the day.
The workflow is: set goals > generate daily plan > execute > review progress.
Set Goals
Goals are high-level objectives with a timeframe. They drive what the daily plan prioritizes.
Via the Web UI
- Navigate to the Forge department from the sidebar
- Click the “Set new goal” quick action
- The Forge agent will ask for context and help you define the goal
Via the CLI
# Add a goal with default month timeframe
cargo run -- forge mission goal add "Launch MVP"
# Add a goal with specific timeframe and description
cargo run -- forge mission goal add "Get 10 beta users" \
--description "Recruit beta testers from HN and Reddit" \
--timeframe week
# List all goals
cargo run -- forge mission goals
Output from goals:
ID TITLE TIMEFRAME STATUS PROGRESS
----------------------------------------------------------------------------------------------------
a1b2c3d4-... Launch MVP Month Active 0%
e5f6g7h8-... Get 10 beta users Week Active 0%
Goal Timeframes
| Timeframe | Planning Horizon |
|---|---|
day | Today only |
week | This week |
month | This month |
quarter | This quarter |
Generate a Daily Plan
The daily plan is an AI-generated prioritized task list based on your goals and current state.
Via the Web UI
- Open the Forge department
- Click “Daily plan” quick action
- The agent generates tasks with priorities and focus areas
Via the CLI
cargo run -- forge mission today
Output:
Generating daily plan...
Daily Plan -- 2026-03-23
==================================================
1. [High] Finalize API endpoint documentation
2. [High] Write integration tests for auth flow
3. [Medium] Draft landing page copy
4. [Medium] Set up CI pipeline
5. [Low] Review dependency updates
Focus areas:
- Ship the authentication feature
- Prepare for beta launch
Notes: Focus on high-priority items first. The auth flow is blocking beta signups.
Review Progress
Periodic reviews summarize what was accomplished and identify blockers.
Via the CLI
# Weekly review (default)
cargo run -- forge mission review
# Monthly review
cargo run -- forge mission review --period month
# Quarterly review
cargo run -- forge mission review --period quarter
Output:
Generating Week review...
Review (Week)
==================================================
Accomplishments:
- Completed API authentication flow
- Deployed staging environment
- Drafted 3 blog posts
Blockers:
- Waiting on SSL certificate for production
- Need feedback on pricing page design
Insights:
- Code velocity increased 40% after adding test automation
- Content pipeline is 2 days behind schedule
Next actions:
- Follow up on SSL certificate
- Schedule design review for pricing page
Explore Other Departments
With your mission set, explore the 14 department apps. Each has its own AI agent specialized for that domain:
- Code – implement features, analyze code, run tests
- Content – write blog posts, adapt for social platforms
- Harvest – find freelance opportunities, draft proposals
- GTM – manage CRM, send outreach, track deals
See the full list in Departments.