https://github.com/vst/prix
The value-first CLI for planning work (experimental)
https://github.com/vst/prix
Last synced: 25 days ago
JSON representation
The value-first CLI for planning work (experimental)
- Host: GitHub
- URL: https://github.com/vst/prix
- Owner: vst
- License: mit
- Created: 2025-07-06T09:38:30.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-03-08T22:07:00.000Z (5 months ago)
- Last Synced: 2026-03-09T03:27:13.921Z (5 months ago)
- Language: Haskell
- Size: 106 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# prix - Value-First Work Planning
> **TODO** Provide minimum viable documentation.
## Development
Big, long build command for the impatient:
```sh
hpack &&
direnv reload &&
fourmolu -i app/ src/ test/ &&
prettier --write . &&
find . -iname "*.nix" -not -path "*/nix/sources.nix" -print0 | xargs --null nixpkgs-fmt &&
hlint app/ src/ test/ &&
cabal build -O0 &&
cabal run -O0 prix -- --version &&
cabal v1-test &&
cabal haddock -O0
```
To run checks, tests and build the codebase in the development environment, run:
```sh
cabal-dev-test-build
```
You can pass `-c` to clean the build artifacts first:
```sh
cabal-dev-test-build -c
```
As of Cabal 3.12, you can now run the above as an external `cabal` command:
```sh
cabal dev-test-build [-c]
```
[Nix]: https://nixos.org
[Flakes]: https://wiki.nixos.org/wiki/Flakes
[hpack]: https://github.com/sol/hpack
[cabal]: https://www.haskell.org/cabal