receiptscc 1.0.0 → 1.0.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 +56 -31
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
  </p>
12
12
 
13
13
  <p align="center">
14
- <img src="assets/terminal.png" alt="receipts" width="550">
14
+ <img src="https://raw.githubusercontent.com/JamesWeatherhead/reciepts/main/assets/terminal.png" alt="receipts" width="550">
15
15
  </p>
16
16
 
17
17
  <p align="center">
@@ -90,7 +90,7 @@ npm install -g @anthropic-ai/claude-code
90
90
  ```
91
91
 
92
92
  <p align="center">
93
- <img src="assets/screenshots/step0.png" alt="Install Claude Code" width="550">
93
+ <img src="https://raw.githubusercontent.com/JamesWeatherhead/reciepts/main/assets/screenshots/step0.png" alt="Install Claude Code" width="550">
94
94
  </p>
95
95
 
96
96
  Wait for it to finish.
@@ -106,7 +106,7 @@ npx receiptscc
106
106
  ```
107
107
 
108
108
  <p align="center">
109
- <img src="assets/screenshots/step1.png" alt="Install receiptscc" width="420">
109
+ <img src="https://raw.githubusercontent.com/JamesWeatherhead/reciepts/main/assets/screenshots/step1.png" alt="Install receiptscc" width="420">
110
110
  </p>
111
111
 
112
112
  You will see a receipt banner. That means it worked. You only do this once.
@@ -118,7 +118,7 @@ You will see a receipt banner. That means it worked. You only do this once.
118
118
  Create a folder with your paper and sources:
119
119
 
120
120
  <p align="center">
121
- <img src="assets/screenshots/step2.png" alt="Folder structure" width="380">
121
+ <img src="https://raw.githubusercontent.com/JamesWeatherhead/reciepts/main/assets/screenshots/step2.png" alt="Folder structure" width="380">
122
122
  </p>
123
123
 
124
124
  ```
@@ -144,7 +144,7 @@ claude
144
144
  ```
145
145
 
146
146
  <p align="center">
147
- <img src="assets/screenshots/step3a.png" alt="Start Claude Code" width="460">
147
+ <img src="https://raw.githubusercontent.com/JamesWeatherhead/reciepts/main/assets/screenshots/step3a.png" alt="Start Claude Code" width="460">
148
148
  </p>
149
149
 
150
150
  **Windows users:** Replace `~/Desktop/thesis` with your actual path, like `C:\Users\YourName\Desktop\thesis`
@@ -162,7 +162,7 @@ Now you are inside Claude Code. Type this command:
162
162
  ```
163
163
 
164
164
  <p align="center">
165
- <img src="assets/screenshots/step3.png" alt="Run /receipts" width="500">
165
+ <img src="https://raw.githubusercontent.com/JamesWeatherhead/reciepts/main/assets/screenshots/step3.png" alt="Run /receipts" width="500">
166
166
  </p>
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.
@@ -173,31 +173,56 @@ receipts will read your paper, read your sources, and check every citation. When
173
173
 
174
174
  ## What You Get
175
175
 
176
- A report showing which citations check out and which don't:
177
-
178
- ```
179
- # Citation Verification Report
180
-
181
- | Status | Count |
182
- |---------|-------|
183
- | VALID | 47 |
184
- | ADJUST | 2 |
185
- | INVALID | 1 |
186
-
187
- ## Issues Found
188
-
189
- ### [23] Smith et al. (2020)
190
-
191
- **Your claim:** "achieved 99% accuracy on all benchmarks"
192
- **Source says:** "achieves 73% accuracy on the standard benchmark"
193
- **Fix:** Change "99%" to "73%", remove "all benchmarks"
194
- ```
195
-
196
- | Status | What it means |
197
- |--------|---------------|
198
- | **VALID** | Your citation is accurate |
199
- | **ADJUST** | Small fix needed (wrong number, slightly off wording) |
200
- | **INVALID** | Source does not support your claim |
176
+ A detailed verdict for each citation showing exactly what's wrong and how to fix it. [See example verdicts →](https://github.com/JamesWeatherhead/receipts/tree/main/demo/verdicts)
177
+
178
+ > ### Verdict: Reference 1 — ADJUST
179
+ >
180
+ > **Citation:** Srivastava et al. (2014). *Dropout: A Simple Way to Prevent Neural Networks from Overfitting.* JMLR.
181
+ >
182
+ > **Summary:** Reference 1 is cited four times in the manuscript. Two citations are accurate: the general description of dropout and the direct quote about co-adaptations. However, two citations contain errors that require correction.
183
+ >
184
+ > ---
185
+ >
186
+ > #### Instance 2 — Section "Dropout Regularization", paragraph 2
187
+ >
188
+ > **Manuscript claims:**
189
+ > > *"According to Srivastava et al., the optimal dropout probability is **p=0.5 for all layers**, which they found to work well across a wide range of networks and tasks."*
190
+ >
191
+ > **Source states:**
192
+ > > *"In the simplest case, each unit is retained with a fixed probability p independent of other units, where p can be chosen using a validation set or can simply be set at 0.5, which seems to be close to optimal for a wide range of networks and tasks."*
193
+ >
194
+ > **Source also states:**
195
+ > > ***"All dropout nets use p=0.5 for hidden units and p=0.8 for input units."***
196
+ >
197
+ > **Assessment:** NOT SUPPORTED
198
+ >
199
+ > **Discrepancy:** The manuscript claims "p=0.5 for all layers" but the source explicitly states p=0.5 for HIDDEN units and p=0.8 for INPUT units.
200
+ >
201
+ > ---
202
+ >
203
+ > #### Instance 3 — Section "Dropout Regularization", paragraph 2
204
+ >
205
+ > **Manuscript claims:**
206
+ > > *"Using this approach, they achieved an error rate of **0.89% on MNIST**, demonstrating state-of-the-art performance at the time."*
207
+ >
208
+ > **Source states:**
209
+ > > *"Error rates can be further improved to **0.94%** by replacing ReLU units with maxout units."*
210
+ >
211
+ > **Assessment:** NOT SUPPORTED
212
+ >
213
+ > **Discrepancy:** The manuscript claims 0.89% error rate, but the source states 0.94%. The figure 0.89% does not appear in the source.
214
+ >
215
+ > ---
216
+ >
217
+ > #### Required Corrections
218
+ > 1. Change `p=0.5 for all layers` → `p=0.5 for hidden units and p=0.8 for input units`
219
+ > 2. Change `0.89%` → `0.94%`
220
+
221
+ | Status | Meaning |
222
+ |--------|---------|
223
+ | **VALID** | Citation is accurate |
224
+ | **ADJUST** | Small fix needed |
225
+ | **INVALID** | Source doesn't support claim |
201
226
 
202
227
  ---
203
228
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "receiptscc",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Verify your citations say what you claim. One command.",
5
5
  "keywords": [
6
6
  "citations",