Roadmap & changelog
This handbook documents current reality. A few adjacent capabilities are planned but not built — listed here so you don't go looking for them in the reference.
Roadmap
| Planned | Status |
|---|---|
| Remote MCP with OAuth (hosted MCP endpoint, no local install) | Planned. Today the MCP server runs locally over stdio with an API key. |
| Billing gate on dispatch | Usage is metered on every generation/run; hard credit enforcement at the API layer is coming. Don't build around the absence of a limit. |
| Browser/exploration tools over the API | The in-app assistant's sandboxed browser tools stay app-only for now. |
info
Additive changes (new fields, new routes) land inside v1 without notice — write clients that ignore unknown fields. Breaking changes get a new version path.
Changelog
2026-07-17 — npm publish
- The CLI/MCP package is live on the public npm registry as
testvibe—npm install -g testvibe(unscoped;@testvibe/cliwas never published). The server-hostedcurl | sh/iwr | iexinstallers remain as the npm-free path.
2026-07-06 — telemetry read surface
- Telemetry:
get_live_servers,list_error_groups,list_server_metrics— read the app's live server vitals (CPU/memory/sessions), fingerprinted application-error groups, and a load run's persisted server samples from CI or an agent;testvibe telemetry live|errors|metrics. The ingest side stays the drop-in telemetry agent /TestVibe.Telemetrypackage. - 3 new operations across the API, CLI, and MCP server.
2026-07-06 — load test authoring
- Load testing:
create_load_test,update_load_test,delete_load_test— author load tests from CI or an agent (simple mode replays functional journeys, advanced drives k6 against paths), edit their configuration, and delete them;testvibe load create|update|delete …. Listing and dispatching (list_load_tests/run_load_test) already shipped. - 3 new operations across the API, CLI, and MCP server.
2026-07-06 — plugin management, variables & secrets
- Plugins:
list_plugins,install_plugin,remove_plugin,publish_plugin,unpublish_plugin— browse the catalog, enable plugins per project, publish workspace packages;testvibe plugins …. - Variables & secrets:
list_variables/set_variable/delete_variableandlist_secrets/set_secret/delete_secret— per-project environment values for{{var:NAME}}/{{secret:NAME}}; secrets are write-only.testvibe vars …/testvibe secrets …. - 11 new operations across the API, CLI, and MCP server.
2026-06-11 — suite runs, run diagnosis, project detail
run_suite(POST /projects/{id}/runs): dispatch several features — or everygeneratedfeature — in one call;testvibe run --all --waitis now the one-line CI gate.diagnose_run(GET /runs/{id}/diagnosis): a failed run's failing tests, Gherkin, executed spec sources, artifact links, and log tail in one call.get_project(GET /projects/{id}): project detail incl. test site URLs;testvibe project.delete_file(DELETE /files/content?path=): remove stored files under the write allowlist;testvibe files delete.statusfilters onlist_featuresandlist_runs.- MCP tools now carry
readOnlyHint/destructiveHintannotations;run --wait(single and--all) exits non-zero on failure.
2026-06-10 — v1 initial release
/api/v1/opsAPI: projects, features CRUD, generation (dispatch/status/log/cancel), runs (dispatch/list/digest/artifacts), files, configs.- API keys (
tvb_…) in Settings → CLI & API keys, replacing the old CLI pairing flow. testvibeCLI and MCP stdio server (19 tools), sharing one manifest with the API.