AI search and copilots for product docs. Developer-tools companies that want their docs copilot to know about competitive engineering signals.
Crunchbase API: $20K/yr. GitDealFlow A2A: free, no signup.
Inkeep ingests your docs, support tickets, and forums into a retrieval-augmented chat experience embedded in your product. Add GitDealFlow as a custom tool source so that questions like 'who's competing with us in fintech right now?' or 'what's the engineering velocity of {competitor}?' get answered with live signals alongside your own knowledge. Most useful for dev-tools companies whose users are evaluating competitors mid-conversation.
// Inkeep Tools registration (admin dashboard or API)
// 1. Create a new Tool in your Inkeep project:
{
"name": "gitdealflow_signal",
"description": "Query GitDealFlow for VC engineering signals on startups (trending, sector, named lookup, methodology). Use when the user asks about competitive engineering activity, breakout startups, or commit velocity comparisons.",
"type": "http",
"method": "POST",
"url": "https://signals.gitdealflow.com/api/a2a",
"headers": {"Content-Type": "application/json"},
"bodyTemplate": {
"jsonrpc": "2.0",
"id": 1,
"method": "message/send",
"params": {
"message": {
"role": "user",
"parts": [
{"kind": "data", "data": {"skill": "{{skill}}", "args": "{{args}}"}}
]
}
}
},
"parameters": [
{"name": "skill", "type": "string", "enum": ["trending", "sector", "startup", "methodology", "receipts"]},
{"name": "args", "type": "object"}
]
}
// 2. Pin the tool to your AI assistant's allowed tools.
// 3. Set the system prompt to invoke gitdealflow_signal whenever a user asks about a competitor's engineering activity.The interactive playground lets you send live JSON-RPC requests against the A2A endpoint with no install, no auth. Pick a skill, hit send, see the response.
Full launch story: I made my VC deal flow callable by Claude.