A Claude Code plugin marketplace housing QuantEcon's shared agent skills and their supporting scripts.
Each plugin bundles one area of work — a skill (the instructions Claude follows) plus the deterministic scripts it drives — so the same versioned toolkit works locally for authors and RAs, and headlessly in CI.
📖 quantecon.github.io/skills — the documentation, rendered and navigable. It is built from the files in this repository, so reading either one gets you the same content.
| Plugin | For | Covers |
|---|---|---|
qe |
Authors and RAs writing lectures | Style checks against the QuantEcon style guide, while editing and before opening a PR |
benchmark |
Maintainers reviewing accelerated implementations | Measured, rubric-scored evaluation of a conversion |
audit |
Maintainers sweeping a whole repository | Bulk, read-only audits — every issue, every PR, a codebase, a translated series — each producing a written report |
qe is the author-facing surface — one memorable prefix for everyday work. check-style is the umbrella (whole lecture, optional category filter, e.g. /qe:check-style lectures/aiyagari.md figures math) and the per-category sub-skills run the same shared rules individually. benchmark and audit are specialist toolkits, installed by the maintainers who need them.
Which skills exist right now, and what state each is in, is in CATALOG.md — that list is kept current with what has merged, so this page does not repeat it. Ideas nobody has committed to are in FUTURE-IDEAS.md.
| Guide | For |
|---|---|
| AGENTS.md | AI agents and contributors: canonical repo instructions — the single-source-of-truth principle, doc map, working conventions |
| docs/using-skills.md | Authors/reviewers: setup, invoking skills, what to expect |
| docs/developing-skills.md | Contributors: layout, conventions, dev loop, testing locally, versioning, PR flow |
| docs/tutorial-run-an-evaluation.md | Tutorial: the evaluation procedure by hand, with the ge_arrow validation run as the checkable example |
| benchmark/README.md | The evaluation skill: review mode, triage mode, report format, manual pipeline |
| audit/README.md | The audit family: what belongs in it, the shared method, running one |
Lecture repositories opt in by checking the following into their .claude/settings.json. Anyone who opens the repo and trusts it gets the marketplace and plugins installed automatically — no commands to run:
{
"extraKnownMarketplaces": {
"quantecon": {
"source": { "source": "github", "repo": "QuantEcon/skills" }
}
},
"enabledPlugins": {
"qe@quantecon": true,
"benchmark@quantecon": true
}
}audit is deliberately absent from the lecture-repo block: it is maintainer tooling, and the plugin is the enable unit, so auto-installing it would put org-wide audit skills in every author's command list. Maintainers install it themselves.
/plugin marketplace add QuantEcon/skills
/plugin install qe@quantecon
/plugin install benchmark@quantecon
/plugin install audit@quantecon
The official action accepts the marketplace and plugin directly:
- uses: anthropics/claude-code-action@v1
with:
plugin_marketplaces: "https://github.com/QuantEcon/skills.git"
plugins: "benchmark@quantecon"
prompt: "/benchmark:review-acceleration <args>".claude-plugin/marketplace.json # the marketplace catalogue
scripts/validate.py # manifest + frontmatter validation (run in CI)
qe/ # author-facing plugin
.claude-plugin/plugin.json
skills/check-style/SKILL.md # umbrella skill
skills/check-<category>/ # thin per-category sub-skills
references/rules/ # shared rule files (style-guide schema)
scripts/ # shared deterministic preflight checkers
benchmark/ # specialist plugin
.claude-plugin/plugin.json
skills/review-acceleration/SKILL.md
scripts/ # supporting Python scripts the skill drives
audit/ # maintainer-facing bulk-audit plugin
.claude-plugin/plugin.json
skills/issues/SKILL.md # one skill per audit subject
references/ # shared doctrine, org context, reporting guidance
scripts/ # deterministic snapshot + coverage machinery
Open a PR adding or modifying a plugin directory and registering it in .claude-plugin/marketplace.json. Test locally with claude --plugin-dir ./<plugin> before submitting.
Run python scripts/validate.py before pushing — it checks that every plugin resolves, that plugin.json agrees with marketplace.json on name, version, and description, and that each SKILL.md has frontmatter whose name matches its directory. CI runs the same script on every PR; a malformed manifest otherwise breaks installation silently in every consuming lecture repository.
Broader context for this repository: QuantEcon/meta#304 (toolkit proposal) and QuantEcon/meta#335 (benchmarking programme).