vipcare 0.3.13 → 0.3.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 (3) hide show
  1. package/README.md +1 -1
  2. package/bin/vip.js +1 -1
  3. 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/nickytonline/bird)), LinkedIn, web search
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 @nickytonline/bird', check: () => checkTool('bird') },
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vipcare",
3
- "version": "0.3.13",
3
+ "version": "0.3.14",
4
4
  "description": "Auto-build VIP person profiles from Twitter/LinkedIn public data",
5
5
  "type": "module",
6
6
  "bin": {