eigent/docs
Pakchoioioi 71e8a73bd3 docs: refine welcome, quick start, and open-source pages
- Update Eigent description to "first open-source, general-agent desktop app"
- Update CAMEL GitHub stars from 13k to 17k
- Add Agent Skills and Task Trigger feature cards to welcome page
- Replace logo images and fix logo path in docs.json
- Remove problematic styling.logo config
- Add custom model configuration note to Add Workers section
- Update supported languages list (11 languages)
- Update appearance description to mention custom themes
- Update cloud models to list providers instead of specific model names
- Revamp community and support section with GitHub, Discord, and email cards

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-06-09 18:44:18 +01:00
..
agents feat/draft new docs content and designed new onboarding process 2026-06-08 02:27:40 +01:00
automation feat/draft new docs content and designed new onboarding process 2026-06-08 02:27:40 +01:00
browser feat/draft new docs content and designed new onboarding process 2026-06-08 02:27:40 +01:00
connectors feat/draft new docs content and designed new onboarding process 2026-06-08 02:27:40 +01:00
core docs: Update docs provider and toolkit references (#1667) 2026-06-09 18:17:23 +08:00
dashboard feat/draft new docs content and designed new onboarding process 2026-06-08 02:27:40 +01:00
get_started docs: refine welcome, quick start, and open-source pages 2026-06-09 18:44:18 +01:00
images docs: refine welcome, quick start, and open-source pages 2026-06-09 18:44:18 +01:00
models feat/draft new docs content and designed new onboarding process 2026-06-08 02:27:40 +01:00
open-source docs: refine welcome, quick start, and open-source pages 2026-06-09 18:44:18 +01:00
projects feat/draft new docs content and designed new onboarding process 2026-06-08 02:27:40 +01:00
settings feat/draft new docs content and designed new onboarding process 2026-06-08 02:27:40 +01:00
troubleshooting feat/draft new docs content and designed new onboarding process 2026-06-08 02:27:40 +01:00
CONTENT_STRUCTURE.md feat/draft new docs content and designed new onboarding process 2026-06-08 02:27:40 +01:00
docs.json docs: refine welcome, quick start, and open-source pages 2026-06-09 18:44:18 +01:00
README.md Codex/skill docs update - New PR with correct video formate (#1387) 2026-02-27 21:24:58 +08:00
STYLE_GUIDE.md feat/draft new docs content and designed new onboarding process 2026-06-08 02:27:40 +01:00

Eigent Docs

This directory contains the Mintlify documentation for Eigent. The docs are hosted via Mintlify and configured through docs.json.

Prerequisites

Install the Mintlify CLI globally:

npm install -g mintlify

Preview locally

Run the dev server from inside the docs/ directory:

cd docs
mintlify dev

This starts a local server at http://localhost:3000 with hot reload on file changes.

File structure

docs/
├── docs.json              # Mintlify config: theme, navigation, branding
├── images/                # Logos and favicon
├── get_started/           # Welcome, installation, quick start
├── core/                  # Concepts, workforce, tools, workers, skills
│   └── models/            # Per-model setup guides (BYOK, Gemini, Kimi, etc.)
└── troubleshooting/       # Bug reporting, support

Adding a new page

  1. Create a .md file in the appropriate section folder (e.g. core/my-feature.md).
  2. Add a frontmatter title at the top:
    ---
    title: "My Feature"
    description: "Short description shown in search and meta."
    ---
    
  3. Register the page in docs.json under navigation.tabs[0].groups in the relevant group's pages array:
    "/core/my-feature"
    
    Note: paths omit the .md extension and are relative to docs/.

Updating an existing page

Edit the .md file directly. Mintlify uses standard Markdown with some extended components (callouts, cards, tabs, etc.) — see the Mintlify docs for available components.

Updating navigation or config

All site-level settings live in docs.json:

  • Navigation order — edit the pages arrays inside navigation.tabs[0].groups
  • Nested groups — add an object with group, icon, and pages in place of a plain path string
  • Theme / colors / logo — edit the top-level fields (theme, colors, logo, favicon)
  • Navbar links — edit navbar.links and navbar.primary
  • Footer socials — edit footer.socials

Deployment

Docs are deployed automatically by Mintlify on every push to the connected branch. No manual deploy step is needed — merging to main triggers a rebuild.