From ab60ba6d3b904d01a4365f7d12076302384e494e Mon Sep 17 00:00:00 2001 From: Tony Davis Date: Wed, 25 Mar 2026 09:12:00 -0400 Subject: [PATCH] Add autoresearch plugin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds the autoresearch plugin — autonomously optimizes Claude Code skill prompts using Karpathy's autoresearch methodology. Scores outputs 0-100, mutates one thing at a time, and keeps improvements. Includes PostToolUse (auto-screenshots) and Stop (completion gate) hooks. --- README.md | 1 + plugins/autoresearch/.claude-plugin/plugin.json | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 plugins/autoresearch/.claude-plugin/plugin.json diff --git a/README.md b/README.md index e4de615..c4e4526 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,7 @@ Install or disable them dynamically with the `/plugin` command — enabling you - [technical-sales-engineer](./plugins/technical-sales-engineer) ### Code Quality Testing +- [autoresearch](./plugins/autoresearch) - [api-tester](./plugins/api-tester) - [bug-detective](./plugins/bug-detective) - [code-review](./plugins/code-review) diff --git a/plugins/autoresearch/.claude-plugin/plugin.json b/plugins/autoresearch/.claude-plugin/plugin.json new file mode 100644 index 0000000..fc81522 --- /dev/null +++ b/plugins/autoresearch/.claude-plugin/plugin.json @@ -0,0 +1,11 @@ +{ + "name": "autoresearch", + "description": "Autonomous skill optimizer using Karpathy's autoresearch methodology. Scores outputs 0-100, mutates prompts, keeps improvements. Includes auto-screenshot and stop-gate hooks.", + "version": "1.1.1", + "license": "MIT", + "author": { + "name": "Tony Davis", + "url": "https://github.com/lendtrain" + }, + "homepage": "https://github.com/lendtrain/autoresearch-for-skills" +}