Claude Agent Workspace Generator

March 9, 2026 · View on GitHub

Claude Code Repos Index

Claude Agent Workspace Generator

A Claude Code workspace for creating, editing, and managing Claude Space templates that conform to the Claude Agent Workspace Model v1.1 specification.

What This Does

This repository is a launchpad — you open it in Claude Code and use slash commands to generate new workspace templates as GitHub repositories. Each template follows a standardized structure with onboarding, context management, work logging, and domain-specific slash commands.

Commands

CommandPurpose
/new-templateCreate a new workspace template from scratch
/edit-templateModify an existing template's files
/update-templateBring a template up to spec with the latest model
/combine-templateMerge capabilities from multiple templates
/validate-templateCheck a template against the schema
/list-templatesList your existing workspace templates
/publish-templatePush a local template to GitHub

Prerequisites

Usage

cd Claude-Agent-Workspace-Generator
claude

Then run any slash command, e.g.:

/new-template

The agent will interview you about the workspace you need and generate a complete template repository.

Reference

The reference/ directory contains the workspace model spec:

  • structure.md — Canonical folder structure
  • schema.json — Validation schema
  • onboard-template.md — Standard onboard command template
  • categories.md — Workspace category reference

Workspace Model

Templates follow the Claude Spaces Standard v1.1:

my-space/
├── CLAUDE.md              # Lightweight role & command stubs
├── context/
│   └── for-agent/         # Detailed agent instructions
├── work-log/              # Daily operation logs
├── planning/              # Active plans & pivots
├── user-docs/             # Agent-generated deliverables
└── .claude/commands/
    └── onboard.md         # Required initialization command

For more Claude Code projects, visit my Claude Code Repos Index.