tenseleyflow/documentlanguagemodel / 8fd39a2

Browse files

docs(README): update status + quickstart — full v1.0 CLI surface is wired

Authored by espadonne
SHA
8fd39a25fc234cd1a591acabb748082f92d5545e
Parents
b2e58b0
Tree
dd5a664

1 changed file

StatusFile+-
M README.md 8 6
README.mdmodified
@@ -7,8 +7,10 @@ No telemetry, no uploads, no cloud. Built on PyTorch + HuggingFace with a
77
 hardware-aware planner that picks precision, attention, and batching for your
88
 box.
99
 
10
-**Status:** pre-alpha. The foundation (CLI, document parser, content-addressed
11
-store, hardware doctor) is landing now; real training lands next.
10
+**Status:** pre-release. The full v1.0 command surface is wired —
11
+`init`, `train`, `prompt`, `export`, `pack`, `unpack`, `doctor`,
12
+`show`, `migrate`. Reproducibility-lock and docs polish are the
13
+remaining Phase 3 work before a tagged release.
1214
 
1315
 ## What it does
1416
 
@@ -56,8 +58,6 @@ is pinned in the CLI; `dlm doctor` reports it).
5658
 
5759
 ## Quickstart
5860
 
59
-Once training lands (Sprint 9 — not shipped yet), the loop is:
60
-
6161
 ```sh
6262
 uv run dlm init mydoc.dlm                 # scaffold a new .dlm
6363
 # edit mydoc.dlm — write prose, add ### Q / ### A pairs, etc.
@@ -67,8 +67,10 @@ uv run dlm export mydoc.dlm --name mydoc # register with Ollama
6767
 ollama run mydoc                          # use it
6868
 ```
6969
 
70
-Today, `dlm doctor` and the `.dlm` parser surface are functional; other
71
-subcommands are stubs that report which release will implement them.
70
+`dlm pack mydoc.dlm` produces a portable `.dlm.pack` bundle you can
71
+hand off to another machine; `dlm unpack` installs it on the other end.
72
+`dlm show mydoc.dlm` prints training history, exports, and adapter
73
+state; `dlm doctor` reports the resolved hardware plan.
7274
 
7375
 ## Principles
7476