mustflow 2.22.46 → 2.22.49
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 +8 -0
- package/dist/cli/commands/api.js +1110 -0
- package/dist/cli/commands/run.js +107 -9
- package/dist/cli/commands/verify.js +4 -43
- package/dist/cli/i18n/en.js +19 -0
- package/dist/cli/i18n/es.js +19 -0
- package/dist/cli/i18n/fr.js +19 -0
- package/dist/cli/i18n/hi.js +19 -0
- package/dist/cli/i18n/ko.js +19 -0
- package/dist/cli/i18n/zh.js +19 -0
- package/dist/cli/index.js +1 -0
- package/dist/cli/lib/command-registry.js +6 -0
- package/dist/core/active-run-locks.js +10 -0
- package/dist/core/public-json-contracts.js +56 -0
- package/dist/core/verification-plan-id.js +44 -0
- package/package.json +1 -1
- package/schemas/README.md +7 -0
- package/schemas/command-catalog.schema.json +158 -0
- package/schemas/diff-risk.schema.json +149 -0
- package/schemas/health.schema.json +45 -0
- package/schemas/latest-evidence.schema.json +95 -0
- package/schemas/locks.schema.json +102 -0
- package/schemas/verification-plan.schema.json +245 -0
- package/schemas/workspace-summary.schema.json +282 -0
- package/templates/default/manifest.toml +1 -1
package/README.md
CHANGED
|
@@ -249,6 +249,13 @@ mf run mustflow_update_apply
|
|
|
249
249
|
| `mf classify --changed` | Classify changed paths, public surfaces, and validation reasons. Add `--write <path>` to save the classification report. |
|
|
250
250
|
| `mf contract-lint` | Inspect `.mustflow/config/commands.toml` for command-contract errors and warnings without running commands. Add `--suggest` to print non-runnable candidate snippets from existing command files. |
|
|
251
251
|
| `mf doctor` | Inspect the current mustflow root without writing files. |
|
|
252
|
+
| `mf api workspace-summary --json` | Print a stable, read-only JSON summary for coding agents and external harnesses. |
|
|
253
|
+
| `mf api command-catalog --json` | Print command intent availability and safe `mf run` entrypoints without exposing raw command strings. |
|
|
254
|
+
| `mf api verification-plan --changed --json` | Print a stable, read-only verification plan for changed files without executing commands. |
|
|
255
|
+
| `mf api latest-evidence --json` | Print bounded latest run or verify evidence without raw command output. |
|
|
256
|
+
| `mf api diff-risk --changed --json` | Print a compact changed-file risk, verification summary, and read-only residual correction signals. |
|
|
257
|
+
| `mf api health --json` | Print a compact workspace health report for quick agent gating. |
|
|
258
|
+
| `mf api locks --json` | Print active `mf run` locks for multi-session coordination. |
|
|
252
259
|
| `mf docs review list` | Show documents still waiting for prose review after agent edits. |
|
|
253
260
|
| `mf docs review add <path>` | Add or refresh a document review queue entry. |
|
|
254
261
|
| `mf docs review comment <path>` | Add multiline review guidance to an existing queue entry. |
|
|
@@ -258,6 +265,7 @@ mf run mustflow_update_apply
|
|
|
258
265
|
| `mf map --stdout` | Print the current mustflow root map to stdout. |
|
|
259
266
|
| `mf map --write` | Create or update `REPO_MAP.md`. |
|
|
260
267
|
| `mf run <intent>` | Run an allowed one-shot command. |
|
|
268
|
+
| `mf run <intent> --wait` | Wait for conflicting active run locks before executing the command. |
|
|
261
269
|
| `mf run <intent> --dry-run --json` | Preview whether an intent is runnable and what command metadata would be used, without executing it. |
|
|
262
270
|
| `mf index` | Build a SQLite index for mustflow docs, skill routes, command rules, command-effect locks, and file fingerprints. Use `--incremental` to reuse a compatible fresh index without rewriting it. |
|
|
263
271
|
| `mf search <query>` | Search docs, skills, skill routes, command rules, and command-effect locks in the SQLite index. |
|