describe

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Look up Emacs documentation

查询Emacs文档

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.
sh
emacsclient --eval '
(progn
  (load "/path/to/skills/describe/agent-skill-describe.el" nil t)
  (agent-skill-describe :query "dired-mark"))'
使用
emacsclient --eval
查询Emacs文档并对查询结果进行总结。单次调用会通过多种机制(函数、变量、外观、快捷键绑定和apropos搜索)执行查询,所有查询结果将以单个字符串的形式返回。
首先,找到
agent-skill-describe.el
文件,该文件与本技能文件一同存放在emacs-skills插件目录下的
skills/describe/agent-skill-describe.el
路径中。
sh
emacsclient --eval '
(progn
  (load "/path/to/skills/describe/agent-skill-describe.el" nil t)
  (agent-skill-describe :query "dired-mark"))'

Rules

规则

  • Summarize the returned documentation for the user in the conversation.
  • Locate
    agent-skill-describe.el
    relative to this skill file's directory.
  • Run the
    emacsclient --eval
    command via the Bash tool.
  • 在对话中为用户总结返回的文档内容。
  • 基于本技能文件所在目录定位
    agent-skill-describe.el
    文件。
  • 通过Bash工具运行
    emacsclient --eval
    命令。