OrcAI.Tool 0.10.4

There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global OrcAI.Tool --version 0.10.4
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local OrcAI.Tool --version 0.10.4
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=OrcAI.Tool&version=0.10.4
                    
nuke :add-package OrcAI.Tool --version 0.10.4
                    

OrcAI CLI

A CLI tool for orchestrating bulk GitHub work across many repositories. From a single YAML config, OrcAI creates a GitHub Project, opens templated issues in every target repo, and hands them off to whoever (or whatever) does the work — a human teammate, a bot, or an AI agent like GitHub Copilot or OpenCode.

Full docs, features, and examples: github.com/dburriss/orca

Prerequisites

Quick start

# 1. Scaffold a job config + issue template
orcai generate --name "Add AGENTS.md" --org my-github-org --repo repo-one --repo repo-two

# 2. Edit add-agents-md.yml (repos, labels, action) and add-agents-md.md (the task)

# 3. Run it
orcai run add-agents-md.yml

run finds or creates a GitHub Project, creates issues from your template, adds them to the project, and executes the configured action — assign @copilot/anyone, post a comment, or run a command per repo and open a PR with the result (cmd-to-github). A <basename>.lock.json file is written alongside the YAML so re-runs are fast and idempotent.

Commands

Command Description
orcai generate Scaffold a YAML job config and stub issue template
orcai run Execute a bulk job (globs, concurrency control, JSON output)
orcai nudge Re-trigger stale issues with no linked PR
orcai notify Post a templated comment to issues and/or PRs
orcai validate Validate YAML config(s) and repo access
orcai info Display the current state of a job
orcai cleanup Tear down everything created by run
orcai graph Render the dependsOn dependency graph
orcai migrate Upgrade a job YAML/lock file to the current schema
orcai auth pat/app/create-app/switch Manage credentials and profiles

For full flag details, the YAML schema, config file options, and runnable examples, see the CLI reference, config reference, and examples.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
0.10.5 114 9/7/2026
0.10.4 119 9/3/2026
0.10.3 101 9/2/2026
0.10.2 88 9/2/2026
0.10.1 98 9/1/2026
0.10.0 105 8/30/2026
0.9.0 105 8/30/2026
0.8.1 297 6/16/2026
0.8.0 171 6/9/2026
0.7.5-beta6 121 6/9/2026
0.7.4-beta5 117 5/21/2026
0.7.3-beta4 126 5/19/2026
0.7.2-beta3 127 5/18/2026
0.7.1-beta2 136 5/18/2026
0.7.0-beta1 128 5/13/2026
0.6.0 168 5/7/2026
0.5.1 304 3/17/2026
0.5.0 176 3/16/2026
0.4.4 178 3/16/2026
0.4.3 167 3/16/2026
Loading failed

`FetchReposState`'s two batches (`isArchived` and `search`, split in 0.10.3) now fetch their chunks concurrently instead of one at a time. Splitting the `search` batch down to 15 repos increased the number of sequential GraphQL round trips (e.g. 13 for 152 repos, up from 4); since this prefetch always runs single-threaded ahead of the per-repo fan-out regardless of `--parallel`/`--no-parallel`, running it sequentially made it the dominant cost of the whole run. Chunks are now dispatched with `Async.Parallel`, bounded/paced by the existing shared `ApiBucket` (which already rate-limits concurrent callers and pauses all of them together on a detected rate limit).