truecourse 0.6.0-next.1 → 0.6.0-next.11
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/cli.mjs +7969 -6426
- package/package.json +1 -1
- package/public/assets/{index-CkKIAyL2.js → index-BABCLoif.js} +3 -3
- package/public/index.html +1 -1
- package/server.mjs +1301 -168
package/README.md
CHANGED
|
@@ -193,6 +193,8 @@ truecourse verify # Check code against the contracts → d
|
|
|
193
193
|
|
|
194
194
|
Resolve conflicts and review drifts visually in the [dashboard](#dashboard-web-ui)'s BL Drift section, or drive every step from the CLI.
|
|
195
195
|
|
|
196
|
+
> Like `analyze`, the spec → contracts → verify track requires a **git repository** — TrueCourse's baselines are commit-anchored (committable `LATEST.json`, diff vs HEAD, stashing the committed state). On a non-git folder these commands stop with a clear message and the dashboard hides their actions.
|
|
197
|
+
|
|
196
198
|
## How it works
|
|
197
199
|
|
|
198
200
|
Three stages run in order, each producing artifacts the next consumes:
|
|
@@ -254,17 +256,22 @@ truecourse spec docs uninclude <path>
|
|
|
254
256
|
|
|
255
257
|
# Contract extraction (canonical spec → .tc artifacts)
|
|
256
258
|
truecourse contracts generate # Extract / re-extract TC contract files
|
|
257
|
-
truecourse contracts list # List
|
|
259
|
+
truecourse contracts list # List artifacts (kind · identity · location)
|
|
260
|
+
truecourse contracts list --inferred / --authored # Only reverse-engineered (_inferred/) / only authored
|
|
258
261
|
truecourse contracts validate # Parse + resolve TC files; report unresolved refs
|
|
259
262
|
|
|
260
263
|
# Verification (code against contracts)
|
|
261
264
|
truecourse verify # Full run: stashes dirty tree (prompts), writes verifier/runs + LATEST + history
|
|
262
265
|
truecourse verify --diff # Git diff: working-tree drifts vs committed baseline (added/resolved/unchanged)
|
|
263
266
|
truecourse verify --stash / --no-stash # Pre-approve / skip stashing on a full run
|
|
267
|
+
truecourse drifts list # List drifts from the latest verify (paginated; reads LATEST, no re-run)
|
|
268
|
+
truecourse drifts list --all # Show every drift (no pagination)
|
|
269
|
+
truecourse drifts list --offset 20 / --severity critical,high # Page through / filter by severity
|
|
264
270
|
|
|
265
271
|
# Inference (code → inferred contracts) — reverse-engineer undocumented decisions
|
|
266
272
|
truecourse infer # Write inferred .tc files to contracts/_inferred/
|
|
267
273
|
truecourse infer --dry-run # Report what would be written, touch nothing
|
|
274
|
+
truecourse contracts list --inferred # Review what infer produced (kind · confidence · code location)
|
|
268
275
|
```
|
|
269
276
|
|
|
270
277
|
---
|
|
@@ -359,7 +366,7 @@ Patterns are anchored to the file's location, so `src/generated/` matches the to
|
|
|
359
366
|
|
|
360
367
|
## Telemetry
|
|
361
368
|
|
|
362
|
-
TrueCourse collects anonymous usage data
|
|
369
|
+
TrueCourse collects anonymous usage data to improve the product — one event per command (`analyze`, `spec_scan`, `contracts_generate`, `verify`, `infer`), each carrying only coarse, bucketed counts (file/artifact/drift/decision *ranges*, duration range), the surface (CLI vs dashboard), OS, and tool version. No source code, file paths, identities, or violation/drift details are collected. It is automatically disabled in CI environments.
|
|
363
370
|
|
|
364
371
|
```bash
|
|
365
372
|
truecourse telemetry status # Check telemetry status
|