Conversation
Implements #337: - Add 'daf skills' command to list all available skills grouped by level - Support inspect mode ('daf skills <skill-name>') for detailed view - Add JSON output support via --json flag - Skills sorted by name with descriptions from frontmatter - Inspect mode shows location, file path, frontmatter, and content preview - Handle skills at multiple levels with precedence warnings - Update daf-cli and daf-help skill documentation - Add comprehensive test coverage (14 tests, all passing) - All 3629 existing tests still passing Co-Authored-By: Claude Sonnet 4.5 <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.
Jira Issue: #337
Description
This PR introduces a new
daf skillscommand that enables users to discover and inspect available skills within the DevAIFlow CLI. The command provides two modes of operation:daf skillsdisplays all available skills with brief descriptionsdaf skills <skill-name>shows detailed information about a specific skill, including its full documentation and usage instructionsTechnical changes:
SkillsDiscoveryCommandclass indevflow/cli/commands/skills_discovery_command.pyto handle skill discovery and inspection logicdevflow/cli/main.pydaf-clianddaf-helpskill documentation to reflect the new commandtests/test_skills_discovery_command.pyThis enhancement improves developer experience by making it easier to discover and understand available DevAIFlow skills without needing to reference external documentation.
Assisted-by: Claude
Testing
Steps to test
daf skillsto list all available skills and verify the output shows skill names with descriptionsdaf skills daf-clito inspect a specific skill and verify detailed documentation is displayeddaf skills non-existent-skillto verify appropriate error handling for invalid skill namesdaf --helpoutputScenarios tested
Deployment considerations