autoprompt-skill is a free, open source version control & collaboration project written in JavaScript and released under MIT. It has 1,169 GitHub stars, 73 forks and 1 open issues, and was last pushed 9 hours ago. On this registry it ranks #23 of 30 tracked projects in Version Control & Collaboration, with 5 head-to-head comparisons available. It gained 18 stars over the last 3 tracked days.

What is autoprompt-skill?

Autoprompt is an MIT-licensed coding-agent skill for developers and teams working in agentic coding environments who want fewer failed runs, adding a review, fix, and recheck workflow to supported coding agents such as Claude Code, Codex, and OpenCode.

What it is

Autoprompt is distributed as autoprompt-skill, a JavaScript package on npm and installable through the CLI. It belongs to Developer Tools / Version Control & Collaboration and carries topics such as agent-orchestration, agent-skills, agentic-workflows, ai-agents, ai-coding, automated-testing, and code-review. It installs into coding agents rather than standing alone as an agent or IDE. The README lists working support for eleven coding agents, including Claude Code, Codex, OpenCode, Kilo Code, VS Code, Prime Agent, Oh My Pi, DeepSeek Harness, Reasonix, Hermes Agent, and Grok Build, with tested versions that passed Linux runs; model and platform availability varies by provider.

The problem is failed agentic coding tasks. Autoprompt cuts failures by 45% by reviewing, fixing, and rechecking its work. In the measured OpenCode comparison, OpenCode solved 60/89 tasks (67.42%) and failed 29; OpenCode plus Autoprompt solved 73/89 (82.02%) and failed 16, a change of +13 solves, +14.61 points, and 45% fewer failures. The measured result was 29 to 16 failures, about 2x fewer mistakes. These are version 1 benchmarks; version 2 benchmarks will follow. DeepSeek's 82.7% used its own test setup, so it is a reference point, not a comparable third run. Autoprompt does not replace the coding agent itself; it replaces unreviewed agent output with reviewed, fixed, and rechecked output.

Key capabilities

  • Installs with npm install -g https://github.com/Spielewoy/autoprompt-skill/releases/download/v2.0.0/autoprompt-skill-2.0.0.tgz, then runs autoprompt to choose a coding agent, confirm its path, and install.
  • Supports provider keys claude, codex, opencode, kilo, vscode, prime, omp, deepseek, reasonix, hermes, and grok.
  • Runs a review, fix, and recheck workflow, measured at 45% fewer failures in the OpenCode comparison.
  • Checks installations with autoprompt doctor --strict or autoprompt doctor PROVIDER --strict.
  • Removes installations with autoprompt uninstall or autoprompt uninstall PROVIDER, and shows every command with autoprompt help.
  • Invokes with autoprompt activate PROVIDER --target /absolute/project -- " ".
  • Supports custom CLIs or IDEs via Custom coding agent and docs/guides/custom-agent-compatibility.md.

Who uses it and how

  • Developers using supported agents such as Claude Code, Codex, OpenCode, Kilo Code, VS Code, Prime Agent, Oh My Pi, DeepSeek Harness, Reasonix, Hermes Agent, or Grok Build who want review, fix, and recheck in the agent workflow.
  • Teams standardizing on a provider key such as claude, codex, or prime that need check, update, repair, and uninstall commands for each installation.
  • Self-hosters on macOS or Linux who provide Node.js 20+, Python 3.11+ with PyYAML, and Bash 4.3+, with Git needed only for the GitHub checkout method.
  • Users evaluating agentic coding performance against the Terminal-Bench 2.1 setup in docs/benchmarks/terminal-bench-2.1.md or requesting another benchmark through the issue tracker.
  • Users integrating a custom CLI or IDE by choosing Custom coding agent and following the compatibility guide.

Getting started

Install the CLI with npm install -g https://github.com/Spielewoy/autoprompt-skill/releases/download/v2.0.0/autoprompt-skill-2.0.0.tgz, then run autoprompt to choose an agent, confirm its path, and install. From source, run git clone https://github.com/Spielewoy/autoprompt-skill, cd autoprompt-skill, npm install -g ., and autoprompt.

How it compares

Autoprompt does not replace Claude Code, Codex, OpenCode, Kilo Code, VS Code, Prime Agent, Oh My Pi, DeepSeek Harness, Reasonix, Hermes Agent, or Grok Build; it installs as a skill on top of them. It sits alongside those agentic coding tools in Developer Tools / Version Control & Collaboration, adding review, fix, and recheck while the underlying agent remains the execution environment.

When to use it — and when not to

Use Autoprompt when a supported coding agent is in place and the expected trade-off of about 3x the time and 2x the tokens is acceptable, with version 1 benchmark results as the available evidence. Do not pick it if version 2 benchmarks are required before adoption, if that time and token cost is too high, or if the coding agent or IDE is unsupported and cannot follow the custom-agent compatibility guide. The README states that timing and token logs were not retained, so those figures are planning estimates based on user experience reports rather than measured benchmark results, that very small tasks may differ significantly, and that a self-hoster must provide Node.js 20+, Python 3.11+ with PyYAML, and Bash 4.3+ on macOS or Linux.

project readme (upstream, from github) — read inline

