feedback-hub is a local-first feedback and learning system for software projects. It helps a developer or agent capture generalized project feedback, curate reusable learnings, and retrieve relevant guidance during future work, all from one local machine.
- Integrates local projects with managed feedback instructions.
- Captures generalized lessons, decisions, incidents, and adopted guidance during substantive work.
- Curates reusable learnings into a local shared memory.
- Recommends and searches relevant learnings during future work.
# 1) Install the feedback and learnings commands
./scripts/install_feedback.sh
# 2) Integrate a local project
feedback apply /absolute/path/to/project
# 3) Capture generalized feedback
feedback lesson "Short generalized lesson" /absolute/path/to/project
# 4) Build the local learnings index
learnings index
# 5) Search or request recommendations
learnings recommend /absolute/path/to/project
learnings search "shutdown state recovery"After installation, feedback and learnings are the primary user-facing commands. The repo-local scripts remain available underneath those commands when you need the implementation entrypoints directly.
Canonical verification path:
./scripts/verify.shIf the generated architecture diagram drifts, refresh it with:
./scripts/render_architecture.sh --write- Each integrated project writes feedback into its own sovereign feedback area.
- Projects do not write directly to curated learnings.
- Reusable artifacts can be promoted into a local curated learnings layer.
- Future work can search or request recommendations from that local corpus.
Managed integration encourages agents to consult local learnings during substantive work and to keep reusable feedback generalized, anonymized, and safe to share.
feedback-hub is currently a local-first single-node tool. The public product surface focuses on local integration, capture, curation, and retrieval. Cross-node exchange and decentralized recommendation remain future work and are not part of the current public shell.
- Architecture overview:
docs/architecture.md - Architecture decision records:
docs/adrs/README.md - Local artifact contract:
docs/feedback-artifacts.md - Governance and curation rules:
docs/governance.md - Operational guide:
docs/operations.md
feedback --help
learnings --help