OrcAI.Tool
0.4.4
See the version list below for details.
dotnet tool install --global OrcAI.Tool --version 0.4.4
dotnet new tool-manifest
dotnet tool install --local OrcAI.Tool --version 0.4.4
#tool dotnet:?package=OrcAI.Tool&version=0.4.4
nuke :add-package OrcAI.Tool --version 0.4.4
OrcAI CLI
A CLI tool for automating bulk GitHub repository upgrades. It reads a YAML job configuration file and manages GitHub Projects, issues, and Copilot assignments across multiple repositories.
Installation
OrcAI is distributed as a .NET global tool. Requires .NET 10 or later.
dotnet tool install --global OrcAI.Tool
Then run it as orcai.
Prerequisites
ghCLI: Install from cli.github.com — must be installed and onPATH- Authentication: The easiest option is to ensure
ghis authenticated (gh auth login). OrcAI will use it automatically. For other methods see docs/cli-reference.md.
Quick start
1. Authenticate
The simplest option — if you already use the gh CLI, just make sure it's authenticated:
gh auth login
That's it. OrcAI will pick up the token automatically.
For PAT, GitHub App, or environment variable auth see docs/cli-reference.md.
2. Run a job
# Single config file
orcai run jobs/my-upgrade.yml
# All configs in a directory (quote the glob to prevent shell expansion)
orcai run "jobs/*.yml" --continue-on-error --json
# Limit concurrency to avoid rate limits
orcai run "jobs/*.yml" --max-concurrency 2
run finds or creates a GitHub Project, creates issues from your template, adds them to the project, and optionally assigns @copilot. On success a lock file (<basename>.lock.json) is written alongside the YAML for fast idempotent re-runs.
Commands
| Command | Description |
|---|---|
orcai auth pat/app/create-app/switch |
Store credentials or switch profiles for all other commands |
orcai generate |
Scaffold a YAML job config and stub issue template |
orcai run |
Execute a bulk upgrade job (supports globs, concurrency control, JSON output) |
orcai validate |
Validate YAML config(s) and verify all repos are accessible |
orcai info |
Display the current state of a job |
orcai cleanup |
Tear down everything created by run |
For full flag details, output formats, lock file schema, and advanced usage see docs/cli-reference.md.
The original Nushell scripts (orca.nu, cleanup.nu) are documented in docs/nushell-scripts.md.
| Product | Versions 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. |
This package has no dependencies.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.8.1 | 126 | 6/16/2026 |
| 0.8.0 | 115 | 6/9/2026 |
| 0.7.5-beta6 | 93 | 6/9/2026 |
| 0.7.4-beta5 | 97 | 5/21/2026 |
| 0.7.3-beta4 | 109 | 5/19/2026 |
| 0.7.2-beta3 | 100 | 5/18/2026 |
| 0.7.1-beta2 | 113 | 5/18/2026 |
| 0.7.0-beta1 | 97 | 5/13/2026 |
| 0.6.0 | 116 | 5/7/2026 |
| 0.5.1 | 257 | 3/17/2026 |
| 0.5.0 | 131 | 3/16/2026 |
| 0.4.4 | 131 | 3/16/2026 |
| 0.4.3 | 124 | 3/16/2026 |
| 0.4.2 | 130 | 3/16/2026 |
| 0.4.1 | 123 | 3/15/2026 |
| 0.4.0 | 120 | 3/13/2026 |
| 0.3.0 | 124 | 3/11/2026 |
Extra callout in `auth create-app` instructions to guide users through the manual steps required to grant org permissions after app creation via the manifest flow. Permissions must be set before installing.
Fixed a bug where `lockFilePath` produced backslashes on Windows, causing CI test failures; now produces forward-slash paths for consistency across platforms. Validated with unit tests on Windows and Linux.
ORCAI_APP_PRIVATE_KEY environment variable is now supported for CI usage, allowing users to avoid writing the private key to disk. Updated documentation and CI example to reflect this.