salvatron 0.1.0 → 0.1.1
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 +9 -2
- package/package.json +1 -1
- package/src/cli.mjs +1 -1
package/README.md
CHANGED
|
@@ -67,8 +67,15 @@ node src/cli.mjs report ~/dev
|
|
|
67
67
|
| `salvatron report [dir]` | The full digest |
|
|
68
68
|
|
|
69
69
|
Options: `--json` for machine-readable output, `-n <count>` to limit lists,
|
|
70
|
-
`--stale <days>` to bound ship-candidate staleness (default 120)
|
|
71
|
-
|
|
70
|
+
`--stale <days>` to bound ship-candidate staleness (default 120).
|
|
71
|
+
|
|
72
|
+
### `--tyrant`
|
|
73
|
+
|
|
74
|
+
Appends Salvatron's in-character commentary to `report` — the `⏣` lines in
|
|
75
|
+
the example above, roasting your project count, uncommitted work, and
|
|
76
|
+
version-control hygiene. **Purely cosmetic**: it changes no behavior, reads
|
|
77
|
+
nothing extra, and deletes nothing. It exists because the canonical Salvatron
|
|
78
|
+
was a tyrant, and this one is only allowed to be one out loud.
|
|
72
79
|
|
|
73
80
|
## How it works
|
|
74
81
|
|
package/package.json
CHANGED
package/src/cli.mjs
CHANGED
|
@@ -30,7 +30,7 @@ Options:
|
|
|
30
30
|
--json Machine-readable output
|
|
31
31
|
-n <count> Limit list length (default 10)
|
|
32
32
|
--stale <days> Max staleness for ship candidates (default 120)
|
|
33
|
-
--tyrant
|
|
33
|
+
--tyrant Add judgmental in-character commentary to report (cosmetic only)
|
|
34
34
|
-h, --help This help
|
|
35
35
|
|
|
36
36
|
[dir] defaults to the current directory. Point it at the graveyard:
|