Core Features
Overview of core capabilities for organizing and managing project documentation effectively.
Overview
Unecast provides powerful tools to organize, collaborate on, and maintain your project documentation. You can structure content hierarchically, control access with fine-grained permissions, track changes through version history, and find information quickly with advanced search.
Document Organization
Create nested folders and pages to mirror your project's structure.
Collaboration
Invite team members and set role-based permissions.
Version History
Revert changes and compare versions effortlessly.
Search
Full-text search across all documents.
These features work together to streamline your documentation workflow.
Document Organization
Organize your documentation into a hierarchical structure using folders and subpages. You create a tree-like navigation that matches your project's architecture.
Create a Folder
Navigate to your workspace and click the + button. Select "New Folder" and name it, such as "API Reference".
Add Pages
Inside the folder, create pages for specific topics like "Endpoints" or "Authentication".
Reorder
Drag and drop pages or folders to adjust the hierarchy.
Collaboration and Permissions
Invite team members and assign roles to control who can view, edit, or administer documents. Permissions propagate down the folder tree.
Read-only access. Ideal for external stakeholders.
Can create and modify pages. Perfect for contributors.
Full control, including user management.
uneccast invite --email team@company.com --role editor
await fetch('https://api.uneccast.com/v1/workspaces/{workspaceId}/invites', {
method: 'POST',
headers: { 'Authorization': `Bearer ${YOUR_API_KEY}` },
body: JSON.stringify({
email: 'team@company.com',
role: 'editor'
})
});
Version History
Every edit creates a new version, allowing you to track changes, compare diffs, and restore previous states.
Select two versions from the history panel to see side-by-side diffs. Use this to review pull requests or audit changes.
Update API docs
Add webhook section
Fix typos
v1.2 Release Notes
Search Functionality
Unecast's search indexes all content, including titles, body text, and metadata. You filter by folder, date, or author.
Your search term, supports fuzzy matching and phrases.
Limit results to a specific folder.
const results = await searchDocs({
query: 'authentication',
folderId: 'abc123'
});
console.log(results); // Array of matching documents
Use quotes for exact phrases: "API endpoints".