vipcare 0.3.13 → 0.3.15
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 +1 -1
- package/bin/vip.js +1 -1
- package/lib/synthesizer.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -73,7 +73,7 @@ vip update sam-altman
|
|
|
73
73
|
## Features
|
|
74
74
|
|
|
75
75
|
- **Auto profile building** — Give a name or URL, get a structured profile
|
|
76
|
-
- **Multi-source data** — Twitter (via [bird CLI](https://github.com/
|
|
76
|
+
- **Multi-source data** — Twitter (via [bird CLI](https://github.com/steipete/bird)), LinkedIn, web search
|
|
77
77
|
- **AI synthesis** — Claude CLI, Anthropic API, or GitHub Copilot CLI
|
|
78
78
|
- **Auto monitoring** — Scheduled profile refresh with change detection (macOS launchd)
|
|
79
79
|
- **Markdown output** — One `.md` file per person
|
package/bin/vip.js
CHANGED
|
@@ -862,7 +862,7 @@ program.command('init')
|
|
|
862
862
|
console.log(c.bold(c.cyan('\nChecking dependencies...\n')));
|
|
863
863
|
|
|
864
864
|
const deps = [
|
|
865
|
-
{ name: 'bird', label: 'Bird CLI (Twitter data)', install: 'npm install -g @
|
|
865
|
+
{ name: 'bird', label: 'Bird CLI (Twitter data)', install: 'npm install -g @steipete/bird', check: () => checkTool('bird') },
|
|
866
866
|
{ name: 'ddgs', label: 'DDGS (web search)', install: 'pip install ddgs', check: () => checkTool('ddgs') || fs.existsSync(path.join(os.homedir(), 'Library', 'Python', '3.9', 'bin', 'ddgs')) },
|
|
867
867
|
{ name: 'claude', label: 'Claude Code CLI (AI synthesis)', install: 'npm install -g @anthropic-ai/claude-code', check: () => checkTool('claude') },
|
|
868
868
|
{ name: 'yt-dlp', label: 'yt-dlp (YouTube download)', install: 'pip install yt-dlp', check: () => checkTool('yt-dlp') },
|
package/lib/synthesizer.js
CHANGED
|
@@ -9,8 +9,8 @@ function getBackend() {
|
|
|
9
9
|
const config = loadConfig();
|
|
10
10
|
if (config.ai_backend) return config.ai_backend.toLowerCase();
|
|
11
11
|
|
|
12
|
-
if (process.env.ANTHROPIC_API_KEY || config.anthropic_api_key) return 'anthropic';
|
|
13
12
|
if (checkTool('claude')) return 'claude-cli';
|
|
13
|
+
if (process.env.ANTHROPIC_API_KEY || config.anthropic_api_key) return 'anthropic';
|
|
14
14
|
if (checkTool('gh') && copilotAvailable()) return 'copilot-cli';
|
|
15
15
|
|
|
16
16
|
throw new Error(
|