clawbooks 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +12 -0
  2. package/package.json +5 -3
package/README.md CHANGED
@@ -26,6 +26,18 @@ clawbooks --help
26
26
  cp policy.md.example policy.md
27
27
  ```
28
28
 
29
+ ## Scoped Package Readiness
30
+
31
+ The primary package should stay `clawbooks` for the clean install path.
32
+ If you later want a brand-owned scoped companion package, the repo can stage `@clawbooks/cli` without renaming the live package:
33
+
34
+ ```bash
35
+ npm run scoped:prepare
36
+ npm run scoped:pack:dry-run
37
+ ```
38
+
39
+ This writes a temporary scoped package into `.dist/scoped-cli` for inspection or future publish work.
40
+
29
41
  ## How it works
30
42
 
31
43
  Clawbooks stores financial events and outputs context. The LLM you're already talking to does the accounting.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawbooks",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Accounting by inference, not by engine. Zero dependencies.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -20,12 +20,14 @@
20
20
  "llm"
21
21
  ],
22
22
  "bin": {
23
- "clawbooks": "./build/cli.js"
23
+ "clawbooks": "build/cli.js"
24
24
  },
25
25
  "scripts": {
26
26
  "build": "tsc && chmod 755 build/cli.js",
27
27
  "prepare": "npm run build",
28
- "prepack": "npm run build"
28
+ "prepack": "npm run build",
29
+ "scoped:prepare": "npm run build && node scripts/prepare-scoped-package.mjs",
30
+ "scoped:pack:dry-run": "npm run scoped:prepare && node scripts/prepare-scoped-package.mjs --pack --dry-run"
29
31
  },
30
32
  "files": [
31
33
  "build",