Actoviq Agent SDK Tutorial
This tutorial is a practical, step-by-step guide to the current SDK. It is organized so you can start with a working chat bot, then add tools, skills, sessions, MCP, memory, and runtime bridge features as needed.
Recommended reading order:
- 01-setup-and-quickstart.md
- 02-basic-run-stream-session.md
- 03-tools-permissions-skills-mcp.md
- 04-agents-swarm-memory-workspace.md
- 05-bridge-runtime.md
- 06-testing-troubleshooting-cheatsheet.md
Two execution paths matter throughout this guide:
createAgentSdk()is the clean SDK path. Use it for most product and application code.createActoviqBridgeSdk()is the runtime bridge path. Use it when you need runtime-native built-ins, runtime skills, or runtime introspection.
If you only want to get moving quickly:
- Read 01-setup-and-quickstart.md.
- Run
npm run example:quickstart. - Then run
npm run example:actoviq-interactive-agentfor a ready-to-use interactive demo with streaming output and tool calls.