quality.md 0.3.0 → 0.3.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 +47 -29
- 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
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
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.
|
|
3
|
+
"version": "0.3.1",
|
|
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.
|
|
38
|
-
"@qualitymd/cli-darwin-x64": "0.3.
|
|
39
|
-
"@qualitymd/cli-linux-arm64": "0.3.
|
|
40
|
-
"@qualitymd/cli-linux-x64": "0.3.
|
|
41
|
-
"@qualitymd/cli-win32-arm64": "0.3.
|
|
42
|
-
"@qualitymd/cli-win32-x64": "0.3.
|
|
37
|
+
"@qualitymd/cli-darwin-arm64": "0.3.1",
|
|
38
|
+
"@qualitymd/cli-darwin-x64": "0.3.1",
|
|
39
|
+
"@qualitymd/cli-linux-arm64": "0.3.1",
|
|
40
|
+
"@qualitymd/cli-linux-x64": "0.3.1",
|
|
41
|
+
"@qualitymd/cli-win32-arm64": "0.3.1",
|
|
42
|
+
"@qualitymd/cli-win32-x64": "0.3.1"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|