quality.md 0.3.0 → 0.4.0

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.
Files changed (2) hide show
  1. package/README.md +47 -29
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -3,6 +3,22 @@
3
3
  **QUALITY.md** is an agent-friendly file format and companion agent skill and
4
4
  CLI for continuously improving the quality of coding agent and AI assistant projects/harnesses.
5
5
 
6
+ ## Why QUALITY.md
7
+
8
+ As software — and the agents that write it — moves faster, quality erodes
9
+ quietly through three accumulating debts:
10
+
11
+ - **Technical debt** — code drifting from where it should be.
12
+ - **Cognitive debt** — the mounting burden of understanding complex or
13
+ under-documented systems.
14
+ - **Intent debt** — software diverging from what stakeholders actually need.
15
+
16
+ QUALITY.md makes a team's quality expectations explicit and checkable, so those
17
+ gaps stay visible and addressable instead of compounding.
18
+
19
+ > The three-debt framing draws on Margaret-Anne Storey, *The Triple Debt of
20
+ > Software Development* ([arXiv:2603.22106](https://arxiv.org/abs/2603.22106)).
21
+
6
22
  ## Install
7
23
 
8
24
  1. Install the agent skill:
@@ -185,35 +201,37 @@ assessment -> findings -> rating result
185
201
  > `qualitymd init`, `qualitymd lint`, `qualitymd spec`, `qualitymd status`, and the
186
202
  > `qualitymd evaluation` run-record surface.
187
203
 
188
- `qualitymd` draws one hard line: the **CLI is deterministic and never calls a
189
- model.** It scaffolds and validates a `QUALITY.md`, resolves target nodes and
190
- their `source` manifests, records evaluation artifacts, renders reports, and
191
- gates CI. The deep, judgment-based evaluation of a subject against its model is
192
- carried by **skills**, not by any CLI command.
193
-
194
- The deterministic surface:
195
-
196
- - **`qualitymd init`** — scaffold a starter `QUALITY.md` to fill in.
197
- - **`qualitymd lint`** validate a file's structure, fast and deterministic,
198
- exiting non-zero on errors so it drops into CI.
199
- - **`qualitymd spec`** emit the bundled `QUALITY.md` format specification.
200
- - **`qualitymd status`** — emit a deterministic project-state snapshot for
201
- routing, automation, and agent use.
202
- - **`qualitymd version`** show structured CLI and bundled specification
203
- version metadata.
204
- - **`qualitymd upgrade --check`** — explicitly check the current install method,
205
- latest version, and recommended upgrade action.
206
- - **`qualitymd evaluation create-run`** — create and number an evaluation run
207
- folder.
208
- - **`qualitymd evaluation add-record`** — write assessment, analysis, and
209
- recommendation records from judgment payloads.
210
- - **`qualitymd evaluation set-planned-coverage`** — write optional planned
211
- assessment and analysis coverage for resume diagnostics.
212
- - **`qualitymd evaluation show-status`** — inspect whether a run is ready to
213
- render.
214
- - **`qualitymd evaluation build-report`** — derive `report-summary.md`,
215
- `report.md`, and `report.json`, and optionally gate with
216
- `--fail-at-or-below`.
204
+ `qualitymd` draws one hard line: the **CLI never asks an AI model to judge your
205
+ project.** It creates and checks `QUALITY.md` files, shows what the file covers,
206
+ writes evaluation records for the `/quality` skill, renders reports, and can
207
+ fail CI when ratings fall below your chosen bar. The judgment work happens in
208
+ the skill, not in the CLI.
209
+
210
+ ### Common commands
211
+
212
+ | Goal | Command |
213
+ | ---------------------- | -------------------------------- |
214
+ | Show the format rules | `qualitymd spec` |
215
+ | Create a starter file | `qualitymd init [path]` |
216
+ | Check a file | `qualitymd lint [path]` |
217
+ | Fix simple lint issues | `qualitymd lint --fix [path]` |
218
+ | Show project status | `qualitymd status [path] --json` |
219
+ | Show version info | `qualitymd version --json` |
220
+ | Check for updates | `qualitymd upgrade --check` |
221
+ | Show command help | `qualitymd <command> --help` |
222
+
223
+ Typical local loop:
224
+
225
+ ```sh
226
+ qualitymd spec
227
+ qualitymd init
228
+ qualitymd lint
229
+ qualitymd status --json
230
+ ```
231
+
232
+ The `/quality` skill uses additional evaluation commands behind the scenes.
233
+ The detailed command guide lives in the bundled
234
+ [`CLI Quick Reference`](skills/quality/resources/cli-quick-reference.md).
217
235
 
218
236
  ## Conceptual model
219
237
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quality.md",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Companion CLI for the QUALITY.md file format and /quality agent skill, used to evaluate and improve AI assistant projects and harnesses.",
5
5
  "homepage": "https://getquality.md",
6
6
  "keywords": [
@@ -34,12 +34,12 @@
34
34
  "bin"
35
35
  ],
36
36
  "optionalDependencies": {
37
- "@qualitymd/cli-darwin-arm64": "0.3.0",
38
- "@qualitymd/cli-darwin-x64": "0.3.0",
39
- "@qualitymd/cli-linux-arm64": "0.3.0",
40
- "@qualitymd/cli-linux-x64": "0.3.0",
41
- "@qualitymd/cli-win32-arm64": "0.3.0",
42
- "@qualitymd/cli-win32-x64": "0.3.0"
37
+ "@qualitymd/cli-darwin-arm64": "0.4.0",
38
+ "@qualitymd/cli-darwin-x64": "0.4.0",
39
+ "@qualitymd/cli-linux-arm64": "0.4.0",
40
+ "@qualitymd/cli-linux-x64": "0.4.0",
41
+ "@qualitymd/cli-win32-arm64": "0.4.0",
42
+ "@qualitymd/cli-win32-x64": "0.4.0"
43
43
  },
44
44
  "publishConfig": {
45
45
  "access": "public"