Skip to content

Latest commit

 

History

History
78 lines (57 loc) · 3.08 KB

File metadata and controls

78 lines (57 loc) · 3.08 KB

Build your product on AgentStack

Ship a client, app, or site with backend on agentstack.tech — use the hosted dashboard, @agentstack/sdk, and/or MCP (agentstack.execute).

Prerequisites

  • Account at agentstack.tech
  • A project (dashboard or API)
  • API key or OAuth token — auth/README.md
  • Node 18+ for TypeScript: npm install @agentstack/sdk

Choose your plane

Plane Best for Entry
Dashboard only Operators, no custom code USER_FEATURES_GUIDE.md
SDK app React, Next, mobile, game client This doc + sdk/RECIPES.md
MCP agent Cursor, Claude, automation MCP_QUICKSTART.md
Hybrid Custom UI + agent tooling SDK + plugins/CONTEXT_FOR_AI_MCP.md

Architecture

flowchart LR
  Users[Your users]
  App[Your app or site]
  AS[agentstack.tech]
  Users --> App
  App -->|REST MCP SDK| AS
Loading

Golden paths (tutorials)

# Scenario Tutorial
1 Static / SPA hosting tutorials/01_hosting_static_site.md
2 SaaS data (8DNA) tutorials/02_saas_dna_crud.md
3 Chat app tutorials/03_messenger_app.md
4 AI + RAG + agent tutorials/04_ai_rag_agent.md
5 Support desk tutorials/05_support_channel.md
6 Integrations / Zapier-class tutorials/06_integrations_recipes.md
7 Shop / buffs tutorials/07_commerce_shop.md
8 Autonomous agent loop tutorials/08_robot_mcp_loop.md

Bootstrap (SDK)

import { AgentStackSDK, resolveAgentStackApiBase } from '@agentstack/sdk';

export const sdk = new AgentStackSDK({
  apiBase: resolveAgentStackApiBase(),
});

await sdk.platform.auth.login({
  email: process.env.AGENTSTACK_EMAIL!,
  password: process.env.AGENTSTACK_PASSWORD!,
});

Prefer sdk.protocol for DNA commands and snapshot cache — sdk/AGENT_PROTOCOL_QUICKSTART.md.

AI teams: genetic navigation

For map-first Cursor rules and starter genes in your repo (not copied from this mirror):

npx @agentstack/genetic-ai-starter init --profile standard --project-name "My SaaS" --domain app

See genetic-ai-starter.

Honest limits

Next: JOURNEY_MAP.md · PARITY_MATRIX.md · WHATS_NEW.md