feat: unified skills picker for Claude and Codex slash commands#176
Open
jamesrochabrun wants to merge 1 commit intomainfrom
Open
feat: unified skills picker for Claude and Codex slash commands#176jamesrochabrun wants to merge 1 commit intomainfrom
jamesrochabrun wants to merge 1 commit intomainfrom
Conversation
Adds a / trigger in the session-start prompt editor that shows a dropdown
of all available skills and custom commands discovered from Claude and Codex
data directories. Feature is opt-in via a new Settings toggle.
Sources merged:
- ~/.claude/commands/*.md (Claude global commands)
- ~/.claude/skills/*/SKILL.md (Claude global skills)
- {project}/.claude/commands/*.md (Claude project commands)
- {project}/.claude/skills/*/SKILL.md (Claude project skills)
- ~/.codex/skills/*/SKILL.md (Codex global skills)
- ~/.codex/skills/.system/*/SKILL.md (Codex system skills)
Each skill row shows the name, description, and a provider+source badge
(e.g. "Claude · Project", "Codex · System"). Keyboard navigation with
↑↓ to move, Return/Tab to confirm, Escape to dismiss.
Also removes stale untracked main.swift that conflicted with @main on
AgentHubApp (entry point was never intended to change).
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.
Summary
HubSkillmodel abstracting both Claude commands/skills and Codex skills across global, project, and system sourcesSkillsServiceactor reads and merges all six directory sources, parses YAML frontmatter, and deduplicates by id/in the session-start prompt editor triggers a picker dropdown (opt-in via Settings → Features → Skills picker)/name, description, and a provider+source badge (e.g.Claude · Project,Codex · System)main.swiftthat was silently conflicting with@mainonAgentHubAppTest plan
/— picker appears listing discovered skills with provider/source badges/sw— list filters to skills matching "sw"/skill-nameinserted into prompt.claude/commands/— project-scoped commands appear with "Project" badge/no longer triggers picker~/.claude/commandsor~/.codex/skillsdirs — no crash, empty list handled gracefully🤖 Generated with Claude Code