← All toolsFinance & Analysisfinancial_toolsAll editions

CREATE_INVESTOR_UPDATE

Generates a professional investor update report as a .docx file with KPIs, highlights, challenges, financial summary, and asks.

Parameters

NameTypeRequiredDescription
output_pathstringyesOutput .docx path
company_namestringyesCompany name
periodstringyesReporting period (e.g., 'January 2026')
kpisobjectKey metrics: {mrr, arr, customers, churn_rate, runway_months, burn_rate, ...}
highlightsarrayKey wins and milestones
challengesarrayChallenges and roadblocks
financial_summaryobjectFinancial data: {revenue, expenses, net_income, cash_on_hand}
asksarrayAsks from investors (intros, hiring, etc.)
next_milestonesarrayKey goals for next period

How to use it

You normally trigger this by describing what you want in chat — the agent selects CREATE_INVESTOR_UPDATE automatically. For example:

Try saying
“create a financial tools document”

In a workflow

As a step in a multi-step workflow DAG:

json
{
  "id": "s1",
  "agent": "financial_tools",
  "action": "CREATE_INVESTOR_UPDATE",
  "args": {
    "output_path": "/Users/me/Documents/file.txt",
    "company_name": "…",
    "period": "…"
  },
  "depends_on": [],
  "outputs": []
}

Direct call

For scripting, call it directly via POST /execute_tool. Every tool returns { success, message, data }.

bash
curl -X POST http://127.0.0.1:8000/execute_tool \
  -H "Content-Type: application/json" \
  -d '{"tool_name":"CREATE_INVESTOR_UPDATE","args":{"output_path":"/Users/me/Documents/file.txt","company_name":"…","period":"…"}}'

Part of the financial_tools plugin. Browse the full Plugin & Tool Catalog or the relevant feature guide.