Launch HN: Inkeep (YC W23) – Open Source Agent Builder

https://news.ycombinator.com/rss Hits: 20
Summary

Inkeep Agents With Inkeep, you can build and ship AI Agents with a No-Code Visual Builder or TypeScript SDK. Agents can be edited in code or no-code with full 2-way sync, so technical and non-technical teams can create and manage their Agents in a single platform. Use Cases Inkeep Agents can operate as real-time AI Chat Assistants, for example: a customer experience agent for customer support, technical docs, or in-app product copilot an internal copilot to assist your support, sales, marketing, ops, and other teams Agents can also be used for AI workflow automation like: Creating and updating knowledge bases, documentation, and blogs Updating CRMs, triaging helpdesk tickets, and streamlining repetitive tasks To get started, see the docs. Two ways to build No-Code Visual Builder A no-code drag-and-drop canvas designed to allow any team to create and manage teams of Agents visually. TypeScript Agents SDK A code-first approach for building and managing multi-agent systems. Engineering teams to build with the tools and developer experience they expect. import { agent , subAgent } from "@inkeep/agents-sdk" ; const helloAgent = subAgent ( { id : "hello-agent" , name : "Hello Agent" , description : "Says hello" , prompt : 'Only reply with the word "hello", but you may do it in different variations like h3110, h3110w0rld, h3110w0rld! etc...' , } ) ; export const basicAgent = agent ( { id : "basic-agent" , name : "Basic Agent" , description : "A basic agent" , defaultSubAgent : helloAgent , subAgents : ( ) => [ helloAgent ] , } ) ; The Visual Builder and TypeScript SDK are fully interoperable: your technical and non-technical teams can edit and manage Agents in either format and switch or collaborate with others at any time. Platform Overview Inkeep Open Source includes: A Visual Builder & TypeScript SDK with 2-way sync Multi-agent architecture to support teams of agents MCP Tools with credentials management A UI component library for dynamic chat experiences Triggering Age...

First seen: 2025-10-16 13:48

Last seen: 2025-10-17 08:52