feat(partner): add FundOS by VantedgeAI — fund operations plugin for VC and private credit - #186
Open
rchachra wants to merge 3 commits into
Open
feat(partner): add FundOS by VantedgeAI — fund operations plugin for VC and private credit#186rchachra wants to merge 3 commits into
rchachra wants to merge 3 commits into
Conversation
Author
|
Note: also needs the |
5 tasks
Adds a partner-built plugin for FundOS — an AI-native fund operations platform for emerging VC and private credit managers. Plugin includes: - 7 slash commands: /fundos:capital-call, /fundos:lp-report, /fundos:waterfall, /fundos:covenant-check, /fundos:lp-update, /fundos:vdr-checklist, /fundos:fund-snapshot - 6 background skills: fund-admin, lp-communications, capital-calls, waterfall-calculations, covenant-monitoring, vdr-workflow - MCP connector to FundOS server at https://mcp.kela.com/mcp - Full README with installation, API key setup, and usage examples Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…d skills Three things this PR branch had accumulated while waiting for review: 1. .mcp.json pointed at https://mcp.kela.com/mcp, which is NXDOMAIN. Merging as-is would have shipped a plugin that connects to nothing on every install. Now https://fundos.vantedgeai.com/mcp, the documented public endpoint. 2. The marketplace.json entry was the only one of 20 without a displayName. 3. The source of truth had moved ahead by three files: a flux-pack command and the board-dashboard and variance-commentary skills. README now lists both the FSI marketplace and the VantedgeAI one.
rchachra
force-pushed
the
add-fundos-partner-plugin
branch
from
August 14, 2026 19:40
a7820dc to
5d58920
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds a partner-built plugin for FundOS by VantedgeAI (kela.com) — an AI-native fund operations platform for emerging VC and private credit managers.
FundOS gives emerging managers (the 4,000+ new GPs who launch funds each year) the same fund operations infrastructure as large institutions: capital call engine, LP investor portal, European waterfall calculator, covenant monitoring dashboard, and Virtual Data Room — all accessible through an MCP server so AI agents can read fund state and propose actions for human approval.
What's Included
7 slash commands covering the full fund lifecycle:
/fundos:capital-call/fundos:lp-report/fundos:waterfall/fundos:covenant-check/fundos:lp-update/fundos:vdr-checklist/fundos:fund-snapshot6 background skills that fire automatically on relevant trigger phrases:
fund-admin,lp-communications,capital-calls,waterfall-calculations,covenant-monitoring,vdr-workflowMCP Connector
Connects to the FundOS MCP server at
https://mcp.kela.com/mcp. API keys issued from kela.com settings. All commands work standalone (asking for inputs) or with live fund data when the connector is configured.File Structure
Format Compliance
File structure and format follow the existing LSEG partner plugin exactly:
name/descriptionfrontmatter + trigger phrases + workflow steps + output standardsplugin.json: matches partner plugin schema (name, version, description, author, keywords, mcpServers).mcp.json: single MCP server connector🤖 Generated with Claude Code