Skip to content

Latest commit

 

History

History
88 lines (64 loc) · 4.04 KB

File metadata and controls

88 lines (64 loc) · 4.04 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

The Genetic System (Navigation OS) gives agents stable addresses — genetic tags, a central map, local indexes — so they land in canonical files instead of repo-wide grep. Primary ROI is labor calendar (fewer wrong-tree edits); token savings follow when map → index prefixes stabilize.

Doc Purpose
genetic-system/GENETIC_SYSTEM_OVERVIEW.md What it is, five-step workflow, agents-in-2026 context
genetic-system/AI_MODEL_ECONOMICS.md Harness numbers, SDK leverage, honest caveats
genetic-ai-starter Portable kit for your repo

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

AgentStack consumers: use profile agentstack-appAGENTSTACK_APP_GUIDE.

Interactive explainer (monorepo, RU/EN/PT): docs/genetic-system-site.

Honest limits

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