enterplace

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-publish

Publishing an App

Run /enterplace-publish from inside your app directory. The command handles the entire submission flow:

  1. Validates your enterplace.json manifest
  2. Bumps the patch version automatically
  3. Installs dependencies and verifies the build
  4. Forks the monorepo and creates a feature branch
  5. 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

FieldTypeDescription
namestring1–50 characters
typestringalternative | original
categoryenum8 categories
versionsemvere.g. 1.0.0
platformsstring[]macos, windows, linux
licensestringMIT only

/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-app

Runs 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