obol-ai 0.2.28 → 0.2.29

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/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 0.2.29
2
+ - remove vercel from dynamic tools, fix silent decrypt failure on hostname change
3
+
1
4
  ## 0.2.28
2
5
  - fix telegram 429 rate limiting with auto-retry, slower timers, verbose batching
3
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obol-ai",
3
- "version": "0.2.28",
3
+ "version": "0.2.29",
4
4
  "description": "Self-evolving AI assistant that learns, remembers, and acts on its own. Persistent vector memory, self-rewriting personality, proactive heartbeats.",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -19,11 +19,6 @@ const OPTIONAL_TOOLS = {
19
19
  tools: ['create_pdf'],
20
20
  config: {},
21
21
  },
22
- vercel: {
23
- label: 'Vercel Deploy',
24
- tools: ['vercel_deploy', 'vercel_list'],
25
- config: {},
26
- },
27
22
  background: {
28
23
  label: 'Background Tasks',
29
24
  tools: ['background_task'],
@@ -117,9 +117,6 @@ Cannot access paths outside workspace or /tmp.
117
117
  ### Web (\`web_search\`)
118
118
  Search the web for current information.
119
119
 
120
- ### Vercel (\`vercel_deploy\`, \`vercel_list\`)
121
- Deploy directories to Vercel. Ship websites, dashboards, web apps.
122
-
123
120
  ### Background Tasks (\`background_task\`)
124
121
  Spawn heavy work (research, site building, complex analysis) in the background.
125
122
  The main conversation stays responsive. User gets progress updates every 30s.
@@ -5,7 +5,6 @@ const memoryTool = require('./tools/memory');
5
5
  const webTool = require('./tools/web');
6
6
  const filesTool = require('./tools/files');
7
7
  const secretsTool = require('./tools/secrets');
8
- const vercelTool = require('./tools/vercel');
9
8
  const backgroundTool = require('./tools/background');
10
9
  const telegramTool = require('./tools/telegram');
11
10
  const schedulerTool = require('./tools/scheduler');
@@ -21,7 +20,6 @@ const TOOL_MODULES = [
21
20
  webTool,
22
21
  filesTool,
23
22
  secretsTool,
24
- vercelTool,
25
23
  backgroundTool,
26
24
  telegramTool,
27
25
  schedulerTool,
package/src/config.js CHANGED
@@ -86,7 +86,10 @@ function decryptSensitiveFields(config) {
86
86
  if (ENCRYPTED_RE.test(val)) {
87
87
  try {
88
88
  setPath(config, p, decrypt(val, key));
89
- } catch {}
89
+ } catch {
90
+ setPath(config, p, null);
91
+ console.warn(`[config] Could not decrypt ${p} — hostname may have changed. Run: obol config`);
92
+ }
90
93
  } else {
91
94
  hadPlaintext = true;
92
95
  }