vipcare 0.3.17 → 0.3.18
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/bin/vip.js +3 -3
- package/package.json +1 -1
package/bin/vip.js
CHANGED
|
@@ -910,10 +910,10 @@ program.command('init')
|
|
|
910
910
|
|
|
911
911
|
const deps = [
|
|
912
912
|
{ name: 'bird', label: 'Bird CLI (Twitter data)', install: 'npm install -g @steipete/bird', check: () => checkTool('bird') },
|
|
913
|
-
{ name: 'ddgs', label: 'DDGS (web search)', install: '
|
|
913
|
+
{ name: 'ddgs', label: 'DDGS (web search)', install: 'pip3 install ddgs', check: () => checkTool('ddgs') || fs.existsSync(path.join(os.homedir(), 'Library', 'Python', '3.9', 'bin', 'ddgs')) },
|
|
914
914
|
{ name: 'claude', label: 'Claude Code CLI (AI synthesis)', install: 'npm install -g @anthropic-ai/claude-code', check: () => checkTool('claude') },
|
|
915
|
-
{ name: 'yt-dlp', label: 'yt-dlp (YouTube download)', install: '
|
|
916
|
-
{ name: 'whisper', label: 'Whisper (YouTube transcription)', install: '
|
|
915
|
+
{ name: 'yt-dlp', label: 'yt-dlp (YouTube download)', install: 'pip3 install yt-dlp', check: () => checkTool('yt-dlp') },
|
|
916
|
+
{ name: 'whisper', label: 'Whisper (YouTube transcription)', install: 'pip3 install openai-whisper', check: () => checkTool('whisper') },
|
|
917
917
|
];
|
|
918
918
|
|
|
919
919
|
const missing = [];
|