From emacs-skills
Looks up Emacs documentation for functions, variables, faces, key bindings, and apropos queries via emacsclient --eval. Summarizes results. Activated on /describe.
npx claudepluginhub xenodium/emacs-skillsThis skill uses the workspace's default tool permissions.
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.
Navigates and queries Emacs Info manuals for documentation on Emacs, Elisp, and GNU tools. Useful for Emacs users needing hypertext docs.
Highlights relevant regions in Emacs files via /highlight using emacsclient --eval. Applies temporary read-only overlays from context-derived files and line ranges; press q to exit and remove.
Proactively searches codebase documentation for functions, classes, APIs, and comments before task implementation using Bash tools like docs-search.sh.
Share bugs, ideas, or general feedback.
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.