@inkeep/create-agents
v0.70.8
Published
Create an Inkeep Agent Framework project
Readme
Launch your first agent
Prerequisites
Before getting started, ensure you have the following installed on your system:
You can verify by running:
node --version
pnpm --version
docker --versionStep 1: Create a new agents project
Run the quickstart script on a target folder:
npx @inkeep/create-agents my-agentsNavigate to the folder
cd my-agentsOpen the folder using your coding editor. To open with Cursor, you can run cursor .
Step 2: Run the setup script
Ensure Docker Desktop (or Docker daemon) is running before running the setup script.
pnpm setup-devStep 3: Launch the dev environment
pnpm devThe Visual Builder will auto-open at http://localhost:3000.
Step 4: Login to the Visual Builder
Use the credentials from your root .env file (INKEEP_AGENTS_MANAGE_UI_USERNAME and INKEEP_AGENTS_MANAGE_UI_PASSWORD) to log in when the Visual Builder opens.
Step 5: Chat with your agent
Navigate to the Activities Planner agent at http://localhost:3000 and ask about fun activities at a location of your choice:

Next steps
- Set up AI coding for Inkeep with skills and MCP.
- Learn about inkeep push / pull so you can go from
SDK -> Visual BuilderandVisual Builder -> SDK. - Follow our meeting prep agent tutorial to create an agent using the Visual Builder.
- Follow our fact finder agent tutorial to create an agent using the TypeScript SDK.
