@@ -33,9 +33,10 @@ Go straight to the first standalone package if you already know what you want: |
| 33 | 33 | - [fgof-clipboard](https://github.com/FortranGoingOnForty/fgof-clipboard) |
| 34 | 34 | - [fgof-screen](https://github.com/FortranGoingOnForty/fgof-screen) |
| 35 | 35 | - [fgof-jobs](https://github.com/FortranGoingOnForty/fgof-jobs) |
| 36 | +- [fgof-devloop](https://github.com/FortranGoingOnForty/fgof-devloop) |
| 36 | 37 | |
| 37 | | -The current active library target is `fgof-jobs`, with `fgof-archive` |
| 38 | | -and `fgof-sqlite` close behind in the backlog. |
| 38 | +The current active library target is `fgof-devloop`, with `fgof-archive` |
| 39 | +and `fgof-snapshot` close behind in the backlog. |
| 39 | 40 | |
| 40 | 41 | If you want local comparison checkouts for already-served or deferred areas, |
| 41 | 42 | use `./scripts/sync-refs.sh` to populate `.refs/` from the curated reference |
@@ -77,6 +78,7 @@ lib-modules/ |
| 77 | 78 | fgof-clipboard/ # git submodule |
| 78 | 79 | fgof-screen/ # git submodule |
| 79 | 80 | fgof-jobs/ # git submodule |
| 81 | + fgof-devloop/ # git submodule |
| 80 | 82 | ... |
| 81 | 83 | scripts/ |
| 82 | 84 | add-package-submodule.sh |
@@ -101,7 +103,8 @@ lib-modules/ |
| 101 | 103 | | [`fgof-state`](https://github.com/FortranGoingOnForty/fgof-state) | released `v0.1.0` | standalone repo + submodule | persistent app and workspace state helpers, mounted at `packages/fgof-state` | |
| 102 | 104 | | [`fgof-clipboard`](https://github.com/FortranGoingOnForty/fgof-clipboard) | released `v0.1.0` | standalone repo + submodule | clipboard text helpers, mounted at `packages/fgof-clipboard` | |
| 103 | 105 | | [`fgof-screen`](https://github.com/FortranGoingOnForty/fgof-screen) | released `v0.1.0` | standalone repo + submodule | virtual screen buffer helpers, mounted at `packages/fgof-screen` | |
| 104 | | -| [`fgof-jobs`](https://github.com/FortranGoingOnForty/fgof-jobs) | scaffolded | standalone repo + submodule | background job and wait-model helpers, mounted at `packages/fgof-jobs` | |
| 106 | +| [`fgof-jobs`](https://github.com/FortranGoingOnForty/fgof-jobs) | released `v0.1.0` | standalone repo + submodule | background job and wait-model helpers, mounted at `packages/fgof-jobs` | |
| 107 | +| [`fgof-devloop`](https://github.com/FortranGoingOnForty/fgof-devloop) | scaffolded | standalone repo + submodule | watch-driven development loop helpers, mounted at `packages/fgof-devloop` | |
| 105 | 108 | |
| 106 | 109 | As packages are created: |
| 107 | 110 | |
@@ -144,5 +147,6 @@ Go directly to an individual package repo when you only want one library. |
| 144 | 147 | - [`fgof-clipboard`](https://github.com/FortranGoingOnForty/fgof-clipboard): clipboard text helpers for command-line and interactive tools |
| 145 | 148 | - [`fgof-screen`](https://github.com/FortranGoingOnForty/fgof-screen): virtual screen buffer helpers for future TUIs and prompt layers |
| 146 | 149 | - [`fgof-jobs`](https://github.com/FortranGoingOnForty/fgof-jobs): background job and wait-model helpers for shells, supervisors, and tool hosts |
| 150 | +- [`fgof-devloop`](https://github.com/FortranGoingOnForty/fgof-devloop): watch-driven development loop helpers for rebuild, restart, and smoke workflows |
| 147 | 151 | |
| 148 | 152 | See [LANDSCAPE.md](LANDSCAPE.md) for the broader ecosystem assessment and package backlog. |