Building for the Agent Era

AI infrastructure
that thinks ahead

Eight products. One mission — give AI agents the memory, knowledge, security, and intelligence they need to operate at scale.

Explore Products → About NexusLayer
8
AI Products
API
Agent-First Design
Scalable Memory
Real-Time Insights
// our products
Everything AI agents
need to be powerful
01 Agent Memory
VaultBrain
// persistent memory as a service

Give your AI agents the memory they need. VaultBrain is a hosted API that stores, indexes, and retrieves agent memories using semantic search — so your agents remember context, customers, and decisions across every session.

  • POST /memories · GET /recall — three-endpoint simplicity
  • Semantic search powered by vector embeddings
  • Relevance decay, confidence scoring, source metadata
  • REST API + Python & Node.js SDKs
  • Dashboard with memory usage analytics
vaultbrain — terminal
curl -X POST api.vaultbrain.io/memories
-H "X-Agent-Id: agent_cx8a"
-d { "content": "User prefers dark mode", "confidence": 0.94 }
 
200 OK
{
  "id": "mem_9fxk2...",
  "stored": true,
  "vectors": 1536
}
 
GET /recall?q=user+preferences
→ 3 memories · 18ms · 0.97 score
02 Knowledge Engine
WikiLLM
// documents → living knowledge base

Drop your files in, get a structured wiki out. WikiLLM ingests PDFs, Word docs, Excel files, and Markdown, then uses AI to organize, cross-link, and publish a searchable knowledge base — auto-updated whenever files change.

  • Supports PDF, DOCX, XLSX, CSV, Markdown
  • 7-stage LLM pipeline: ingest → classify → generate → publish
  • Auto-sync — wiki updates when source files change
  • Agent-friendly REST API with semantic search
  • Multi-provider: Claude, Gemini, or local Ollama
wikillm — knowledge tree
📁 Infrastructure Docs
└─📄 HAProxy Setup
└─📄 Galera Cluster
└─📄 Kubernetes Config
📁 API Reference
└─📄 Authentication
└─📄 Endpoints
📁 Runbooks
└─📄 Incident Response
└─📄 Backup Procedures
✦ AI CROSS-REFERENCE
"HAProxy Setup" links to 4 related pages
03 Reporting AI
PeriodAI
// automated intelligence reports

Turn raw data into decision-ready intelligence on a schedule. PeriodAI connects to your data sources, runs AI-driven analysis, and delivers periodic reports — daily, weekly, or monthly — directly to your team's inbox or Slack.

  • Connect databases, APIs, and spreadsheets
  • AI-generated narratives, trends, and anomaly alerts
  • Scheduled delivery: email, Slack, webhook
  • Customizable report templates per team
  • Agent-accessible report history via API
periodai — weekly report
WEEK 14 · APR 1–7, 2026
Mon
Tue
Wed
Thu
Fri
Sat
✦ AI Insight
Friday peak (+47% vs avg). Traffic spike correlates with email campaign sent at 09:14 UTC.
04 Agent Platform
AgentShop
// deploy AI coding agents to your machines

A marketplace for specialized AI coding agents. Pick your agent — Python, Java, DevOps, Architect — deploy it to any registered machine via SSH, then manage all your work from a Kanban board. Agents run Claude Code CLI on your own infrastructure, push branches, and open PRs automatically.

  • 10+ specialist agents: Python, Java, PHP, C++, .NET, SQL, DevOps, Architect, React
  • One-click SSH deployment to your own registered servers
  • Kanban board with real-time agent output streaming via WebSocket
  • GitHub integration — auto branch, commit, and PR per task
  • Each agent has a crafted "soul" system prompt defining how it thinks
agentshop — kanban board
WORKSPACE · api-gateway · server-01
🐍
⚙️
🗃️
⚛️
🏛️
Backlog
Rate limiting
🐍 Python
DB migrations
🗃️ SQL
▶ In Progress
Auth endpoint
🐍 Python
✓ Review
Docker compose
⚙️ DevOps
LIVE · PythonAgent · server-01
✓ Writing auth/router.py
✓ feat/auth-endpoint committed
→ Opening PR #42...
05 Secret Store
AgentVault
// secrets your agents need. nothing they don't.

A zero-trust secret store built for AI agents. Agents authenticate with short-lived vault tokens, request exactly the secrets they need, and every access is logged. No more hardcoded API keys — your agents get exactly what they need, when they need it.

  • AES-256-GCM envelope encryption — secrets never stored in plaintext
  • Short-lived vault tokens (15 min TTL) with automatic renewal
  • Per-agent secret scoping via policy engine
  • Immutable access audit log — every access recorded
  • Integrates with WatchGrid + FlowMesh for run-scoped secret access
