Skip to content

v3.0.0 — Autonomous Development Orchestrator

Choose a tag to compare

@egorfedorov egorfedorov released this 04 Mar 09:12
· 2 commits to main since this release
Immutable release. Only release title and notes can be modified.

What's New — 22 new tools (72→94)

SoloBoard evolves from a task tracker into an autonomous development orchestrator. Full pipeline: coding → review → QA → deployment, all managed locally.

Tech Lead Tools

  • lead_distribute — analyze TODO tasks, distribute to agents by dependencies, complexity, and skills
  • lead_status — dashboard: all agents, tasks, pipeline progress, recent reviews/QA/deploys
  • lead_reassign — reassign a task with full handoff context
  • lead_pipeline — view and manage the full pipeline: coding → review → QA → deploy

Automated Code Review

  • review_run — analyze changed files for TODOs, type errors, security issues, console statements
  • review_findings — view detailed findings filtered by severity
  • review_respond — respond to findings: fixed / wont_fix / acknowledged

QA & Testing

  • qa_run — run tests, parse results, auto-create bug tasks for failures
  • qa_report — view QA results with pass/fail/skip counts
  • qa_rerun — re-run tests after fixes, compare with previous run
  • qa_coverage — check test file coverage for changed files

DevOps & Deployment

  • deploy_check — readiness check: all tasks done, reviewed, QA passed
  • deploy_run — execute deployment command (approval required for production)
  • deploy_status — deployment history and status

Human-in-the-Loop Approvals

  • approval_request — create approval request for human review
  • approval_list — list pending approval requests
  • approval_resolve — approve or reject with reason

Team Management

  • team_add — add team member with role and skills
  • team_list — list members with stats and current assignments
  • team_assign — assign task to a team member
  • team_workload — workload distribution view with chart
  • team_suggest_assignment — auto-suggest best member based on skills and availability

VSCode Extension

New vscode-extension/ package:

  • TreeView board in sidebar (TODO/DOING/DONE columns)
  • Team panel showing members and their tasks
  • FileSystemWatcher for live updates on .kanban/ changes
  • Refresh command

New Data

  • .kanban/approvals/ — approval request files
  • .kanban/reviews/ — code review result files
  • .kanban/qa/ — QA test result files
  • .kanban/deployments/ — deployment record files
  • .kanban/team/ — team member files
  • Tasks now have assignedMemberId, reviewStatus, qaStatus, deploymentId
  • Config supports teamMode, roles, deployCommand, autoReview, autoQA, autoDeploy

Roles

Built-in roles: tech_lead, code_reviewer, qa_agent, devops_agent, developer


Full changelog: 44 → 94 tools across v1.5, v2.0, and v3.0