Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion devflow/cli/commands/skills_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ def _list_skills(
for skill in skills:
# Determine type based on naming convention
# Skills starting with "daf-" are user-invocable commands
# Others (gh-cli, git-cli, glab-cli) are reference documentation
# Others (gh-cli, glab-cli) are reference documentation
if skill.startswith("daf-"):
skill_type = "Command"
else:
Expand Down
2 changes: 1 addition & 1 deletion devflow/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3823,7 +3823,7 @@ def upgrade(

Skills installed:
- Slash commands: /daf-active, /daf-help, /daf-info, etc.
- Reference skills: daf-cli, gh-cli, git-cli, glab-cli
- Reference skills: daf-cli, gh-cli, glab-cli
- Hierarchical skills from organization config files

Items that are already up-to-date will be skipped.
Expand Down
2 changes: 1 addition & 1 deletion devflow/cli/skills_discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def _scan_skill_dir(skill_file: Path, skill_dir_name: str) -> Optional[tuple[str

return (str(skill_file.resolve()), description)

# 1. User-level skills: ~/.claude/skills/ (or $CLAUDE_CONFIG_DIR/skills/) - generic skills like daf-cli, git-cli
# 1. User-level skills: ~/.claude/skills/ (or $CLAUDE_CONFIG_DIR/skills/) - generic skills like daf-cli, gh-cli
if include_levels is None or "user" in include_levels:
user_skills_dir = get_claude_config_dir() / "skills"
if user_skills_dir.exists():
Expand Down
2 changes: 1 addition & 1 deletion devflow/cli_skills/daf-cli/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ DevAIFlow automatically discovers skills from multiple locations in a specific o

### Discovery Order (Load Order)

1. **User-level**: `~/.claude/skills/` - Generic skills (daf-cli, git-cli, gh-cli, etc.)
1. **User-level**: `~/.claude/skills/` - Generic skills (daf-cli, gh-cli, glab-cli, etc.)
2. **Workspace-level**: `<workspace>/.claude/skills/` - Workspace-specific tools
3. **Hierarchical**: `$DEVAIFLOW_HOME/.claude/skills/` - Organization-specific extensions
4. **Project-level**: `<project>/.claude/skills/` - Project-specific skills
Expand Down
3 changes: 1 addition & 2 deletions devflow/cli_skills/daf-workflow/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ daf git add-comment owner/repo#123 "Fixed authentication bug"
```

**Do NOT:**
- ❌ Create git commits (see **git-cli skill**)
- ❌ Create git commits (handled by `daf complete`)
- ❌ Create pull/merge requests (see **gh-cli** and **glab-cli skills**)
- ❌ Run user-facing `daf` commands (new, open, complete, config, init, upgrade)

Expand Down Expand Up @@ -378,7 +378,6 @@ daf investigate PROJ-12345 --goal "Custom investigation focus"

**See these skills for detailed documentation:**
- **daf-cli skill** - Command syntax, flags, and examples
- **git-cli skill** - Git command restrictions and rationale
- **gh-cli skill** - GitHub PR restrictions and workflow
- **glab-cli skill** - GitLab MR restrictions and workflow

Expand Down
1 change: 0 additions & 1 deletion devflow/cli_skills/gh-cli/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -630,6 +630,5 @@ git remote add upstream https://github.com/original-owner/repo.git
## See Also

- daf tool operations: See daf-cli skill
- Git operations: See git-cli skill
- GitLab MR creation: See glab-cli skill
- GitHub CLI documentation: https://cli.github.com/manual/
Loading
Loading