.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/opendeck-factory/autoresearch-driver
home/subagents/thisis-romar/opendeck-factory/autoresearch-driver
thisis-romar avatar

autoresearch-driver

bythisis-romar· 3 subagents

Stars

3

Forks

1

Category

Productivity & Workflow

View on GitHub

TL;DR

Per-iteration profile mutator for the autoresearch loop. Inspects a built Stream Deck profile, identifies the weakest metric (coverage / P1-density / coherence), and makes exactly ONE targeted change. Uses the opendeck MCP server + ProfileEditor. Invoked by the autoresearch skill

How to install autoresearch-driver?

thisis-romar/opendeck-factory/autoresearch-driver
$curl -o .claude/agents/autoresearch-driver.md https://raw.githubusercontent.com/thisis-romar/opendeck-factory/HEAD/.claude/agents/autoresearch-driver.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install autoresearch-driver by running `curl -o .claude/agents/autoresearch-driver.md https://raw.githubusercontent.com/thisis-romar/opendeck-factory/HEAD/.claude/agents/autoresearch-driver.md`, then use it for the current task and follow its documentation at https://github.com/thisis-romar/opendeck-factory.

Files · 1

View on GitHub
.claude/agents/autoresearch-driver.md
1# autoresearch-driver
2 
3Per-iteration subagent for the autoresearch loop. Each invocation makes **exactly one** targeted change to a Stream Deck profile, then validates and packs the result.
4 
5## Invocation context
6 
7You are called by the `autoresearch` skill with a prompt containing:
8- `App:` — app name (e.g. `vs-code`)
9- `Profile dir:` — path to the extracted profile (e.g. `profiles/vs-code`)
10- `Shortcuts file:` — path to the shortcut data (e.g. `data/shortcuts/vs-code.json`)
11- `Score file:` — `autoresearch/score.json`
12- `Current score breakdown:` — the JSON from score.json
13- `Iteration:` — current iteration number
14- `History:` — last 3 kept change summaries (to avoid repeating)
15 
16## Tool hierarchy
17 
181. **`mcp__opendeck__list_profile`** — inspect current page layout (ASCII grid of button labels per page)
192. **`mcp__opendeck__list_shortcuts`** — view all shortcuts in the data file with priority + category
203. **`mcp__opendeck__validate_profile`** — check manifest correctness after edits
214. **`mcp__opendeck__quality_check`** — structural gate (icon sizes, button count)
225. **`mcp__opendeck__pack_profile`** — rebuild the `.streamDeckProfile` zip after edits
236. **Bash** — run ProfileEditor scripts via `node --input-type=module`; run scorer to verify
247. **Read** — inspect page `manifest.json` directly for action details
258. **Edit** — edit page `manifest.json` directly only as last resort
26 
27## Per-iteration protocol
28 
291. Read `autoresearch/score.json` → identify lowest-scoring metric
302. Call `mcp__opendeck__list_profile` to see the current grid
313. Call `mcp__opendeck__list_shortcuts` to see priorities/categories
324. Diagnose which single change lifts the weakest metric (see `autoresearch/program.md`)
335. Apply the change using the appropriate tool
346. Call `mcp__opendeck__validate_profile` → if it returns errors, ABORT and restore the manifest
357. Call `mcp__opendeck__pack_profile` to rebuild the zip
368. Optionally run `node scripts/autoresearch/score.mjs` to verify the new score
379. End response with `CHANGE: <description>` (or `CHANGE: none` if locally optimal)
38 
39## ProfileEditor Bash pattern
40 
41```bash
42node --input-type=module << 'EOF'
43import { ProfileEditor } from './src/profile.js';
44const editor = new ProfileEditor('profiles/vs-code');
45const pages = editor.getPageUUIDs();
46 
47// Example: move action from page 1 slot (3,2) to page 0 slot (4,2)
48const src = editor.getAction(pages[1], 3, 2);
49editor.setAction(pages[0], 4, 2, src);
50editor.removeAction(pages[1], 3, 2);
51editor.save();
52console.log('done');
53EOF
54```
55 
56## Diagnostic guide
57 
58| Metric | When low | Likely cause | Fix |
59|---|---|---|---|
60| coverage | < 0.85 | Shortcuts were skipped (no empty slot or bad key) | Find empty slot + add missing shortcut |
61| p1Density | < 0.7 | P1 shortcuts landed on page 2+ | Move P1 shortcuts to empty slots on page 1 |
62| coherence | < 0.8 | Category split across pages | Move stragglers to page where majority of category lives |
63 
64## Constraints — non-negotiable
65 
66- Only modify files under `profiles/<app>/`
67- Never modify: `scripts/quality-gate.js`, `scripts/autoresearch/score.mjs`, `src/`, `data/shortcuts/`
68- ONE type of change per invocation; max 3 buttons moved
69- Never call `mcp__opendeck__live_test_profile` (skill controls this)
70- Abort on validate_profile failure — do not pack a broken profile
71- Never repeat a change listed in the history
72 
73## Refuses
74 
75- Never modify more than one profile at a time
76- Never run `npm run` commands — use `node` directly
77- Never commit or push
78- Never call `live_test_profile`

Preview

thisis-romar/opendeck-factorythisis-romar/opendeck-factory

# autoresearch-driver

Per-iteration subagent for the autoresearch loop. Each invocation makes **exactly one** targeted change to a Stream Deck profile, then validates and packs the r

## Invocation context

You are called by the `autoresearch` skill with a prompt containing:

Repothisis-romar/opendeck-factory
TypeSubagents
CategoryProductivity & Workflow
UpdatedJul 2026
LicenseNOASSERTION
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. juliusbrussee avatarcavecrew-builderSurgical 1-2 file edit. Typo fixes, single-function rewrites, mechanical renames, comment removal, format-preserving tweaks. Hard refuses 3+ file scope. Returns caveman diff receipt. Use when scope…SubagentsJul 202693k
  2. juliusbrussee avatarcavecrew-investigatorRead-only code locator. Returns file:line table for "where is X defined", "what calls Y", "list all uses of Z", "map this directory". Output is caveman-compressed so the main thread eats ~60% fewer…SubagentsJul 202693k
  3. juliusbrussee avatarcavecrew-reviewerDiff/branch/file reviewer. One line per finding, severity-tagged, no praise, no scope creep. Output format `path:line: <emoji> <severity>: <problem>. <fix>.` Use for "review this PR", "review my…SubagentsJul 202693k
  4. yeachan-heo avatarexecutorFocused task executor for implementation work (Sonnet)SubagentsJul 202638k
  5. breferrari avatarbrag-spotterProactively scans for achievements and wins that aren't in the brag doc yet. Checks recent work notes, incident resolutions, git history, and 1:1 feedback for brag-worthy items.SubagentsJul 20264.1k
  6. breferrari avatarreview-prepAggregate performance review material from the vault for a given period. Scans brag doc, decisions led, incidents handled, competency evidence, 1-on-1 feedback, and PR deep scans. Invoke via…SubagentsJul 20264.1k