Loading...
Durable workflow runner with AI Kit. Builders running long-running, retryable agent workflows in production.
Crunchbase API: $20K/yr. GitDealFlow A2A: free, no signup.
Inngest's AgentKit gives you durable, retryable agent workflows. Wrap our A2A endpoint as an Inngest function and chain it into multi-step flows that survive crashes and retries — perfect for 'every Monday at 9am, pull trending and email the top 5 to subscribers' type loops.
npm install inngest @inngest/agent-kitimport { Inngest } from "inngest";
const inngest = new Inngest({ id: "vc-scout" });
export const weeklyDigest = inngest.createFunction(
{ id: "weekly-digest", name: "Weekly VC digest" },
{ cron: "0 9 * * 1" }, // Monday 9am
async ({ step }) => {
const trending = await step.fetch("https://signals.gitdealflow.com/api/a2a", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
jsonrpc: "2.0", id: 1, method: "message/send",
params: { message: { role: "user", parts: [
{ kind: "data", data: { skill: "get_trending_startups" } },
]}},
}),
});
const data = (await trending.json()).result.artifacts[0].parts[0].data;
await step.run("email-subscribers", async () => {
// ...your email send here...
return { sent: data.startups.length };
});
},
);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.