You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add first-class support or presets for syncing reusable slash-command prompt files across tools that already support this workflow:
Cursor: Markdown commands under .cursor/commands/ (and commonly user-level ~/.cursor/commands/) become /command-name entries.
Claude Code: existing .claude/commands/*.md and ~/.claude/commands/*.md files still work; current Claude Code docs say custom commands have been merged into skills, and commands keep working with the same frontmatter. Skills are the preferred richer format, but command files remain a compatibility target.
Codex CLI / IDE extension: custom prompts are deprecated in favor of skills, but still supported as Markdown prompt files under ~/.codex/prompts/, invoked as /prompts:<name>. Codex scans top-level Markdown files in that folder.
Today this is technically possible with extras, but users have to know every target path and each tool's exact behavior. A built-in command/prompt preset would make this much less error-prone.
Why this matters
A common workflow is a small command such as commit-smart.md:
inspect recent commit style
inspect staged diff (or unstaged diff if nothing is staged)
generate a commit message
run git commit with that message
This is exactly the kind of lightweight workflow that users want available as /commit-smart in Cursor and Claude Code, and as /prompts:commit-smart in Codex. It is too small to require a full skill directory in every tool, but valuable enough to sync across machines and agents.
Current skillshare behavior
extras already supports arbitrary resources, for example:
claude: ~/.claude/commands globally, .claude/commands in project mode
cursor: .cursor/commands in project mode, and optionally ~/.cursor/commands globally if the project wants to support the user-level path
codex: ~/.codex/prompts globally; document that Codex invokes these as /prompts:<name> and that skills are preferred for repo-shared workflows
Option B: extras presets / target aliases
Keep extras as the implementation, but let users specify tool targets instead of raw paths:
skillshare extras init commands --target claude --target cursor --target codex
This would expand to the right target paths and attach target-specific notes/warnings. Later, the same mechanism could support format: toml or similar for Gemini command conversion (#136).
Acceptance criteria
A user can sync one Markdown command source to Claude Code, Cursor, and Codex without manually remembering all three path conventions.
Docs explain the invocation differences:
Cursor/Claude: /command-name
Codex: /prompts:command-name
Docs explain Codex's current deprecation status: custom prompts still work, but skills are recommended for reusable instructions that should be shared through a repo or invoked implicitly.
Project vs global behavior is explicit, especially because Codex prompts are currently local Codex-home files rather than project-discovered files.
The implementation does not break existing extras configs.
Related issues
support slash command sync #134 asked for slash command sync, but it was closed after assuming Codex intended to remove all slash command functionality. Current docs show the more precise state: Codex custom prompts are deprecated in favor of skills, but still supported and invokable as /prompts:<name>.
Summary
Add first-class support or presets for syncing reusable slash-command prompt files across tools that already support this workflow:
.cursor/commands/(and commonly user-level~/.cursor/commands/) become/command-nameentries..claude/commands/*.mdand~/.claude/commands/*.mdfiles still work; current Claude Code docs say custom commands have been merged into skills, and commands keep working with the same frontmatter. Skills are the preferred richer format, but command files remain a compatibility target.~/.codex/prompts/, invoked as/prompts:<name>. Codex scans top-level Markdown files in that folder.Today this is technically possible with
extras, but users have to know every target path and each tool's exact behavior. A built-in command/prompt preset would make this much less error-prone.Why this matters
A common workflow is a small command such as
commit-smart.md:git commitwith that messageThis is exactly the kind of lightweight workflow that users want available as
/commit-smartin Cursor and Claude Code, and as/prompts:commit-smartin Codex. It is too small to require a full skill directory in every tool, but valuable enough to sync across machines and agents.Current skillshare behavior
extrasalready supports arbitrary resources, for example:This works as a low-level escape hatch, but it has several rough edges:
prompts, notcommands, and invokes it as/prompts:<name>.Proposal
Add one of these product surfaces:
Option A: first-class
commandsresourceSupport commands similarly to skills/agents, with target-aware paths and documentation:
Target mapping could start conservative:
claude:~/.claude/commandsglobally,.claude/commandsin project modecursor:.cursor/commandsin project mode, and optionally~/.cursor/commandsglobally if the project wants to support the user-level pathcodex:~/.codex/promptsglobally; document that Codex invokes these as/prompts:<name>and that skills are preferred for repo-shared workflowsOption B: extras presets / target aliases
Keep
extrasas the implementation, but let users specify tool targets instead of raw paths:This would expand to the right target paths and attach target-specific notes/warnings. Later, the same mechanism could support
format: tomlor similar for Gemini command conversion (#136).Acceptance criteria
/command-name/prompts:command-nameextrasconfigs.Related issues
/prompts:<name>.