@vruum/skills 0.6.37 → 0.6.38
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.
|
|
3
|
+
"version": "0.6.38",
|
|
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.
|
|
3
|
+
"version": "0.6.38",
|
|
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.
|
|
3
|
+
"version": "0.6.38",
|
|
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": "
|
|
45
|
+
"contentHash": "8f29f37c388adede78f8ddc54b535374ceb48a4520bd4cf06616c3acfac81e97"
|
|
46
46
|
}
|
|
@@ -101,9 +101,12 @@ After presenting results, the user can request actions. Execute them using MCP t
|
|
|
101
101
|
- **Close deal** → `manage_deal` action=won or action=lost (payload carries win_factors / loss_reason)
|
|
102
102
|
- **Reopen deal** → `manage_deal` action=reopen with payload={stage}
|
|
103
103
|
- **Mark stalled** → `manage_deal` action=stalled (records the stalled outcome; payload optional)
|
|
104
|
+
- **Update account state** → `manage_account` action=state with id=<company_id> and payload={account_stage?, health_score?, arr_current?, arr_potential?, renewal_at?, notes?}. Do this whenever the review surfaced account-level facts: a stage that no longer matches reality (the backfilled stages have never been updated), a health read from the conversation, or ARR/renewal numbers the seller confirmed. The account row is what the impact scoreboard and deal_360 read — a stale stage there misleads every later review.
|
|
104
105
|
|
|
105
106
|
For batch actions ("advance all deals in proposal"), confirm with the user before executing.
|
|
106
107
|
|
|
108
|
+
**Account hygiene (every run):** for each reviewed deal's account, compare `account_state.account_stage` against what the deal review just showed (an `engaged`-stage account with a closed-won deal, or a `prospect` account with an active opportunity, is stale). Propose the corrected stage in the Step 3 summary and write it via `manage_account` action=state on approval. This is the write half of the accounts loop — the read half (scoreboard, deal_360) only works if reviews maintain it.
|
|
109
|
+
|
|
107
110
|
## Error handling
|
|
108
111
|
|
|
109
112
|
- If a subagent fails (LLM rate limit, timeout, tool error): present results for successful subagents, note failures
|
|
@@ -93,7 +93,8 @@ For each approved transcript:
|
|
|
93
93
|
Source: <transcript filename> (Google Drive)
|
|
94
94
|
```
|
|
95
95
|
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.
|
|
96
|
-
2. **
|
|
96
|
+
2. **Record the impact event** — call `manage_account` with action=record_impact, id=<the person's company_id> (from `get_person_360`), and payload={practice: "meeting", event_type: "meeting_held", person_id, summary: <the 1–2 sentence recap, WITHOUT the marker>}. This stamps the account's `first/last_impact_at` and feeds the impact scoreboard — a held meeting is exactly the "value delivered" moment that table exists to record. Skip silently if the person has no linked company.
|
|
97
|
+
3. **Create each approved task** — `manage_tasks` action=create with:
|
|
97
98
|
- `title` (the action item), `person_id` (+ `deal_id` if there is one)
|
|
98
99
|
- `priority`, and `due_at` as ISO-8601 **only if** a date was actually parseable (omit otherwise)
|
|
99
100
|
- `assigned_to` = the rep running this (leave to self; only assign a teammate if you know their Vruum user id)
|