Autoprompt is a coding-agent workflow that cuts failures by 45% by reviewing, fixing, and rechecking its work.

Terminal-Bench 2.1: plus 14.61 points Latest release Eleven supported providers License MIT

English | 中文 | 한국어 | Español | العربية

Contents

Install · Benchmarks · Invocation · Run controls · Workflow · Agents · Examples · FAQ · License

Install

Use the CLI below, or download an installer from GitHub Releases.

1. Install the CLI

npm install -g https://github.com/Spielewoy/autoprompt-skill/releases/download/v2.0.0/autoprompt-skill-2.0.0.tgz

2. Launch the installer

autoprompt

3. Install

Choose your coding agent, confirm its path, and install. N means enter another path.

For another CLI or IDE, choose Custom coding agent and use the compatibility guide.

Install from source
git clone https://github.com/Spielewoy/autoprompt-skill
cd autoprompt-skill
npm install -g .
autoprompt

Requirements

Support

Status Coding agent Tested version Key
Working Claude Code 2.1.263 claude
Working Codex 0.148.0 codex
Working OpenCode 1.18.29 opencode
Working Kilo Code 7.5.15 kilo
Working VS Code 1.136.1 vscode
Working Prime Agent 0.7.2 prime
Working Oh My Pi 18.1.14 omp
Working DeepSeek Harness 0.1.2-rc.1 deepseek
Working Reasonix 1.30.0 reasonix
Working Hermes Agent 0.21.1 hermes
Working Grok Build 1.0.13 grok

These versions passed Linux runs. Model and platform availability varies by provider.

See support and audit notes.

Check, update, or remove an installation

  • Check every detected installation: autoprompt doctor --strict
  • Check one provider: autoprompt doctor PROVIDER --strict
  • Update or repair: autoprompt, then choose an installed provider
  • Uninstall interactively: autoprompt uninstall
  • Uninstall one provider: autoprompt uninstall PROVIDER
  • Show every command: autoprompt help

Replace PROVIDER with a key from the support table, such as claude, codex, or prime.

Benchmarks

These are version 1 benchmarks. Version 2 benchmarks will follow.

Measured OpenCode comparison

Track Solved Score Failed
OpenCode 60/89 67.42% 29
OpenCode + Autoprompt 73/89 82.02% 16
Change +13 solves +14.61 points 45% fewer

DeepSeek's 82.7% used its own test setup, so it is a reference point, not a comparable third run. Read the setup and evidence boundaries, or request another benchmark.

Expected trade-off: about 3x the time and 2x the tokens.

Timing and token logs were not retained, so these are planning estimates based on user experience reports, not measured benchmark results. The measured result was 29 to 16 failures (45% fewer) in this run, which translates to about 2x fewer mistakes. Note: for very small tasks, this may differ significantly.

Anatomy of an invocation

autoprompt activate PROVIDER --target /absolute/project -- "<goal>"
Part What it does
PROVIDER A key from the support table, such as claude, codex, or grok.
--target The project to work on. Omit it to use the current directory.
-- Separates launcher options from the request.
`` The result you want, constraints, and how to check success.
path= Optional auto, direct, light, or roadmap, before the quoted goal. See work paths.
autoprompt activate codex -- path=light "add retries and test the edge cases"

Run controls

The same controls apply to all eleven providers. Custom model setup

Control What it does
--concurrency tokensaver Runs at most six subagents at once.
--concurrency wide Starts ready, independent work up to the host limit.
--concurrency custom --max-subs N Sets your own concurrency limit.
configure PROVIDER --agents off Uses the provider's configured model.
configure PROVIDER --agents MODEL Selects one model. Add --effort LEVEL where supported.
configure PROVIDER --agents auto --model-map FILE Chooses from a measured model registry. A comma-separated model list also requires --model-map.

Pass concurrency controls after --, before the quoted goal:

autoprompt activate codex -- --concurrency custom --max-subs 4 "add retries and tests"
autoprompt configure claude --agents provider/model --effort low

How it works

The agents

Examples

Goal Prompt
Fix autoprompt activate claude -- "fix the registration race and add a regression test"
Build autoprompt activate codex -- --concurrency wide "build the booking flow from API to checkout"
Research autoprompt activate hermes -- "compare job queues against this codebase and recommend one"
Limit parallel work autoprompt activate grok -- --concurrency custom --max-subs 4 "migrate every model"

Run these commands from your project, or supply --target /absolute/project before --.

FAQ

Does Autoprompt mean I literally do not have to prompt?

No. Give it a clear goal, constraints, and success criteria. Autoprompt handles the execution loop, so you do not have to prompt every step. Details

How autonomous is Autoprompt?

It can scope, implement, test, review, repair, and verify a goal.

readme truncated — read the full docs on github

Frequently asked questions

Is autoprompt-skill free to use?

autoprompt-skill is open source under the MIT licence. There is no licence fee and no seat count — you can self-host it or, where the project offers one, pay a vendor for a managed version instead.

What does autoprompt-skill do?

Autoprompt is a coding-agent skill that cuts failures by 45% on agentic coding tasks.

What is autoprompt-skill written in?

autoprompt-skill is primarily written in JavaScript. Its source is publicly available at https://github.com/Spielewoy/autoprompt-skill, and it has 1,169 GitHub stars.