vipcare 0.6.3 → 0.6.4

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/lib/card.js CHANGED
@@ -375,7 +375,10 @@ function openPanel(index) {
375
375
  \${card.dos?.length || card.donts?.length ? \`<div class="do-dont">\${card.dos?.length ? \`<div class="do-box"><strong>✅ Do</strong><br>\${card.dos.join('<br>')}</div>\` : ''}\${card.donts?.length ? \`<div class="dont-box"><strong>❌ Don't</strong><br>\${card.donts.join('<br>')}</div>\` : ''}</div>\` : ''}
376
376
  \${card.gifts?.length ? \`<p style="font-size:0.85em">🎁 \${card.gifts.join(', ')}</p>\` : ''}
377
377
 
378
- \${card.competition?.length ? \`<h2>Competition</h2><p style="font-size:0.85em">\${card.competition.join(', ')}</p>\` : ''}
378
+ \${card.allies?.length || card.rivals?.length ? \`<h2>Relationships</h2>
379
+ \${card.allies?.length ? \`<div style="margin-bottom:8px">\${card.allies.map(a => \`<p style="font-size:0.85em;color:#166534">👍 <strong>\${a.name || a}</strong>\${a.reason ? \` — \${a.reason}\` : ''}</p>\`).join('')}</div>\` : ''}
380
+ \${card.rivals?.length ? \`<div>\${card.rivals.map(r => \`<p style="font-size:0.85em;color:#991b1b">👎 <strong>\${r.name || r}</strong>\${r.reason ? \` — \${r.reason}\` : ''}</p>\`).join('')}</div>\` : ''}
381
+ \` : ''}
379
382
 
380
383
  \${card.key_quotes?.length ? \`<h2>Quotes</h2>\${card.key_quotes.slice(0,4).map(q => \`<p style="font-size:0.8em;color:#475569;margin:3px 0">"\${q}"</p>\`).join('')}\` : ''}
381
384
 
package/lib/templates.js CHANGED
@@ -65,8 +65,18 @@ synthesize an actionable profile focused on HOW to work with this person.
65
65
 
66
66
  ---
67
67
 
68
- ## Competition & Positioning
69
- {Who they see as competition, how they position themselves}
68
+ ## Relationships & Alliances
69
+
70
+ **Allies / People they like:**
71
+ - {Person 1} — {why: shared values, mutual support, public praise, partnership, etc.}
72
+ - {Person 2} — {why}
73
+
74
+ **Rivals / People they clash with:**
75
+ - {Person 1} — {why: public disagreement, competitive tension, ideological difference, etc.}
76
+ - {Person 2} — {why}
77
+
78
+ **Key relationships:**
79
+ - {Notable relationship with context — mentor, investor, partner, adversary}
70
80
 
71
81
  ---
72
82
 
@@ -165,7 +175,8 @@ IMPORTANT: After the profile, output a JSON metadata block in EXACTLY this forma
165
175
  "dos": ["{do1}", "{do2}", "{do3}"],
166
176
  "donts": ["{dont1}", "{dont2}", "{dont3}"],
167
177
  "gifts": ["{gift idea 1}", "{gift idea 2}"],
168
- "competition": ["{competitor/rival 1}", "{competitor/rival 2}"],
178
+ "allies": [{"name": "{person}", "reason": "{why they like them}"}],
179
+ "rivals": [{"name": "{person}", "reason": "{why they clash}"}],
169
180
  "twitter_handle": "{handle without @}"
170
181
  }
171
182
  -->`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vipcare",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "description": "Auto-build VIP person profiles from Twitter/LinkedIn public data",
5
5
  "type": "module",
6
6
  "bin": {