This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
This repository contains documentation for Plexe.ai, a machine learning model generation platform, built with Mintlify (a documentation site generator). The documentation describes Plexe's capabilities, API reference, and use cases.
The Plexe platform consists of:
- An open-source Python library (
pip install plexe) - The proprietary Plexe Platform (
console.plexe.ai/api.plexe.ai)
To run the documentation site locally:
# Install Mintlify CLI globally
npm install -g mint
# Start the development server
mint devThis will start a local development server, typically on port 3000.
Mintlify handles deployment automatically when changes are pushed to the main branch. No additional build commands are needed.
docs.json: Configuration file for the Mintlify documentation site, including navigation structure, colors, and metadata.pages/: Contains all documentation contentintroduction/: Introductory content about Plexelibrary/: Documentation for the open-source Python librarytutorials/: Step-by-step guideshow-to/: Task-oriented guidesexplanation/: Concept explanationsreference/: API reference
platform/: Documentation for the Plexe Platform- Similar structure to the library section
usecases/: Example use cases showing how Plexe can be applied
Documentation content is written in MDX (Markdown with JSX support). Each content file follows this structure:
---
title: "Page Title"
description: "Brief description of the page"
---
Content in Markdown format with optional JSX components...- Create a new branch for your changes
- Edit existing MDX files or add new ones
- Update
docs.jsonif adding new pages to the navigation - Test locally with
mint dev - Submit a pull request to the main branch
scripts/dumpdocs.py: Collects all documentation files and outputs them to a single text file, useful for providing context to large language models.