Declarative feedback loop manager
Go to file
Tom Sydney Kerckhove 0000f3490b refactor first
2022-03-06 12:40:35 +01:00
feedback refactor first 2022-03-06 12:40:35 +01:00
nix Debouncing and filtering of events 2022-03-05 17:03:53 +01:00
.gitignore Initial commit 2022-03-05 15:12:28 +01:00
.hlint.yaml Configurable loops 2022-03-06 12:02:43 +01:00
ci.nix Initial commit 2022-03-05 15:12:28 +01:00
default.nix Initial commit 2022-03-05 15:12:28 +01:00
feedback.yaml Per-loop output configuration 2022-03-06 12:33:08 +01:00
README.md Per-loop output configuration 2022-03-06 12:33:08 +01:00
shell.nix Initial commit 2022-03-05 15:12:28 +01:00
stack.yaml tore out the tui 2022-03-05 23:12:35 +01:00

Feedback loop

A general purpose tool to set up good feedback loops and share them with your team.

Example

Working on nix code?

feedback -- nix-build --no-out-link

Features & Comparison with other tools

feedback steeloverseer watchexec entr
Indication of command starting ✔️ ✔️ C C
Indication of time ✔️ C C C
Clear screen between feedback ✔️ C C ✔️
Gitignore-aware 🚧 ✖️ ✔️
Named feedback loops ✔️ ✖️
Configurable feedback loops ✔️ ✔️
Cancelling previous runs that aren't done yet ✔️ ✔️ ✔️
Long-form flags for every option ✔️ ✔️ ✔️
  • ✔️: Supported
  • C: Possible but you have to write some code yourself
  • 🚧 — Under development
  • ✖️: Not supported
  • ?: I don't know.

Someday/maybe ideas

  • I want to have a good idea of the current state of things:
    • Is it blocking on CPU, on memory, on network?
  • Manually activate a run
  • Manually cancel and re-activate a run
  • Low latency between change and rerun.
  • Cancelling failed feedback loops from before.
  • Ideally pipes still work in the loop, so we can do feedback "nix-build | cachix push mycache".