fledge 0.9.1

Dev-lifecycle CLI — scaffolding, tasks, lanes, plugins, and more.
fledge-0.9.1 is not a library.

fledge

CI Crates.io Downloads License: MIT Docs

One CLI, your whole dev lifecycle. Scaffold, build, review, ship — zero config for the common case.

fledge init my-tool --template rust-cli
cd my-tool
fledge lane ci     # lint + test + build, works out of the box

Install

cargo install fledge              # from crates.io
brew install CorvidLabs/tap/fledge # homebrew
cargo install fledge --features tui   # with TUI browser
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 .

Quick Start

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 Claude

Starting fresh? Scaffold from a template:

fledge init my-app --template rust-cli     # built-in template
fledge init my-app --template user/repo    # any GitHub repo
fledge init my-app                         # interactive picker

What's Inside

Stage Commands What it does
Start init, list, search, create-template Scaffold projects from local or remote templates
Build run, lane, 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 GitHub integration, CI status, release notes
Extend plugin, completions, tui Community plugins, shell completions, TUI browser

Built-in Templates

rust-cli · ts-bun · python-cli · go-cli · ts-node · static-site

Browse community templates: fledge search <keyword>

Examples

Learn More

Contributing

See CONTRIBUTING.md for development setup, guidelines, and how to submit changes.

Security

See SECURITY.md for the security policy and how to report vulnerabilities.

License

MIT