vipcare 0.3.28 → 0.3.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.
@@ -38,8 +38,8 @@ function callClaudeCli(prompt, timeout = 600000) {
38
38
  const tmpFile = path.join(os.tmpdir(), `vip-prompt-${Date.now()}.txt`);
39
39
  try {
40
40
  fs.writeFileSync(tmpFile, prompt);
41
- // Disable tools (text-only), no session persistence
42
- const result = spawnSync('claude', ['--print', '--tools', '', '--no-session-persistence'], {
41
+ // Disable tools (text-only), skip permissions, no session persistence
42
+ const result = spawnSync('claude', ['--print', '--tools', '', '--no-session-persistence', '--dangerously-skip-permissions'], {
43
43
  input: prompt,
44
44
  encoding: 'utf-8',
45
45
  timeout,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vipcare",
3
- "version": "0.3.28",
3
+ "version": "0.3.29",
4
4
  "description": "Auto-build VIP person profiles from Twitter/LinkedIn public data",
5
5
  "type": "module",
6
6
  "bin": {