From emacs-skills
Looks up Emacs documentation (function, variable, face, key binding, apropos) via emacsclient and summarizes findings. Activated by /describe.
How this skill is triggered — by the user, by Claude, or both
Slash command
/emacs-skills:describeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Look up Emacs documentation using `emacsclient --eval` and summarize the findings. The query is searched across multiple mechanisms (function, variable, face, key binding, and apropos) in one call, returning all findings as a single string.
Look up Emacs documentation using emacsclient --eval and summarize the findings. The query is searched across multiple mechanisms (function, variable, face, key binding, and apropos) in one call, returning all findings as a single string.
First, locate agent-skill-describe.el which lives alongside this skill file at skills/describe/agent-skill-describe.el in the emacs-skills plugin directory.
emacsclient --eval '
(progn
(load "/path/to/skills/describe/agent-skill-describe.el" nil t)
(agent-skill-describe :query "dired-mark"))'
agent-skill-describe.el relative to this skill file's directory.emacsclient --eval command via the Bash tool.npx claudepluginhub xenodium/emacs-skills --plugin emacs-skillsGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Resolves in-progress git merge or rebase conflicts by analyzing history, understanding intent, and preserving both changes where possible. Runs automated checks after resolution.