One CLI, your whole dev lifecycle. Scaffold, build, review, ship — zero config for the common case.
fledge templates init my-tool --template rust-cli
cd my-tool
fledge lanes run ci # lint + test + build, works out of the boxcargo install fledge # from crates.io
brew install CorvidLabs/tap/fledge # homebrewMore install options
curl -fsSL https://raw.githubusercontent.com/CorvidLabs/fledge/main/install.sh | sh
nix run github:CorvidLabs/fledge
git clone https://github.com/CorvidLabs/fledge.git && cd fledge && cargo install --path .Already have a project? Just use it — fledge auto-detects your stack:
fledge run test # runs your language's test command
fledge run build # same for build
fledge review # AI code review via ClaudeStarting fresh? Scaffold from a template:
fledge templates init my-app --template rust-cli # built-in template
fledge templates init my-app --template user/repo # any GitHub repo
fledge templates init my-app # interactive picker| Stage | Commands | What it does |
|---|---|---|
| Start | templates (init, create, search, publish, validate, update, list) |
Scaffold projects from local or remote templates |
| Build | run, lanes, config, doctor |
Task runner, workflow pipelines, environment checks |
| Develop | work, spec |
Feature branches, PRs, spec-sync |
| Review | review, ask, metrics, deps |
AI code review, codebase Q&A, health checks |
| Ship | issues, prs, checks, changelog, release |
GitHub integration, CI status, releases |
| Extend | plugins, completions |
Community plugins, shell completions |
rust-cli · ts-bun · python-cli · go-cli · ts-node · static-site
Browse community templates: fledge templates search <keyword>
- Community Templates — 18 ready-to-use templates (angular-app, bun-api, deno-cli, mcp-server, rust-workspace, swift-pkg, and more)
- Example Lanes — language-specific CI/CD pipelines
- Example Plugin — deploy/rollback plugin reference
- Full Documentation — commands, configuration, guides
- Template Authoring — create and publish your own templates
- Lanes Guide — task pipelines and workflow automation
- Plugins Guide — extend fledge with community tools
See CONTRIBUTING.md for development setup, guidelines, and how to submit changes.
See SECURITY.md for the security policy and how to report vulnerabilities.
MIT