← ClaudeAtlas

create-projectlisted

Bootstraps a new project in a WorkOS-style workspace. Use whenever the user says 'create a project,' 'new project,' 'spin up a project,' 'add a project,' 'start a new client,' 'add an engagement,' or asks to start a new client engagement, recurring workflow, or area of work that should have its own context. Creates the subfolder with CLAUDE.md and MEMORY.md following the standard project structure, then registers the project in the appropriate routing map (root or domain) so future sessions auto-load it. The successor to /create-workstation in v1.x — same skill, simpler name.
dylanmoo/workos-plugin · ★ 0 · AI & Automation · score 72
Install: claude install-skill dylanmoo/workos-plugin
# Create Project A repeatable scaffold for spinning up a new project in a WorkOS-style workspace. Run this when the user wants to add a new area of work and have it integrated into the routing correctly the first time. ## What this skill does Three things, and only three things: 1. **Gathers the minimum info** needed to create a meaningful project (name, identity, routing condition). 2. **Creates the project folder** with `CLAUDE.md` and `MEMORY.md` following the standard structure. 3. **Registers the project** in the right routing map (root if it lives at the workspace top level, the parent domain's `CLAUDE.md` if it lives inside a domain) so future sessions auto-load it. That's it. No automated content migration, no inferred workflows, no pre-populated rules. Just the scaffold the user can grow. ## Step 1: Discover the workspace root and parent Find the WorkOS root dynamically. Look for a `CLAUDE.md` in the mounted workspace folder that has a "Routing Map" section. That's the root. Then determine where the new project should live: - If the user is in the workspace root and the project doesn't naturally fit any existing domain, the project sits at the root level. - If the user is inside a domain folder (one with its own `CLAUDE.md`), the project will be created inside that domain. - If the user wants the project inside a specific group (e.g., `clients/`), confirm the group folder exists and the project will live at `<domain>/<group>/<project>/`. Ask the user explic