Engagement triage
Skill for clearing the warming and nurture engagement queue — LinkedIn comments and reactions — through MCP or CLI.
Engagement triage clears the engagement queue: the warming and nurture
touches — LinkedIn comments and reactions — that keep relationships alive
between direct outreach. Pull the queue, polish or approve each item, skip the
ones that don't fit the relationship stage, and batch-approve the reviewed set.
The engagement-triage skill automates the same motion with parallel uplift and
review.
CLI flow
# 1. Pull the engagement queue (optionally filter by status).
vruum engagement queue --status draft
# 2. Approve a single engagement once you've read it.
vruum engagement approve <id>
# 3. Polish a comment or change a reaction before approving.
vruum engagement edit <id> --content "<revised comment>"
# 4. Skip anything that doesn't fit the relationship stage.
vruum engagement skip <id>
# 5. Batch-approve a reviewed set (comma-separated ids).
vruum engagement bulk-approve --ids <id_a>,<id_b>,<id_c>MCP flow
get_engagement_review returns the queue with each item's relationship context;
manage_engagements approves, edits, or skips items (one id or an array). Both are
default-loaded MCP tools.
get_engagement_review() → the engagement queue + context
manage_engagements(action="approve", id=…)
manage_engagements(action="edit", id=…, payload={content: "<revised comment>"})
manage_engagements(action="skip", id=…)For anything outside the engagement surface, use the local vruum CLI.
Use the skill
The engagement-triage skill runs the queue through parallel subagent uplift and
review — it rewrites weak comments, flags AI tells, checks relationship-stage
fit, and returns a reviewed batch ready to approve.
# CLI: read the packaged playbook.
vruum skills list
vruum skills show engagement-triageFor harness-native execution, install the Vruum-shipped skills through the
plugin, vruum init, or @vruum/skills, then ask the harness to invoke
engagement-triage. The MCP skill facade is for team skills saved in Vruum,
not these shipped package skills.