cursedops 0.5.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -185,8 +185,18 @@ exported definitions and this file exports nothing, so eighteen copies read as z
|
|
|
185
185
|
wrapper exists because `bun ../../tools/check-paths.ts .` died on its first step in every
|
|
186
186
|
worktree (2026-09-17). The walk and the worktree follow-back are the copies' own; **no
|
|
187
187
|
generation is still no pass** — a lone clone exits 1 saying which walk came back empty. Every
|
|
188
|
-
argument that is not `--also` passes through to the laws (`bun run paths --prune`).
|
|
189
|
-
|
|
188
|
+
argument that is not `--also` passes through to the laws (`bun run paths --prune`).
|
|
189
|
+
|
|
190
|
+
🔴 **Until the roster rule can read the bin, the wrapper is two lines that NAME the laws.**
|
|
191
|
+
`check-doc-citations`' `pathsRunsThis` proves a repo runs it by reading the `paths` command or
|
|
192
|
+
the one `scripts/` file it delegates to, so a bare `forge-paths` reads as unwired. The form that
|
|
193
|
+
passes today — and the one this repo uses — is:
|
|
194
|
+
|
|
195
|
+
```ts
|
|
196
|
+
// scripts/paths.ts, with "paths": "bun run scripts/paths.ts"
|
|
197
|
+
import { runGenerationLaws } from "cursedops/paths";
|
|
198
|
+
process.exit(runGenerationLaws(import.meta.dir, { laws: ["check-paths.ts", "check-doc-citations.ts"], argv: process.argv.slice(2) }));
|
|
199
|
+
```
|
|
190
200
|
|
|
191
201
|
## `cursedops/launchd`
|
|
192
202
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cursedops",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "The build-and-ops answers this generation's apps wrote independently and identically: finding a generation's roots — and printing a command that runs when pasted — without knowing a path, the generation's whole-tree laws run over one repo from a checkout or a worktree, macOS launchd agent install/replace/remove and the live port a job serves, the scaffolding and verdicts of a deployed smoke (origin probe, the smoke's own environment, a network that lies about DNS, a settled version), the static-serving helpers eight apps copied — the path-traversal guard among them — the API floor that keeps an unmatched /api/... from ever being answered with the app shell, the commit and dirty flag a checkout-served process reports, the Cloudflare Worker deploy toolkit four apps copied (the deploy sequence, exact-set secrets over a pipe, origin-first rollback, the curl edge fetch, the row-for-row D1 import proof), and the public-surface ratchet three published libraries each carried a forked copy of. Mechanism only — no app knows its name from here. Bun, zero runtime dependencies (typescript is an optional peer, for public-surface only), ships source.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
8
8
|
"lint": "biome check .",
|
|
9
9
|
"test": "bun test src",
|
|
10
|
-
"paths": "bun
|
|
10
|
+
"paths": "bun run scripts/paths.ts",
|
|
11
11
|
"verify": "bun run paths && bun run typecheck && bun run lint && bun run test",
|
|
12
12
|
"prepublishOnly": "bun run verify"
|
|
13
13
|
},
|