Last Updated: 2026-04-07
Complete guide to the atomagentos.com documentation platform and how it integrates with the self-hosted Atom Agent OS documentation.
docs.atomagentos.com is the official documentation platform for the Atom Agent OS commercial marketplace service. It complements the self-hosted documentation by providing:
- Marketplace Documentation - Commercial service guides
- API References - Complete marketplace API documentation
- Account Management - User account and billing guides
- Support Portal - Help center and troubleshooting
- Release Notes - Platform updates and changelogs
┌─────────────────────────────────────────────────────────────┐
│ docs.atomagentos.com │
│ Commercial Mothership Documentation │
│ │
│ - Marketplace overview and features │
│ - Account management (API tokens, billing) │
│ - Commercial API references │
│ - Terms of service and licensing │
│ - Support and troubleshooting │
└─────────────────────────────────────────────────────────────┘
↕ Integration
┌─────────────────────────────────────────────────────────────┐
│ atom-upstream/docs/ (Self-Hosted) │
│ Open Source Platform Documentation │
│ │
│ - Installation and setup │
│ - Agent system documentation │
│ - Canvas system documentation │
│ - Integration guides │
│ - Development and testing │
└─────────────────────────────────────────────────────────────┘
| Topic | Description | URL |
|---|---|---|
| Marketplace Overview | Introduction to the commercial marketplace | /marketplace |
| Getting Started | Quick start for marketplace users | /marketplace/getting-started |
| Account Management | API tokens, billing, subscriptions | /account |
| API Reference | Complete marketplace API documentation | /api |
| Terms of Service | Commercial terms and licensing | /legal/terms |
| Privacy Policy | Data handling and privacy | /legal/privacy |
| Support | Help center and FAQs | /support |
| Release Notes | Platform updates and changelogs | /releases |
| Topic | Description | URL |
|---|---|---|
| Installation | Platform installation guides | /GETTING_STARTED/installation.md |
| Marketplace Connection | Connect self-hosted instance to marketplace | /marketplace/connection.md |
| Agent System | Agent governance, graduation, training | /agents/ |
| Canvas System | Canvas presentation system | /canvas/ |
| Integrations | Service integration guides | /INTEGRATIONS/ |
| Development | Developer guides and reference | /DEVELOPMENT/ |
| Operations | Deployment and monitoring | /operations/ |
URL: https://docs.atomagentos.com
No Authentication Required: Public documentation is accessible without logging in.
Main Sections:
- Marketplace - Marketplace features and usage
- Account - Account management and billing
- API - API references and guides
- Legal - Terms and policies
- Support - Help center
Use the search bar at the top of any page:
- Search by keyword - Finds relevant pages
- Search by tag - Filter by topic tags
- Search by category - Browse by category
Guide: https://docs.atomagentos.com/account/api-tokens
Steps:
- Log in to atomagentos.com
- Navigate to Settings → API Tokens
- Generate new marketplace token
- Copy token to clipboard
- Use token in self-hosted instance
Token Types:
- Marketplace Token - Access marketplace (atom-upstream)
- Federation Token - Share agents across instances
- Analytics Token - Push usage analytics
Guide: https://docs.atomagentos.com/account/billing
Topics Covered:
- Subscription plans and pricing
- Payment methods
- Invoice management
- Usage quotas
- Plan upgrades/downgrades
URL: https://docs.atomagentos.com/marketplace
Contents:
- Marketplace introduction
- Available marketplace types
- Commercial terms overview
- Feature comparison
URL: https://docs.atomagentos.com/marketplace/agents
Contents:
- Agent templates
- Publishing agents
- Installing agents
- Agent ratings and reviews
URL: https://docs.atomagentos.com/marketplace/domains
Contents:
- Domain templates
- Domain capabilities
- Governance templates
- Installing domains
URL: https://docs.atomagentos.com/marketplace/components
Contents:
- Component types
- Component development
- Publishing components
- Installing components
URL: https://docs.atomagentos.com/marketplace/skills
Contents:
- Skill types
- Skill development
- Publishing skills
- Installing skills
URL: https://docs.atomagentos.com/api
Contents:
- API authentication (X-API-Token)
- Rate limiting
- Error handling
- Response formats
Marketplace API:
GET /api/v1/marketplace/agents # List agents
GET /api/v1/marketplace/agents/{id} # Agent details
POST /api/v1/marketplace/agents/{id}/install # Install agent
GET /api/v1/marketplace/domains # List domains
GET /api/v1/marketplace/domains/{id} # Domain details
POST /api/v1/marketplace/domains/{id}/install # Install domain
GET /api/v1/marketplace/components # List components
GET /api/v1/marketplace/components/{id} # Component details
POST /api/v1/marketplace/components/{id}/install # Install component
GET /api/v1/marketplace/skills # List skills
GET /api/v1/marketplace/skills/{id} # Skill details
POST /api/v1/marketplace/skills/{id}/install # Install skill
GET /api/v1/marketplace/health # Health check
Header: X-API-Token: at_saas_your_token_here
Example:
curl -H "X-API-Token: at_saas_your_token_here" \
https://atomagentos.com/api/v1/marketplace/agentsFrom self-hosted to commercial:
See [Marketplace API Reference](https://docs.atomagentos.com/api)
for complete API documentation.From commercial to self-hosted:
See [Connection Guide](https://github.com/rush86999/atom/tree/main/docs/marketplace/connection.md)
for setup instructions.Self-Hosted Docs (atom-upstream):
- Focus on installation, configuration, usage
- Link to docs.atomagentos.com for:
- Account management
- API references
- Commercial terms
Commercial Docs (docs.atomagentos.com):
- Focus on marketplace, accounts, API
- Link to self-hosted docs for:
- Installation guides
- Feature documentation
- Development guides
docs.atomagentos.com:
- Go to https://docs.atomagentos.com/account/api-tokens
- Follow instructions to generate API token
- Copy token
Self-hosted docs:
- Go to marketplace/connection.md
- Follow setup instructions
- Configure token in
.env
docs.atomagentos.com:
- Go to https://docs.atomagentos.com/marketplace/components
- Browse available components
- Choose component
Self-hosted docs:
- Go to canvas-components.md
- Follow installation instructions
- Use component in canvas
docs.atomagentos.com:
- Go to https://docs.atomagentos.com/support/troubleshooting
- Check service status
- Review common issues
Self-hosted docs:
- Go to connection.md
- Follow troubleshooting steps
- Check logs and configuration
docs.atomagentos.com/
├── marketplace/
│ ├── overview.md
│ ├── agents/
│ │ ├── browsing.md
│ │ ├── publishing.md
│ │ └── installing.md
│ ├── domains/
│ │ ├── browsing.md
│ │ ├── publishing.md
│ │ └── installing.md
│ ├── components/
│ │ ├── browsing.md
│ │ ├── publishing.md
│ │ └── installing.md
│ └── skills/
│ ├── browsing.md
│ ├── publishing.md
│ └── installing.md
├── account/
│ ├── api-tokens.md
│ ├── billing.md
│ ├── subscriptions.md
│ └── security.md
├── api/
│ ├── authentication.md
│ ├── endpoints/
│ │ ├── agents.md
│ │ ├── domains.md
│ │ ├── components.md
│ │ └── skills.md
│ ├── rate-limits.md
│ └── errors.md
├── legal/
│ ├── terms.md
│ ├── privacy.md
│ └── licensing.md
├── support/
│ ├── faqs.md
│ ├── troubleshooting.md
│ └── contact.md
└── releases/
├── v1.0.md
├── v1.1.md
└── changelog.md
| Use Case | Documentation Location |
|---|---|
| Generate API Token | docs.atomagentos.com/account/api-tokens |
| Connect to Marketplace | self-hosted: marketplace/connection.md |
| Browse Marketplace | docs.atomagentos.com/marketplace |
| Install from Marketplace | self-hosted: marketplace/* |
| API Documentation | docs.atomagentos.com/api |
| Troubleshoot Issues | docs.atomagentos.com/support + self-hosted: marketplace/connection.md#troubleshooting |
| Account/Billing | docs.atomagentos.com/account |
| Topic | docs.atomagentos.com | Self-Hosted |
|---|---|---|
| Marketplace | /marketplace/* |
/marketplace/connection.md |
| API Reference | /api/* |
- |
| Account Management | /account/* |
- |
| Support | /support/* |
/operations/troubleshooting.md |
| Installation | - | /GETTING_STARTED/installation.md |
| Features | - | /GUIDES/*, /agents/*, /canvas/* |
| Development | - | /DEVELOPMENT/* |
- Main Docs: https://docs.atomagentos.com
- Marketplace: https://docs.atomagentos.com/marketplace
- API Reference: https://docs.atomagentos.com/api
- Account: https://docs.atomagentos.com/account
- Support: https://docs.atomagentos.com/support
- Marketplace: https://atomagentos.com/marketplace
- Documentation: https://docs.atomagentos.com
- GitHub: https://github.com/rush86999/atom
- Self-Hosted Docs: https://github.com/rush86999/atom/tree/main/docs
Managed by: atomagentos.com team
To contribute:
- Contact atomagentos.com support
- Submit documentation improvements via support portal
- Follow contribution guidelines in docs.atomagentos.com
Open Source: Community contributions welcome
To contribute:
- Read CONTRIBUTING.md
- Follow documentation guidelines (see DOCUMENTATION_STRUCTURE_GUIDE.md)
- Submit pull request to GitHub
- Include
documentationlabel
Update Frequency: Continuous
Notification Channels:
- RSS feed: https://docs.atomagentos.com/rss
- Release notes: https://docs.atomagentos.com/releases
- Email notifications (account setting)
Update Frequency: With each release
Notification Channels:
- GitHub releases: https://github.com/rush86999/atom/releases
- CHANGELOG.md in repository
- Commit messages
docs.atomagentos.com:
- Support portal: https://atomagentos.com/support
- Email: support@atomagentos.com
- Submit documentation feedback via support portal
Self-hosted docs:
- GitHub issues: https://github.com/rush86999/atom/issues
- Label:
documentation - Include document name and section
Availability: Business hours (9 AM - 5 PM UTC)
Access: https://atomagentos.com/support/chat
- GitHub Discussions: https://github.com/rush86999/atom/discussions
- Discord Server: Invite link in GitHub README
- Stack Overflow: Tag questions with
atom-agent-os
| Metric | Value |
|---|---|
| Total Pages | 150+ |
| Total Words | 200,000+ |
| API Endpoints Documented | 50+ |
| Code Examples | 300+ |
| Languages | English (primary), Japanese (beta) |
| Metric | Value |
|---|---|
| Total Pages | 150+ |
| Total Words | 250,000+ |
| Code Examples | 450+ |
| Languages | English |
Version: 1.0 Last Updated: 2026-04-07 Platform: atomagentos.com (Commercial) + GitHub (Open Source)