@vruum/skills 0.6.19 → 0.6.20

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vruum",
3
- "version": "0.6.19",
3
+ "version": "0.6.20",
4
4
  "description": "Vruum AI skills + remote MCP server for B2B GTM teams. Slash commands for outreach triage, engagement triage, pipeline filling, prospect enrichment, and reply diagnosis, paired with the full Vruum MCP tool surface over OAuth 2.1.",
5
5
  "author": {
6
6
  "name": "Vruum AI",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vruum",
3
- "version": "0.6.19",
3
+ "version": "0.6.20",
4
4
  "description": "Vruum AI skills + remote MCP server for B2B GTM teams. Skills for outreach triage, engagement triage, pipeline filling, prospect enrichment, and reply diagnosis, paired with the full Vruum MCP tool surface over OAuth 2.1.",
5
5
  "author": {
6
6
  "name": "Vruum AI",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vruum/skills",
3
- "version": "0.6.19",
3
+ "version": "0.6.20",
4
4
  "description": "Vruum AI skills for Claude Code, Claude Desktop, Codex CLI, and any AI assistant with a skill directory. Slash commands for outreach triage, engagement triage, pipeline filling, prospect enrichment, and reply diagnosis. Pairs with the Vruum MCP server at https://api.vruum.ai/mcp.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -42,5 +42,5 @@
42
42
  "outreach",
43
43
  "gtm"
44
44
  ],
45
- "contentHash": "48902855367f5e1eb50d347122377cd1b7126a77607576b708ab18dd1d3d011d"
45
+ "contentHash": "4ce9cba156c1aac9c8ccc3815020b6ee2ac510056092877763e9ee0f606bd805"
46
46
  }
@@ -64,7 +64,7 @@ Per transcript, show the user the complete proposal before writing anything:
64
64
  - **Meeting:** the recap + meeting date.
65
65
  - **Tasks:** the action-item list.
66
66
 
67
- **Idempotency check (do this before writing):** confirm the transcript isn't already logged — in `get_person_360` for the resolved person, scan recent **meeting** activity for the marker `[vruum-meeting:<doc_id>]` in the summary. If it's there, this transcript was already ingested → skip it (don't re-log, don't re-create tasks).
67
+ **Idempotency check (do this before writing):** confirm the transcript isn't already logged — in `get_person_360` for the resolved person, scan recent **meeting** activity for the marker `[vruum-meeting:<doc_id>]`. If it's there, this transcript was already ingested → skip it (don't re-log, don't re-create tasks). The marker must lead the summary (see Step 6) because `get_person_360` truncates each activity description to ~200 chars — a marker buried at the end is cut off and the scan misses it.
68
68
 
69
69
  The user **approves / edits / drops individual tasks / drops the whole transcript**. Only what they approve gets written.
70
70
 
@@ -80,12 +80,12 @@ For each approved transcript:
80
80
  - `deal_id` = the resolved deal (omit if none)
81
81
  - `summary` =
82
82
  ```
83
- <1–2 sentence recap>
83
+ [vruum-meeting:<doc_id>] <1–2 sentence recap>
84
84
 
85
85
  Attendees: <names / emails>
86
- Source: <transcript filename> Google Drive [vruum-meeting:<doc_id>]
86
+ Source: <transcript filename> (Google Drive)
87
87
  ```
88
- The `[vruum-meeting:<doc_id>]` marker is what makes re-runs idempotent (Step 5 scans for it). Keep it verbatim in the summary.
88
+ The `[vruum-meeting:<doc_id>]` marker is what makes re-runs idempotent (Step 5 scans for it). It **must be the very first thing in the summary** — `get_person_360` truncates the activity description to ~200 chars, so a marker placed at the end is cut off and the dedup scan silently fails (re-runs would create duplicate meetings). Keep it verbatim, at the front.
89
89
  2. **Create each approved task** — `manage_tasks` action=create with:
90
90
  - `title` (the action item), `person_id` (+ `deal_id` if there is one)
91
91
  - `priority`, and `due_at` as ISO-8601 **only if** a date was actually parseable (omit otherwise)