@@ -15,35 +15,35 @@ just setup
1515Then run an app:
1616
1717``` bash
18- just dev # start Mark
19- just dev staged # start Staged
18+ just dev # start Staged
19+ just dev differ # start Differ
2020```
2121
2222## App Installation
2323
2424For end-user installs:
2525
26- - Mark (macOS): ` curl -fsSL https://raw.githubusercontent.com/block/builderbot/main/apps/mark /install.sh | bash `
27- - Staged : no standalone installer yet; run from source with ` just dev staged ` or build with ` just app staged build `
26+ - Staged (macOS): ` curl -fsSL https://raw.githubusercontent.com/block/builderbot/main/apps/staged /install.sh | bash `
27+ - Differ : no standalone installer yet; run from source with ` just dev differ ` or build with ` just app differ build `
2828
2929## Command Guide
3030
3131The root ` justfile ` supports both styles:
3232
3333``` bash
34- just dev staged # verb-first (recommended for humans)
35- just app staged dev # explicit delegation form
34+ just dev differ # verb-first (recommended for humans)
35+ just app differ dev # explicit delegation form
3636```
3737
3838Useful commands:
3939
4040``` bash
4141just apps # list app names
4242just setup # first-time setup (hooks + JS deps)
43- just dev # run Mark app
44- just dev staged # run Staged app
45- just mark # alias for `just app mark dev`
43+ just dev # run Staged app
44+ just dev differ # run Differ app
4645just staged # alias for `just app staged dev`
46+ just differ # alias for `just app differ dev`
4747just check # full non-modifying checks
4848just ci # alias of `just check`
4949just fmt # format repo
@@ -53,8 +53,8 @@ just test # run Rust workspace tests
5353
5454## Repo Layout
5555
56- - ` apps/mark ` : main desktop app.
57- - ` apps/staged ` : standalone staged/ diff app.
56+ - ` apps/staged ` : main desktop app.
57+ - ` apps/differ ` : standalone diff app.
5858- ` packages/diff-viewer ` : shared Svelte diff viewer package.
5959- ` crates/ ` : shared Rust crates.
6060- ` scripts/ ` : helper scripts used by app tooling.
@@ -63,14 +63,14 @@ just test # run Rust workspace tests
6363
6464Each app has its own ` justfile ` for app-specific workflows:
6565
66- - ` apps/mark/justfile `
6766- ` apps/staged/justfile `
67+ - ` apps/differ/justfile `
6868
6969Use root delegation to run any app recipe:
7070
7171``` bash
72- just app mark ci
73- just app staged build
72+ just app staged ci
73+ just app differ build
7474```
7575
7676## Troubleshooting
@@ -84,4 +84,4 @@ just app staged build
8484
8585## More Docs
8686
87- - Mark app docs: ` apps/mark /README.md `
87+ - Staged app docs: ` apps/staged /README.md `
0 commit comments