Skip to Content
WelcomeCore Concepts

Core Concepts

qRaptor organizes your work into a clear hierarchy. Understanding these concepts helps you navigate the Studio confidently.

Subscription

A subscription is your billing and isolation boundary. Every resource you create belongs to exactly one subscription. Your data is completely isolated β€” never visible to other subscribers.

Each subscription is tied to a plan (Free, App Lite, Starter, Pro, Team, or Enterprise) that determines features, credits, and team size.

Project

A project groups related agents, apps, data, tools, and deployments. Think of it as a container for a single product or initiative. You can have multiple projects per subscription (the number depends on your plan).

Inside a project, you find:

SectionWhat it contains
Agentic WorkspaceAgents, MAS Systems, Agent Personas, Agent Tools
AppsGenerated web apps, mobile apps, and copilots
Data VaultTables, documents, content stores, memory
DeploymentsPreview and production environments
ConfigurationLLM policies, settings, integrations
TeamsProject members and role assignments
SecurityRBAC and custom roles

Agents

An agent is an AI-powered execution unit. You build agents visually on a drag-and-drop canvas. qRaptor supports two agent types:

Task Agent

A Task Agent executes a defined workflow as a graph of steps. You connect nodes (start β†’ tools β†’ logic β†’ output) to build deterministic pipelines. Ideal for structured processes: data extraction, form processing, scheduled jobs, and multi-step automations.

AI Agent

An AI Agent is conversational and autonomous. It reasons about requests, uses tools, accesses memory, and responds in natural language. You configure its persona, tool access, and knowledge β€” then it handles conversations intelligently. Ideal for customer support, sales assistants, and interactive copilots.

Multi-Agent Systems (MAS)

A MAS coordinates multiple agents working together. You choose an orchestration pattern:

PatternHow it works
Router-SpecialistsA router classifies intent and delegates to specialist agents
Planner-Executor-VerifierPlan a strategy, execute it, then verify results
HierarchicalA supervisor delegates to workers with authority levels
Debate-JudgeMultiple agents debate; a judge synthesizes the answer
Map-ReduceDistribute work across agents, then merge results
ReActReason and act iteratively until the goal is met

Apps (Application Dev Engine)

Apps are full-stack applications generated from natural language descriptions. The platform pipeline works in visible stages:

Prompt β†’ Requirements β†’ App Graph β†’ Code β†’ Auto-Fix β†’ Iterate

You can generate:

  • Web apps β€” React full-stack applications
  • Mobile apps β€” React Native / Expo applications
  • Copilots β€” Embeddable AI chat widgets powered by your agents

Each app has its own workspace with code editor, live preview, build status, and App Context Graph.

Data Vault

The Data Vault is your secure data layer:

  • Tables β€” Structured data with schema design, ER diagrams, and a query explorer.
  • Documents β€” File storage for uploads, exports, and attachments.
  • Content Stores β€” Vector stores for RAG (retrieval-augmented generation). Your agents search these for relevant knowledge.
  • Memory β€” Three tiers of agent memory:
    • Profile β€” Remembers user preferences across conversations.
    • Episodic β€” Recalls what happened in past sessions.
    • Semantic β€” Self-learned knowledge the agent discovers over time.

Nodes

A node is a single step in an agent’s graph. qRaptor provides 30+ node types across categories:

  • Flow Control β€” Start, End, Condition, Switch, Loop, Parallel, Merge
  • AI / LLM β€” LLM Task, Quick Prompt, Planner, Router, Reflector, Evaluator
  • Data β€” Query Table, Insert Row, Update Row, Delete Row
  • Tools β€” Tool Call, HTTP API, Code (Python), MCP Connector
  • Memory β€” Memory Read, Memory Write
  • RAG β€” Search Content Store, Reindex Content Store
  • Human-in-the-Loop β€” Human Gate (sync or async approval)
  • Communication β€” Email, SMS, WhatsApp

Channels

A channel is where end-users interact with your deployed agents:

ChannelDescription
WebChat widget embedded in your app or site
WhatsAppBusiness API integration
VoicePhone calls with speech-to-text and text-to-speech
TeamsMicrosoft Teams integration
SlackSlack workspace integration
APIProgrammatic REST access
A2AAgent-to-Agent protocol (agents calling other agents)

Deployments

A deployment publishes your agents or apps so they can serve live traffic.

  • Preview β€” A safe sandbox for testing. Only your team can access it.
  • Production β€” The live environment at yourapp.qraptor.app serving real users.

The deployment wizard lets you select agents, pin versions, configure schedules, and review credit costs before going live.

Tools & Integrations

Tools extend what your agents can do. qRaptor provides 40+ built-in tools (web search, database queries, document processing, vision, audio, and more) plus:

  • MCP Servers β€” Connect to any Model Context Protocol server for additional tool access.
  • Custom HTTP tools β€” Define your own API integrations per project.
  • Agent-as-Tool β€” Call any Task Agent as a tool from within an AI Agent.

Versions

Every agent change creates a new version β€” an immutable snapshot of the graph, configuration, and tools. You choose which version to deploy and can roll back at any time.

πŸ’‘

Versioning is automatic. Save your changes, and a new version is created. You always control which version is live.

How it all fits together

Subscription (billing + isolation) └── Project (product boundary) β”œβ”€β”€ Agentic Workspace β”‚ β”œβ”€β”€ AI Agents (conversational, autonomous) β”‚ β”œβ”€β”€ Task Agents (workflow graphs) β”‚ β”œβ”€β”€ MAS Systems (multi-agent coordination) β”‚ └── Agent Personas & Tools β”œβ”€β”€ Apps (generated web/mobile/copilot apps) β”œβ”€β”€ Data Vault (tables, docs, content stores, memory) β”œβ”€β”€ Deployments (preview / production) β”œβ”€β”€ Configuration (LLM policies, settings) └── Integrations & Channels

Next steps