From literate-agent
Elisp-specific literate-programming caveats — lexical-binding handling, macro re-expansion, reload discipline. Auto-activates when editing .el files or literate .org files with Elisp src blocks. Consult before adding lambdas in callbacks/timers, before changing macro definitions, or after editing a literate-elisp .org.
How this skill is triggered — by the user, by Claude, or both
Slash command
/literate-agent:lp-hint-elispWhen to use
editing .el files; editing .org files containing
**/*.elThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Points at the canonical Elisp LP hint file:
Points at the canonical Elisp LP hint file:
~/projects/literate-agent/hints/elisp.org
lexical-binding: t in .org headers is IGNORED by
literate-elisp. Closures crossing timer / process / callback
boundaries must use lexical-let (from cl-lib) explicitly,
not plain let.pcase string patterns compile differently under dynamic
binding. Use cond + equal for string dispatch instead..org edit:
(literate-elisp-load "FILE.org"). Saving the file does NOT
update the running Emacs image.:noweb yes in Elisp src blocks — literate-elisp
doesn't expand <<chunk>> references at load time. (Fine for
Python / TS / Rust src blocks.)evalElisp MCP tool — Emacs
is single-threaded; the call blocks the editor..el file (via the paths: "**/*.el" matcher)..org file when Claude infers it
contains Elisp src blocks (via the description + when_to_use
fields).~/projects/literate-agent/hints/elisp.org end-to-end on
first activation in a session — the file is short (under 200
lines)..org, ensure the reload step lands
in the verification gate.~/projects/literate-agent/rules/literate-programming-document-first.md~/projects/literate-agent/rules/lp-comma-escape-leading-star.mdnpx claudepluginhub jingtaozf/literate-agent --plugin literate-agentProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.