Everything you need to ship with Apragya AI.
Setup guides, API references, how-to tutorials, and architecture deep-dives.
Pick where to start.
Getting Started
Set up your tenant, invite your team, and understand the platform's high-level moving parts.
8 guidesEnterprise Apps
CRM, HR, Finance, Contracts, Invoice, Inventory, Sales, Support, Projects, and end-to-end workflows.
10 guidesAI & Automation
Vibe Studio, the Solution Suite, agent building, workflows, HITL, guardrails, testing, and document processing.
14 guidesIntegrations
Slack, Teams, Salesforce, SAP, QuickBooks, Xero - 100+ connectors.
5 guidesSecurity & Admin
RBAC, SSO, audit logs, compliance, data residency.
4 guidesBest Practices
Patterns, anti-patterns, and lessons from large-scale deployments.
4 guidesShip your first agent in under 5 minutes.
Authenticate, create an agent, give it tools, ship it to an app. The full loop in 15 lines of code.
// Create an Invoice Reviewer agent and wire it to your tenant
import { Apragya } from '@apragya/sdk';
const client = new Apragya({
apiKey: process.env.APRAGYA_API_KEY,
tenantId: process.env.APRAGYA_TENANT_ID,
});
const agent = await client.agents.create({
name: 'Invoice Reviewer',
model: 'claude-3-5-sonnet',
tools: ['invoice.read', 'po.lookup', 'erp.post'],
guardrails: {
maxApprovalAmount: 10000,
requireHumanReview: true,
},
});
await client.apps.bindAgent({
appSlug: 'invoice-ap',
event: 'invoice.received',
agentId: agent.id,
});
console.log(`Agent ${agent.id} live on Invoice & AP`);
What this does
Spins up a new agent on the Apragya runtime, configures it with three tools, sets approval-amount guardrails, and binds it to the invoice.received event on your Invoice & AP app.
- Auth via API key or OAuth
- Pick from 12+ frontier models
- Tools sandboxed per-agent
- Built-in HITL approval gates
Most-viewed guides.
Agent Builder
Build an Invoice Reviewer agent in 5 minutes
End-to-end walkthrough from create-agent to bound-to-app-event.
RBAC
Designing roles for a 500-person enterprise tenant
How RBAC v3 maps to your existing IDP groups and apps.
Workflows
Industry pipelines: starting from a template
Fork the Lead Qualification or Invoice Processing pipeline for your shape.
Integrations
Slack + Teams: bidirectional message routing
Pattern for keeping conversations in sync across channels.