The ecosystem
46 plugins,
and counting.
Every plugin installs by name over the fledge-v1
protocol: a sandboxed JSON-over-stdio contract. Native or WASM. Write your own in any language;
community plugins compose on the same protocol.
$ fledge plugins install CorvidLabs/fledge-plugin-github
Encrypted on-chain messaging. AlgoChat via Algorand.
Apple Music controls for fledge. Play, pause, skip, search, and browse your library from the terminal.
Record and verify signed provenance as `fledge attest`: who reviewed which commit, kept in git notes.
Score a diff's change risk as `fledge augur`: proceed, review, or block, for humans and agents.
Run benchmarks, save a baseline, and flag regressions
Dev environment bridge. Connect your machine to a remote agent session over WebSocket.
Bridge client for fledge. Read and write files on connected bridge sessions.
Native security canary. Probes what an untrusted plugin can access.
WASM security canary. Proves the Wasmtime sandbox blocks every attack the native canary exposes.
Color palette helpers for fledge. Convert, preview, generate.
Run language-native test coverage and gate on a threshold
Interactive web dashboard plugin for fledge
Example fledge plugin with deploy, rollback, and lane hooks for plugin authors.
Cross-ecosystem dependency health for fledge. Outdated, audit, licenses across Rust, Node, Python.
Discord webhook plugin for CI failure notifications
Docker build, push, and compose helpers wired to your project
Toolchain diagnostics for fledge, extends fledge doctor with rust/node/python/swift/etc. probes
End-to-end test plugin. Exercises every command and reports pass or fail.
Check, list, and diff project .env files against .env.example
Example fledge plugin demonstrating command extension and lifecycle hooks
Sync Figma design tokens, export component specs, and diff design changes
GitHub commands for fledge. Checks, issues, PRs via the gh CLI.
Scan your repo for committed secrets via gitleaks, with a one-command pre-commit hook installer
Hangman with identifiers from your codebase
Example fledge plugin (bash) demonstrating the fledge-v1 protocol
Example fledge plugin in Rust. Demonstrates the fledge-v1 protocol.
Example fledge plugin in Swift. Demonstrates the fledge-v1 protocol.
Authenticated HTTP/REST client as fledge http, with SSRF guards. Complements fledge-plugin-web.
Local web dashboard for browsing and managing fledge templates, plugins, lanes, and config
JWT encode, decode, and verify from fledge
Algorand localnet lifecycle plugin. Start, stop, reset, fund, accounts.
Three-tier memory plugin. Ephemeral SQLite, mutable ARC-69, permanent on-chain.
Code metrics for fledge. LOC, churn, test ratio. Wraps tokei and git.
Postgres database management as fledge pg: query and schema over psql, with destructive-statement safety. Sibling of fledge-plugin-sql.
Find and kill processes bound to a TCP port. Friendlier lsof and netstat wrapper.
Roast a commit through the active fledge LLM provider. Entertainment purposes only.
Throwaway scratch notes scoped to your current repo. Opens in $EDITOR, autosaved per-repo.
Scan your codebase for leaked secrets, API keys, tokens, passwords, private keys. Kotlin fledge plugin.
Measure download and upload bandwidth via Cloudflare's speed test endpoints
SQLite management plugin. Init, migrate, query, schema.
Markdown standup post from your recent git commits, narrated by the active fledge LLM
Example fledge plugin showing project statistics using the fledge-v1 protocol.
Remote template registry for fledge, search GitHub for community templates, publish your own
Extract TODO/FIXME/HACK/XXX comments from your codebase
Timezone utility for fledge. Show, convert, and manage saved zones across distributed teams.
Terminal weather reports powered by Open-Meteo
Write your own
A plugin is a subprocess that speaks fledge-v1:
JSON messages over stdio. Declare your commands in plugin.toml,
scaffold with fledge plugins create, publish to GitHub.
name = "fledge-deploy"
version = "0.1.0"
description = "Deploy to cloud providers"
[[commands]]
name = "deploy"
binary = "fledge-deploy"