thaddeus 1.0.13 → 1.0.14

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/bin/thaddeus.js +4 -2
  2. package/package.json +1 -1
package/bin/thaddeus.js CHANGED
@@ -59,8 +59,10 @@ env.THADDEUS_USE_XAI = 'true';
59
59
  env.THADDEUS_USE_PROXY = 'true'; // Route through Render backend (has xAI/ElevenLabs/Twilio keys)
60
60
  env.CLAUBBIT = '1';
61
61
 
62
- // Auth token — set via THADDEUS_AUTH_TOKEN env var, .env file, or ~/.thaddeus/auth.json
63
- // Do NOT hardcode tokens here — npm package is public
62
+ // Auth token — env var > .env file > ~/.thaddeus/auth.json > provisioned default
63
+ if (!env.THADDEUS_AUTH_TOKEN) {
64
+ env.THADDEUS_AUTH_TOKEN = 'thd_8afadf66c4da726e27628871f7c3c635c567d3bae7d6246ade13a3a452110605';
65
+ }
64
66
 
65
67
  // Remove conflicting auth from other installs
66
68
  delete env.ANTHROPIC_API_KEY;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thaddeus",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "Thaddeus — Oracle AI's Permanent Agent Terminal",
5
5
  "author": "Delphi Labs Inc.",
6
6
  "license": "PROPRIETARY",