@uwmd/cli 2.8.0 → 2.10.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.
- package/README.md +23 -0
- 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)
|
|
@@ -92,3 +106,12 @@ The plan requires exact `source_variant`, explicit `day_count` and a complete
|
|
|
92
106
|
with source digest and binding evidence. Refusals exit 1 and retain nested
|
|
93
107
|
diagnostics with `--json`. No input files are edited. This partial stream covers
|
|
94
108
|
rent receipts, concessions and TI/LC only; it is not a complete DCF.
|
|
109
|
+
|
|
110
|
+
### Property cash-flow assembly (2.9.0)
|
|
111
|
+
|
|
112
|
+
`uwmd assemble-property <file> <plan.json> [--json]` emits a read-only candidate
|
|
113
|
+
for explicitly covered unlevered, pre-tax cash flows in one declared currency.
|
|
114
|
+
It preserves source evidence and refuses missing or overlapping coverage. The
|
|
115
|
+
plan and source are not edited; no financial inputs are inferred. CLI 2.9.0
|
|
116
|
+
includes this command under Protocol 2.12.0.
|
|
117
|
+
See the [synthetic workflow](../../docs/PROPERTY_CASH_FLOW_WORKFLOW.md).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uwmd/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.10.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.
|
|
25
|
+
"@uwmd/core": "2.10.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/node": "^20.0.0",
|