Conversation
- Add test_investigate_command.py with full test suite - Fix JiraClient import path in investigate command tests - Update AGENTS.md and daf-workflow skill documentation - Enhance investigate_command.py implementation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
14 tasks
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.
GitHub Issue: #363
Description
Added support for creating investigation sessions directly from issue tracker tickets (JIRA, GitHub, GitLab). Users can now run
daf investigate <issue-key>to automatically fetch issue details and create a read-only investigation session with the issue summary as the goal and issue description included in the initial prompt.Key changes:
create_investigation_from_issue()function that auto-detects backend (JIRA/GitHub/GitLab) from issue key format and fetches ticket detailsissue_keyargument todaf investigateCLI command (supports formats:PROJ-12345,owner/repo#123,#123)investigate-PROJ-12345,investigate-issue-123)daf-workflowskill with comprehensive examples and usage guidanceBenefits:
--goalflag if neededAssisted-by: Claude
Testing
Steps to test
daf investigate PROJ-12345 --path /path/to/projectdaf investigate owner/repo#123 --path /path/to/projectdaf investigate #123 --path /path/to/project(requires git remote detection)investigate-<issue-key>daf investigate PROJ-12345 --goal "Custom goal"daf investigate PROJ-99999pytest tests/test_investigate_command.py::TestInvestigateFromIssue -vScenarios tested
--goalflag--nameflagdaf investigate --goalworkflowtests/test_investigate_command.pyDeployment considerations