receiptscc 0.9.1 → 0.9.2

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 CHANGED
@@ -167,7 +167,7 @@ Now you are inside Claude Code. Type this command:
167
167
 
168
168
  **Important:** The `/receipts` command only works inside Claude Code. If you type it in your regular terminal, it will not work.
169
169
 
170
- receipts will read your paper, read your sources, and check every citation. When it finishes, it creates a file called `RECIEPTS.md` in your folder with the results.
170
+ receipts will read your paper, read your sources, and check every citation. When it finishes, it creates a file called `RECEIPTS.md` in your folder with the results.
171
171
 
172
172
  ---
173
173
 
package/bin/install.js CHANGED
@@ -4,7 +4,7 @@ const fs = require('fs');
4
4
  const path = require('path');
5
5
  const os = require('os');
6
6
 
7
- const VERSION = '0.9.1';
7
+ const VERSION = '0.9.2';
8
8
  const PACKAGE_NAME = 'receiptscc';
9
9
 
10
10
  // Colors
@@ -19,7 +19,7 @@ Given a path, do everything in one shot:
19
19
  2. **Find sources** - Look in `<path>/sources/` for reference documents
20
20
  3. **Parse references** - Extract the reference list from the manuscript
21
21
  4. **Verify each reference** - Spawn one agent per reference (parallel)
22
- 5. **Generate report** - Write RECIEPTS.md with all findings
22
+ 5. **Generate report** - Write RECEIPTS.md with all findings
23
23
 
24
24
  ## Spawn Verification Agents
25
25
 
@@ -65,7 +65,7 @@ Launch ALL agents in ONE message (parallel execution).
65
65
 
66
66
  ## After Agents Complete
67
67
 
68
- Write `<path>/RECIEPTS.md`:
68
+ Write `<path>/RECEIPTS.md`:
69
69
 
70
70
  ```markdown
71
71
  # Citation Verification Report
@@ -102,4 +102,4 @@ Write `<path>/RECIEPTS.md`:
102
102
  [List VALID citations, or "None - all citations have issues"]
103
103
  ```
104
104
 
105
- Display: "Done. X issues found. See RECIEPTS.md"
105
+ Display: "Done. X issues found. See RECEIPTS.md"
package/demo/CHECKLIST.md CHANGED
@@ -18,4 +18,4 @@ None - all sources available.
18
18
 
19
19
  ## Verification Complete
20
20
 
21
- See [RECIEPTS.md](RECIEPTS.md) for full report.
21
+ See [RECEIPTS.md](RECEIPTS.md) for full report.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "receiptscc",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Verify your citations say what you claim. One command.",
5
5
  "keywords": [
6
6
  "citations",
File without changes