agentvault — vault api
POST /vault/token
  "agentId": "agent-uuid",
  "agentSecret": "av_ag_k8x2..."
→ token expires in 15 min
 
GET /vault/secrets/OPENAI_API_KEY
Authorization: Bearer av_tok_xyz...
 
200 OK
"value": "sk-proj-..."
✓ access logged · agent: Revenue Reporter
06 Orchestration
FlowMesh
// connect your agents. automate everything.

A visual pipeline builder and execution engine for wiring AI agents together. Define multi-agent workflows with drag-and-drop, set conditional routing, schedule runs, and get full execution traces — without a single line of orchestration code.

  • Visual drag-and-drop pipeline builder powered by React Flow
  • 9 node types: Agent, LLM, Condition, Transform, Webhook, Merge, Notify, Delay
  • Parallel branch execution with topological sort engine
  • Trigger via cron schedule, webhook, or API call
  • Full execution history with per-step input/output and cost tracking
flowmesh — pipeline builder
PIPELINE · Weekly Revenue Report · ACTIVE
⏰ Cron Trigger
🤖 PeriodAI Agent
└→
? Condition
📢 Slack Notify
LAST RUN · 2 hours ago
✓ COMPLETED · 3 steps · $0.014 · 4.2s
07 Observability
WatchGrid
// every agent run. fully visible.

Observability built for AI agent workflows. Every LLM call, tool invocation, memory access, and error is captured, timestamped, and surfaced in a real-time dashboard. Know your costs, catch failures before they cascade, and trace any run down to the microsecond.

  • Real-time event ingestion via SDK — Python, Node.js, Java
  • Full run traces: LLM calls, tool calls, memory events, errors
  • Cost tracking per run, agent, and workspace
  • Alert rules: trigger on cost, error rate, latency thresholds
  • Prometheus metrics endpoint + real-time WebSocket dashboard feed
watchgrid — live run feed
AGENT RUNS · LIVE
streaming
RevenueAgent ✓ done $0.021 3.1s
SupportBot ▶ running $0.008 1.4s
DataPipeline ✗ error $0.003 0.6s
📊 Today: 1,247 runs · $2.84 total cost · 98.1% success
08 LLM Gateway
ModelRouter
// one gateway. every model. zero lock-in.

A drop-in Anthropic-compatible API gateway that routes LLM calls to any provider — Claude, Gemini, or local Ollama. All 8 NexusLayer products point here. Switch providers with a single config change, and get unified cost tracking across every model call.

  • Anthropic SDK compatible — change one base URL to route everything
  • Supports Claude, Gemini, Ollama, and custom OpenAI-compatible providers
  • Unified cost + token tracking with per-model breakdowns
  • Provider fallback and load balancing (active / passive)
  • All NexusLayer products pre-wired to route through ModelRouter
modelrouter — gateway
POST /v1/messages
  "model": "claude-sonnet-4"
 
ROUTING
claude-sonnet → Anthropic API
fallback: Gemini 1.5 Pro
 
200 OK · 1.2s · 847 tokens · $0.009
 
Today: 4,832 calls · $47.20 · 4 providers
// simple pricing
Start free,
scale with confidence
Starter
// perfect for side projects
$0
/ month · forever free
  • VaultBrain — 10k memories
  • WikiLLM — 1 project
  • PeriodAI — weekly reports
  • AgentShop — 1 agent slot
  • AgentVault — 10 secrets
  • FlowMesh — 3 pipelines
  • WatchGrid — 7-day retention
  • ModelRouter — 1,000 calls/mo
  • REST API access
  • Community support
Enterprise
// custom scale & compliance
Custom
/ contact for pricing
  • Unlimited everything
  • On-premise deployment
  • SSO & LDAP integration
  • Custom LLM providers
  • SLA + dedicated support
  • Audit logs & compliance
Built by engineers,
for the agent era

NexusLayer is an AI infrastructure company building the foundational layer that AI agents need to be truly useful — persistent memory, structured knowledge, and automated intelligence.

We started from a simple observation: as agents become the primary users of software, they need infrastructure designed for them, not adapted from human-facing tools.

Kubernetes Vector DB FastAPI Spring Boot Wazuh HAProxy MariaDB Ollama
Nexuslayer
AI Infrastructure · Est. 2026