@uwmd/cli 1.1.3 → 1.5.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 +4 -4
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # `uwmd` — UW Markdown CLI
2
2
 
3
- The standalone command-line installer for [UW Markdown](https://github.com/jaredmaxey/uw-markdown) — an open standard for commercial real-estate underwriting documents.
3
+ The standalone command-line installer for [UW Markdown](https://github.com/UWMD-OSP/UW-Markdown) — an open standard for commercial real-estate underwriting documents.
4
4
 
5
5
  This package is a thin wrapper around [`@uwmd/core`](https://www.npmjs.com/package/@uwmd/core) so that anyone can use the tooling without cloning the monorepo.
6
6
 
@@ -29,7 +29,7 @@ uwmd <command> [args]
29
29
  | `uwmd render <file>` | Render to `chat`, `summary`, or full markdown |
30
30
  | `uwmd edit <file> <op.json>` | Apply a Tier-2 `EditOperation` and write back |
31
31
  | `uwmd calc <file> <calc.json>` | Evaluate a Tier-3 calc declaration |
32
- | `uwmd run <file>` | Invoke the Tier-4 Bancroft agent host |
32
+ | `uwmd run <file>` | Invoke UWMD optional Claude-backed Bancroft reference agent suite |
33
33
  | `uwmd compact <file>` | Strip narrative; emit the canonical JSON-only form |
34
34
  | `uwmd diff <a> <b>` | Diff two `.uw.md` files at the section level |
35
35
  | `uwmd summary <file>` | One-screen deal summary |
@@ -54,8 +54,8 @@ import { parseUWFile, validateUWFile, evaluateCalc } from '@uwmd/core';
54
54
 
55
55
  ## Conformance
56
56
 
57
- This CLI is the reference implementation of the UW Markdown protocol's Tier-1 (Reader), Tier-2 (Editor), Tier-3 (Calc Host), and Tier-4 (Agent Host) conformance levels. See the [protocol spec](https://github.com/jaredmaxey/uw-markdown/blob/main/spec/UW_PROTOCOL_v1.md) for what each tier guarantees.
57
+ This CLI is the reference implementation of the UW Markdown protocol's Tier-1 (Reader), Tier-2 (Editor), Tier-3 (Calc Host), and Tier-4 (Agent Host) conformance levels. See the [protocol spec](https://github.com/UWMD-OSP/UW-Markdown/blob/main/spec/UW_PROTOCOL_v1.md) for what each tier guarantees.
58
58
 
59
59
  ## License
60
60
 
61
- [MIT](https://github.com/jaredmaxey/uw-markdown/blob/main/LICENSE) © UW Markdown contributors.
61
+ [MIT](https://github.com/UWMD-OSP/UW-Markdown/blob/main/LICENSE) © UW Markdown contributors.
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@uwmd/cli",
3
- "version": "1.1.3",
3
+ "version": "1.5.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",
7
- "url": "git+https://github.com/jaredmaxey/uw-markdown.git",
7
+ "url": "git+https://github.com/UWMD-OSP/UW-Markdown.git",
8
8
  "directory": "packages/uwmd-cli"
9
9
  },
10
10
  "homepage": "https://uwmd.org",
@@ -18,10 +18,11 @@
18
18
  ],
19
19
  "scripts": {
20
20
  "test": "vitest run",
21
+ "typecheck:tests": "tsc -p tsconfig.test.json",
21
22
  "prepublishOnly": "npm --prefix ../uwmd-core run build && npm --prefix ../.. test && npm --prefix ../.. run conformance && npm --prefix ../.. run validate-schemas"
22
23
  },
23
24
  "dependencies": {
24
- "@uwmd/core": "1.1.2"
25
+ "@uwmd/core": "1.5.0"
25
26
  },
26
27
  "devDependencies": {
27
28
  "@types/node": "^20.0.0",