@uwmd/cli 2.9.0 → 2.11.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 +14 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -38,6 +38,20 @@ uwmd <command> [args]
38
38
  | `uwmd convert <file> --to uw-json\|uw-xml\|uw-csv-bundle` | Convert Markdown, verified JSON/XML, or normalized CSV ZIP bundles |
39
39
  | `uwmd layers <file>` | Show the agent-context layer breakdown |
40
40
 
41
+ The source checkout also implements the **unreleased** read-only command
42
+ `uwmd verify-cash-flows <file> [--variant <name>] [--json]`. It checks stated
43
+ dated-cash-flow metrics with the existing verifier. Exit 0 means nonempty verified
44
+ claims, 1 means failure/input refusal, and 3 means unverifiable or no stated
45
+ metrics. This command is not included in CLI 2.9.0. See the
46
+ [workflow and limitations](../../docs/PROPERTY_CASH_FLOW_WORKFLOW.md#check-stated-cash-flow-metrics-from-the-cli-unreleased).
47
+
48
+ The source checkout also implements the **unreleased** read-only command
49
+ `uwmd inspect-property-cash-flows <file> [--json]`. It inventories exact
50
+ lease-up variants, periods, supplemental rows and stated metric names so an
51
+ author can prepare an RFC 0045 assembly plan without guessing the source
52
+ shape. It never assigns cash-flow categories, dates, zeros or assertions. See
53
+ the [workflow and limitations](../../docs/PROPERTY_CASH_FLOW_WORKFLOW.md#prepare-a-real-deal-plan-without-inventing-inputs).
54
+
41
55
  Run any command without arguments for usage help.
42
56
 
43
57
  ## Calculation context files (source implementation)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uwmd/cli",
3
- "version": "2.9.0",
3
+ "version": "2.11.0",
4
4
  "description": "Command-line installer for UW Markdown — `npx uwmd init|parse|validate|render|run` for .uw.md underwriting files. Thin wrapper over @uwmd/core.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,7 +22,7 @@
22
22
  "prepublishOnly": "npm --prefix ../uwmd-core run build && npm --prefix ../.. test && npm --prefix ../.. run conformance && npm --prefix ../.. run validate-schemas"
23
23
  },
24
24
  "dependencies": {
25
- "@uwmd/core": "2.9.0"
25
+ "@uwmd/core": "2.11.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^20.0.0",