Documentation
Everything you need to build and publish apps on Enterplace.
Getting Started
Enterplace is an open source marketplace for apps built with AI. Every app is created with Claude Code and published via a single command.
Prerequisites
- Claude Code (latest)
- Node.js 18+
- Rust toolchain (for Tauri apps)
- GitHub account
Quick start
# Clone a paid app as a free alternative
/clone-app
# Or build something new
/create-app
# Publish to the marketplace
/enterplace-publishPublishing an App
Run /enterplace-publish from inside your app directory. The command handles the entire submission flow:
- Validates your enterplace.json manifest
- Bumps the patch version automatically
- Installs dependencies and verifies the build
- Forks the monorepo and creates a feature branch
- Opens a pull request with your app
After you submit
Automated checks (~5 min), human review, then build & deploy — code signed, Apple notarized, and live on enterplace.dev.
Manifest Reference
Every app needs an enterplace.json at its root:
{
"name": "My App",
"type": "original",
"description": "A short description",
"category": "Productivity",
"author": "your-github-handle",
"createdWith": "create-app",
"version": "1.0.0",
"platforms": ["macos", "windows", "linux"],
"license": "MIT",
"icon": "src-tauri/icons/128x128.png",
"tags": ["optional", "tags"]
}Required fields
/clone-app
Build a free, open source alternative to any paid app. Tell Claude Code what to replace and the skill handles architecture, build, and QA.
# Start the skill
/clone-appRuns a 10-phase pipeline with quality gates at every step.
/create-app
Build something new from a concept. Claude interviews you about the vision, then builds through the same 10-phase pipeline.
# Start the skill
/create-app