select

This skill should be used when the user invokes "/select" to open one or more files in Emacs and select a region relevant to the current discussion via emacsclient.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "select" with this command: npx skills add xenodium/emacs-skills/xenodium-emacs-skills-select

Select region in Emacs

Open one or more files in Emacs and select (activate the region around) the code or text most relevant to the current discussion using emacsclient --eval. This allows the user to immediately act on the selection: narrow, copy, refactor, comment, etc.

Determine the relevant files and line ranges from the most recent interaction context.

How to select

First, locate agent-skill-select.el which lives alongside this skill file at skills/select/agent-skill-select.el in the emacs-skills plugin directory.

emacsclient --eval '
(progn
  (load "/path/to/skills/select/agent-skill-select.el" nil t)
  (agent-skill-select
    :selections (quote (("/path/to/file1.el"
                         :start 10
                         :end 25)
                        ("/path/to/file2.el"
                         :start 5
                         :end 12)))))'
  • :start is the 1-indexed start line.
  • :end is the 1-indexed end line.
  • The last file visited will have the visually active region. Other files have mark and point set (use C-x C-x to reactivate when switching to them).

Rules

  • Use absolute paths for files.
  • Choose the region most relevant to the current discussion (e.g., a function just modified, a block with an error, code just generated).
  • If no specific region is apparent, select the entire relevant function or block.
  • Locate agent-skill-select.el relative to this skill file's directory.
  • If no relevant files or regions exist in the recent interaction, inform the user.
  • Run the emacsclient --eval command via the Bash tool.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

emacsclient

No summary provided by upstream source.

Repository SourceNeeds Review
General

highlight

No summary provided by upstream source.

Repository SourceNeeds Review
General

describe

No summary provided by upstream source.

Repository SourceNeeds Review
General

file-links

No summary provided by upstream source.

Repository SourceNeeds Review