itdove/devaiflow#330: Feature orchestration: Multi-session workflow with integrated verification#334
Conversation
- Implement FeatureManager and verification system for session coordination - Extend complete command to detect feature context and skip individual PRs - Add experimental documentation for feature orchestration architecture - Reorganize issue-tracker docs into docs/developer/ directory 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
63 tasks
- Detect backend (JIRA/GitHub) from parent issue key format - Apply backend-specific sync filters with safe defaults when unconfigured - Resolve GitHub @me assignee to actual username via gh CLI - Update examples to use experimental flag (-e) for feature command 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add auto-advance option to automatically open next session in feature sequence - Implement feature handoff detection when exporting incomplete feature sessions - Update complete command to check auto-advance flag and skip confirmation prompts - Add team collaboration support for marking exported sessions as external Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR introduces feature orchestration capabilities to enable multi-session workflows with integrated verification in DevAIFlow. This enhancement allows developers to manage complex features that span multiple work sessions and repositories, with automated validation and progress tracking.
Key Changes:
New orchestration system (
devflow/orchestration/):feature.py: Core feature orchestration logic for managing multi-session workflowsparent_discovery.py: Automatic discovery of parent feature contextsstorage.py: Persistent storage for feature state and session relationshipsNew verification framework (
devflow/verification/):artifact_validator.py: Validates artifacts produced during feature developmentcriteria_checker.py: Checks completion criteria and readiness gatesreport_generator.py: Generates comprehensive verification reportstest_runner.py: Orchestrates test execution across sessionsEnhanced CLI commands:
feature_command.pyto support feature lifecycle managementcomplete_command.pyto integrate verification before completionopen_command.pyto handle feature context initializationClient integrations:
config/models.pyfor feature orchestration configurationDocumentation:
Assisted-by: Claude
Testing
Steps to test
daf feature create --name "test-feature" --description "Multi-session test"daf open --feature test-feature --goal "Implement component A"daf verifyto check artifacts and criteriadaf complete(should trigger integrated verification)daf open --feature test-feature --goal "Implement component B"daf feature complete test-feature(should verify all child sessions)Scenarios tested
Deployment considerations
devflow/orchestration/storage.pyfor schema requirements)feature_orchestration.enabled: trueto their config if they want to opt into this experimental feature