zeroshot
Your autonomous engineering team in a CLI. Point Zeroshot at an issue, walk away, and return to production-grade code. Supports Claude Code, OpenAI Codex, OpenCode, and Gemini CLI.
Source#
- Repository: covibes/zeroshot
- Last source update: 2026-04-04
- Last verified: 2026-04-05
Tags#
Integration notes#
Repository is workflow-oriented; map each workflow step to explicit worker contracts for predictability.
worker.md example#
Starter worker.md contract mapped from this registry entry. Copy this file and adapt schemas, constraints, and statuses for your task.
---
id: zeroshot-repo-derived-worker
name: zeroshot Repo-Derived Worker
version: 1.0.0
source_registry_url: https://worker.md/registry/zeroshot/
source_repository: https://github.com/covibes/zeroshot
repository_default_branch: main
repository_language: JavaScript
repository_license: MIT
repository_updated_at: 2026-04-04
worker_mode: agent-orchestration-worker
derivation_method: github_repository_metadata_plus_raw_readme
derivation_confidence: 0.95
derived_on: 2026-04-05
tags:
- agent-orchestration
- agentic-workflow
- ai-agent
- ai-agents
- autonomous-agents
- claude
---
# zeroshot Repo-Derived Worker
## Repo-derived summary
- Registry summary: Your autonomous engineering team in a CLI. Point Zeroshot at an issue, walk away, and return to production-grade code. Supports Claude Code, OpenAI Codex, OpenCode, and Gemini CLI.
- Repository description: Your autonomous engineering team in a CLI. Point Zeroshot at an issue, walk away, and return to production-grade code. Supports Claude Code, OpenAI Codex, OpenCode, and Gemini CLI.
- Stars (snapshot): 1,393
- Primary language: JavaScript
- Worker mode classification: agent-orchestration-worker
## Extracted from
- https://github.com/covibes/zeroshot
- https://github.com/covibes/zeroshot/blob/main/README.md
- https://github.com/covibes/zeroshot/actions/workflows/ci.yml/badge.svg
- https://img.shields.io/npm/v/@covibes/zeroshot.svg
- https://docs.microsoft.com/cli/azure/
## Evidence notes (from repository text)
- README summary paragraph: > **🎉 New in v5.4:** Now supports **OpenCode** CLI! Use Claude, Codex, Gemini, or OpenCode as your AI provider. Also supports **GitHub, GitLab, Jira, and Azure DevOps** as issue backends. See [Providers](#providers) and [Multi-Platform Issue Support](#multi-platform-issue-support).
- https://github.com/covibes/zeroshot/actions/workflows/ci.yml/badge.svg](https://github.com/covibes/zeroshot/actions/workflows/ci.yml)
- Zeroshot is an open-source AI coding agent orchestration CLI that runs multi-agent workflows to autonomously implement, review, test, and verify code changes.
- | Chat-based assistant | ✅ | ⚠️ | ❌ | ❌ |
- | Single coding agent | ✅ | ⚠️ | ❌ | ⚠️ |
- | **Zeroshot (multi-agent)** | ✅ | ✅ | ✅ | ✅ |
## Installation hints found in README
- `npm install -g @covibes/zeroshot</code>`
- `npm install -g @covibes/zeroshot`
- `npm install -g @covibes/zeroshot` |`
## worker.md contract (derived starter)
Purpose: Execute one orchestrated agent task as a bounded worker step.
### Input schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"run_id",
"task",
"context"
],
"properties": {
"run_id": {
"type": "string"
},
"task": {
"type": "string"
},
"context": {
"type": "object"
}
}
}
```
### Output schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"run_id",
"status",
"result"
],
"properties": {
"run_id": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"ok",
"retryable_error",
"invalid_request",
"invalid_output"
]
},
"result": {
"type": "object"
}
}
}
```
### Constraints
- timeout_seconds: 30
- max_attempts: 2
- idempotency_key: run_id
- status_enum: [ok, retryable_error, invalid_request, invalid_output]
- notes: adapt to concrete APIs/classes documented in this repository before production use
## How this should be used
1. Treat this file as a repo-derived starter profile, not a claim of an official repository API contract.
2. Replace schemas with exact interfaces from code/docs you adopt.
3. Keep execution bounded and auditable using worker protocol constraints.
How to use#
- Save this as a worker spec file (for example:
zeroshot-my-task.worker.md). - Replace the input/output schemas and purpose with your real bounded task.
- Enforce schema validation + timeout + retry policy in your runtime before production use.
Citation#
Reference URL: https://worker.md/registry/zeroshot/
Source URL: https://github.com/covibes/zeroshot