Core Features
Explore the essential features of SynthralOS that enable seamless documentation management and collaboration.
Overview
SynthralOS empowers you to manage documentation efficiently with intuitive tools for organization, version control, search, collaboration, and sharing. These core features streamline workflows, whether you maintain technical docs, user guides, or project knowledge bases.
Organization
Structure your docs with flexible hierarchies and folders.
Version Control
Track changes and revert with built-in versioning.
Search Tools
Find content quickly with advanced filtering.
Collaboration
Work with teams using permissions and real-time edits.
Export Options
Share docs in multiple formats effortlessly.
Document Organization and Hierarchy
Organize your documentation into logical structures using folders, subfolders, and custom hierarchies. SynthralOS supports nested navigation, making large doc sets easy to browse.
Create Folders
Navigate to your workspace and select New Folder to build your hierarchy.
Add Pages
Drag and drop MDX files into folders or create new pages directly.
Reorder
Use drag-and-drop to adjust the sidebar navigation order.
Use frontmatter in MDX files to set custom sidebar order with order: 1.
Version Control for Docs
SynthralOS provides Git-like version control without external tools. Create branches, commit changes, and merge updates seamlessly.
// Create a new version via API
const response = await fetch('https://api.example.com/docs/v1/versions', {
method: 'POST',
headers: { 'Authorization': 'Bearer YOUR_TOKEN' },
body: JSON.stringify({ name: 'v2.0-release', baseVersion: 'main' })
});
# CLI command to branch
synthralos docs branch create feature-login --base main
synthralos docs commit -m "Add login docs"
Revert changes with a simple API call or UI selector.
Search and Filtering Tools
Locate specific content instantly with full-text search, tags, and filters. Search across workspaces, filter by date, author, or status.
Enter keywords in the global search bar to scan titles, content, and metadata.
Combine filters: status: draft AND author: team@example.com.
Collaboration and Permissions
Invite team members and set granular permissions: view, edit, admin. Enable real-time co-editing with conflict resolution.
Use role-based access:
| Role | View | Edit | Publish | Admin |
|---|---|---|---|---|
| Viewer | ✅ | ❌ | ❌ | ❌ |
| Editor | ✅ | ✅ | ❌ | ❌ |
| Admin | ✅ | ✅ | ✅ | ✅ |
Always review permissions before sharing sensitive docs.
Export and Sharing Options
Export docs as PDF, HTML, or ZIP. Generate public links or embed previews.
Select pages and click Export > PDF for print-ready docs.
Toggle Public in settings to share read-only links.
<!-- Embed code snippet -->
<iframe src="https://docs.example.com/embed/project/123" width="100%" height="600"></iframe>
// API export request
fetch('https://api.example.com/docs/v1/export/pdf', {
method: 'POST',
body: JSON.stringify({ pages: ['intro', 'features'] })
});
Last updated Mar 13, 2026
Built with Documentation.AI