AtlasWork, planned itself.

The AI-native, all-in-one work platform. Tasks, projects, CRM, contracts, and analytics in one calm workspace.

All systems operational
  • SOC 2 II
  • ISO 27001
  • HIPAA
  • GDPR

Product

  • Overview
  • PDF tools
  • Diagram tools
  • People & HR
  • Integrations
  • Marketplace
  • Pricing

Resources

  • Guides
  • Glossary
  • Compare
  • Docs
  • API reference
  • Support
  • Changelog
  • Status

Company

  • About
  • Careers
  • Press
  • Contact

Legal & trust

  • Trust center
  • Security
  • Privacy
  • Terms
  • DPA
  • GDPR
  • SLA
  • Refunds
  • Google API data
Atlas, a product by wrxstack.com·© 2026 wrxstack·All rights reserved
PrivacyTermsSecurityStatus
Skip to documentation
Docs
Back to Atlas

Start here

  • Overview

Developer

  • REST API guide
  • Authentication
  • API reference
  • MCP (AI agents)
  • SDKs
  • Quick actions

Webhooks

  • Overview
  • Quickstart
  • Events
  • Payloads and headers
  • Security and signing
  • Delivery and retries
  • Managing via API

Connect

  • Connectors
  • Integrations

Product

  • Collaboration and chat

Reference

  • Glossary
  • Keyboard shortcuts
  • Module reference
Module reference

Module guide

Agent governance

Human-in-the-loop approvals, memory, and an activity log for AI agents.

Open module/settings/agents
ai-nativeadmin

Overview

Agents in Atlas request human sign-off before taking consequential actions. AgentApproval gates those calls, AgentMemory persists key facts across runs, and the activity log exposes every recent AgentRun for audit. Everything is deterministic: approvals are a state machine and memory is explicit key/value.


Highlights

The capabilities worth knowing before you dive in.

  • Approval gate: PENDING to APPROVED or REJECTED, with an optional note
  • Per-user, per-agent, and per-tenant memory scopes
  • Double-decide guarded: a decided approval cannot be re-decided
  • Activity log filtered by agent and limit

Important to know

Limits, permissions, and sharp edges to keep in mind.

  • Memory is idempotent on (tenant, scope, key, agent); an upsert replaces the value.
  • Approvals survive a service restart because they're DB-backed rows, not in-memory queues.

How to use it

The primary workflow, start to finish.

  1. 1An agent emits an approval request, which appears in /settings/agents.
  2. 2A reviewer approves or rejects it with an optional note.
  3. 3The agent resumes on approval; nothing happens on reject.

FAQ

What stops an agent doing something consequential without me?
An approval gate. A consequential call creates an approval that a person moves from pending to approved or rejected, with an optional note, and the agent proceeds only on approval.
Can an approval be reversed after somebody decides it?
No. A decided approval cannot be decided again. That is deliberate, so the record of who allowed an action and when cannot be rewritten afterwards.
Does an agent forget everything if the service restarts?
No. Memory and approvals are database rows rather than in-memory queues, so both survive a restart. Memory is explicit key and value, scoped per user, per agent or per tenant, and writing the same key replaces the value.

Automate this module

Everything on this screen is scriptable. Drive it from the REST API, or let an AI agent run it through the MCP server.
All modules
Was this page helpful?

On this page

  • Overview
  • Highlights
  • Important to know
  • How to use it
  • FAQ