A fledge plugin that gives you an ASCII corvid companion powered by corvid-pet.
Your pet reacts to dev activity — feed it commits, test runs, code reviews, and deploys. It has moods, life stages, hunger, energy, and happiness stats.
fledge plugin install corvid-agent/fledge-plugin-petRequires Rust toolchain (cargo) — the plugin auto-builds on install via the build hook.
# Check on your pet
fledge pet
# Feed with dev activity
fledge pet feed commit
fledge pet feed test
fledge pet feed review
fledge pet feed lint
fledge pet feed deploy
# Play with your pet
fledge pet play
# Rename your corvid
fledge pet rename Raven
# Start fresh
fledge pet resetUses corvid-pet's simulation system — your pet has hunger, energy, happiness, and health stats that decay over time. Dev activity feeds it and keeps it healthy. Neglect it and it gets sad.
Add to your lanes to auto-feed:
[lanes.ci]
steps = ["lint", "test", "pet-feed"]
[tasks.pet-feed]
cmd = "fledge pet feed test"Or hook it into git:
# .git/hooks/post-commit
fledge pet feed commit- Rust toolchain (cargo) — builds automatically on
fledge plugin install
MIT