tokens-for-good 0.4.5 → 0.4.6

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
@@ -15,7 +15,7 @@ Works with Claude Code, OpenCode, Cursor, Windsurf, Devin, and Qwen Code as an M
15
15
 
16
16
  init is interactive: it asks for your API key, the cadence you want (daily / weekly / hourly / one-off), and then writes everything — MCP config, SessionStart hook, `/tfg` and `/tfg-schedule` skills, and your preference — in one shot.
17
17
 
18
- 3. **Open Claude Code.** Your first session acts on the cadence you picked automatically:
18
+ 3. **Open your AI coding tool.** Your first session acts on the cadence you picked automatically:
19
19
  - Scheduled → it sets up `/schedule` via the `/tfg-schedule` skill.
20
20
  - One-off → it kicks off a single research task via the `/tfg` skill.
21
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tokens-for-good",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
4
4
  "type": "module",
5
5
  "description": "Donate your spare AI tokens to research nonprofits for Fierce Philanthropy",
6
6
  "bin": {
@@ -1,4 +1,4 @@
1
- # Step 3: Humanize — Claude Code Instructions
1
+ # Step 3: Humanize — Instructions
2
2
 
3
3
  ## Inputs
4
4
 
package/skills/tfg.md CHANGED
@@ -21,7 +21,7 @@ The user wants to complete one Tokens for Good research cycle.
21
21
 
22
22
  ## If something goes wrong
23
23
 
24
- - **`claim_org` returns an error about an API key** → run `npx tokens-for-good init` in terminal and restart Claude Code.
24
+ - **`claim_org` returns an error about an API key** → run `npx tokens-for-good init` in terminal and restart your AI tool.
25
25
  - **A citation fails verification** → fix it or remove the claim it supported. Don't submit reports with broken citations.
26
26
  - **User interrupts mid-research** → the claim will auto-expire on the server side. No cleanup needed.
27
27
 
package/src/mcp-server.js CHANGED
@@ -17,7 +17,7 @@ const STATE_FILE = join(homedir(), '.tokens-for-good', 'state.json');
17
17
 
18
18
  const INIT_GUARD_MESSAGE = `Tokens for Good setup isn't complete on this machine yet.
19
19
 
20
- Tell the user to run this in their terminal (not in Claude), then restart Claude Code:
20
+ Tell the user to run this in their terminal (not here in the chat), then restart their AI tool:
21
21
 
22
22
  npx tokens-for-good init
23
23
 
@@ -50,7 +50,7 @@ const server = new McpServer({
50
50
 
51
51
  // --- No-key onboarding message ---
52
52
 
53
- const NO_KEY_INSTRUCTIONS = `The user wants to set up Tokens for Good. Tell them to run this in their terminal (not here in Claude), then restart Claude Code:
53
+ const NO_KEY_INSTRUCTIONS = `The user wants to set up Tokens for Good. Tell them to run this in their terminal (not here in the chat), then restart their AI tool:
54
54
 
55
55
  npx tokens-for-good init
56
56
 
@@ -60,7 +60,7 @@ The command walks them through everything in under a minute:
60
60
  3. Pick a cadence: **daily** (recommended), weekly, hourly, or one-off
61
61
  4. Confirm
62
62
 
63
- init writes everything — MCP config, SessionStart hook, /tfg and /tfg-schedule skills, and their recorded preference — in one shot. The first Claude Code session after init runs their chosen flow automatically.
63
+ init writes everything — MCP config, SessionStart hook, /tfg and /tfg-schedule skills, and their recorded preference — in one shot. The first session after init runs their chosen flow automatically.
64
64
 
65
65
  **What is Tokens for Good?** A way for developers to donate their spare AI subscription tokens to research nonprofit organizations for Fierce Philanthropy's social impact directory. Each org takes ~5 minutes and ~$0.20 in tokens. Contributors get credit on a public leaderboard.`;
66
66