AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Investor Relationship Tracker

skill-igptai-skills-investor-relationship-tracker · by igptai

Tracks the health and status of every investor relationship from email — last contact, open commitments, promises made, sentiment, and which investors have gone quiet. Use when a founder wants to manage investor relations proactively and ensure no relationship is neglected. Triggers on "investor relationships", "investor tracker", "which investors have I not spoken to", "investor outreach status"…

No reviews yet
0 installs
35 views
0.0% view→install

Install

$ agentstack add skill-igptai-skills-investor-relationship-tracker

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-igptai-skills-investor-relationship-tracker)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Investor Relationship Tracker? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Investor Relationship Tracker

Prerequisites

This skill needs the iGPT MCP at https://mcp.igpt.ai/.

If the MCP tools aren't available or return an auth error, tell the user to install the iGPT plugin (/plugin marketplace add igptai/skills) or add https://mcp.igpt.ai/ as a connector, then complete OAuth and say "ready". Retry once after they confirm. Never invent tokens or OAuth URLs. For deeper troubleshooting: https://raw.githubusercontent.com/igptai/skills/main/shared/mcp-guard.md


What This Skill Does

Reviews all investor-related email threads to produce a relationship health map — last contact date, conversation tone, open commitments, any asks that were made, and which relationships have gone quiet and need rekindling.


Workflow

  1. Before calling any tool, collect these values from the user. Offer the

defaults and let the user override them; do not invent values they did not give.

  • [time_range] — what window of email to scan. The user may give this

in any form ("last 12 months", "the last year", "May 2024", "since the last update"). Default: the last 12 months. Keep the user's natural phrasing for use in the ask input; convert to ISO dates separately for the search call.

  • [investor_scope] — either "all" (default) or the name of a specific

investor to focus on.

  • [investorclause] — derived. When [investorscope] is not "all", set

to " for investor [investorscope]". When [investorscope] is "all", set to empty string.

  1. Call search with:
  • query: investor update portfolio company board check-in intro meeting

committed interest follow up (if [investor_scope] is not "all", append the investor name to the query)

  • datefrom: ISO start date derived from [timerange]
  • dateto: ISO end date derived from [timerange] (or today if open-ended)
  1. Call ask with:
  • input: Review all investor-related email threads from [timerange][investorclause]. For each investor identify: when you last had meaningful contact, the overall tone and sentiment of the relationship, any commitments or promises made by either side that remain open, any asks the investor made that were not fully addressed, and whether the relationship appears warm, cool, or stale based on email patterns.
  • output_format:

{ "strict": true, "schema": { "type": "object", "description": "Investor relationship health tracker across all investor contacts", "additionalProperties": false, "properties": { "asof": { "type": "string", "description": "ISO8601 date when this report was generated" }, "investors": { "type": "array", "description": "List of every investor with relationship health assessment", "items": { "type": "object", "description": "Relationship status for a single investor", "additionalProperties": false, "properties": { "investorname": { "type": "string", "description": "Name of the investor or investment firm" }, "investortype": { "type": "string", "description": "Type of investor", "enum": [ "leadvc", "participatingvc", "angel", "familyoffice", "strategic", "prospective", "other" ] }, "lastcontactdate": { "type": "string", "description": "ISO8601 date of the most recent meaningful email exchange" }, "dayssincecontact": { "type": "number", "description": "Number of days since last meaningful contact" }, "relationshiphealth": { "type": "string", "description": "Overall health of this investor relationship based on email patterns", "enum": ["strong", "warm", "neutral", "cooling", "stale", "unknown"] }, "sentiment": { "type": "string", "description": "Overall tone of the most recent communications", "enum": ["verypositive", "positive", "neutral", "negative", "unknown"] }, "opencommitments": { "type": "array", "description": "Commitments made by either side that have not been confirmed as complete", "items": { "type": "object", "description": "A single open commitment in this investor relationship", "additionalProperties": false, "properties": { "commitment": { "type": "string", "description": "Description of the commitment made" }, "madeby": { "type": "string", "description": "Who made this commitment", "enum": ["us", "investor", "unknown"] }, "date": { "type": "string", "description": "ISO8601 date the commitment was made" } }, "required": ["commitment", "madeby", "date"] } }, "unansweredasks": { "type": "array", "description": "Questions or requests from this investor that have not been fully addressed", "items": { "type": "string", "description": "A single unanswered ask from the investor" } }, "recommendedaction": { "type": "string", "description": "Recommended next step to maintain or strengthen this relationship" } }, "required": [ "investorname", "investortype", "lastcontactdate", "dayssincecontact", "relationshiphealth", "sentiment", "opencommitments", "unansweredasks", "recommendedaction" ] } }, "stalecount": { "type": "number", "description": "Number of investor relationships that have gone stale" }, "opencommitmentscount": { "type": "number", "description": "Total number of open commitments across all investor relationships" }, "summary": { "type": "string", "description": "One or two sentence summary of overall investor relationship health and most urgent actions" } }, "required": [ "asof", "investors", "stalecount", "opencommitmentscount", "summary" ] } }

  1. Present investors ordered by relationship health (stale first), then by

days since contact. Lead with stale count and any open commitments that are ours to fulfill.

  1. Ask: "Would you like me to draft investor update emails for any stale

or cooling relationships?"

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.