mirror of
https://github.com/alirezarezvani/claude-skills.git
synced 2026-08-28 04:24:58 +00:00
Round-2 sweep after re-auditing all 15 reported issues against the merged dev: - #885 generalized: the original fix only renamed self-improving-agent's status/review, but three more plugins shipped skills whose bare names shadow Claude Code built-ins. Renamed with the same convention: playwright-pro init/review -> pw-init/pw-review, agenthub init/status -> hub-init/hub-status, autoresearch-agent status/resume -> ar-status/ ar-resume. All command references (/pw: /hub: /ar:), docs, audit records, harness manifests, and mirror trees/indexes updated; the flat mirror namespace no longer collides on 'status'. New scripts/check_skill_names.py gate (wired into ci-quality-gate.yml as blocking) fails CI on any future bare reserved name; rule added to SKILL-AUTHORING-STANDARD.md. - #969 follow-through: five more scripts print box-drawing characters that cannot exist in cp1252 (api_scorecard, api_linter, breaking_change_detector, humanizer_scorer, content_scorer) — same guarded UTF-8 reconfigure applied; all smoke-tested under a forced legacy encoding. Verified: check_skill_names (incl. negative test), check_plugin_json, check_paths, derive_counters, check_dual_publish, smoke_scripts (634/634), 0 broken mirror symlinks. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Qgc6RYXWJPr5oW9DHU7zR4
22 lines
678 B
JSON
22 lines
678 B
JSON
{
|
|
"name": "autoresearch-agent",
|
|
"displayName": "Autoresearch Agent",
|
|
"version": "2.1.2",
|
|
"description": "Autonomous experiment loop — optimize any file by a measurable metric.",
|
|
"author": "Alireza Rezvani",
|
|
"license": "MIT",
|
|
"platforms": ["claude-code", "openclaw", "codex"],
|
|
"category": "engineering",
|
|
"tags": ["optimization", "experiments", "benchmarks", "autoresearch", "loop", "metrics"],
|
|
"repository": "https://github.com/alirezarezvani/claude-skills",
|
|
"commands": {
|
|
"setup": "/ar:setup",
|
|
"run": "/ar:run",
|
|
"loop": "/ar:loop",
|
|
"status": "/ar:ar-status",
|
|
"resume": "/ar:ar-resume"
|
|
},
|
|
"agents": [
|
|
"experiment-runner"
|
|
]
|
|
}
|