None - v2.7.x maintains full backward compatibility.
- Orchestration Enforcement: Default enforcement for meta-agents
- Requirements Traceability: 91.5% implementation coverage
- Commander's Intent Framework: WHY/WHAT/DONE pattern for tasks
- Enhanced Support Infrastructure: Feedback and issue templates
-
Update to latest version:
git pull origin main ./tm migrate --apply
-
Enable new features (optional):
# Enable orchestration enforcement ./tm config --enforce-orchestration true # Set enforcement level ./tm config --enforcement-level standard
-
Verify installation:
./tm --version # Should show 2.7.1 ./tm validate-orchestration
The database schema has evolved. Run migration:
./tm migrate --applyNew configuration options available:
enforce_orchestration: Enable/disable orchestration checksenforcement_level: strict/standard/advisory
add()method now supports Commander's Intent via --context- New commands:
validate-orchestration,fix-orchestration
Before any migration:
cp -r .task-orchestrator .task-orchestrator.backupTasks automatically migrate on first access. No manual intervention needed.
All task history is preserved during migration.
Database locked error
# Solution: Stop any running tm watch processes
pkill -f "tm watch"Migration fails
# Solution: Restore backup and retry
rm -rf .task-orchestrator
mv .task-orchestrator.backup .task-orchestrator
./tm migrate --checkVersion mismatch
# Solution: Ensure using latest tm script
chmod +x tm
./tm --versionTo rollback to previous version:
- Restore database backup
- Checkout previous version
- No schema downgrades needed
For migration assistance:
- Check troubleshooting guide:
docs/guides/troubleshooting.md - Report issues:
docs/support/templates/issue.md - Request features:
docs/support/templates/feedback.md
Last updated: September 3, 2025 for v2.7.2