Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 0 additions & 57 deletions .github/workflows/claude-code-review.yml

This file was deleted.

50 changes: 0 additions & 50 deletions .github/workflows/claude.yml

This file was deleted.

19 changes: 6 additions & 13 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,11 @@ src/agentspaces/
│ ├── frontmatter.py # YAML frontmatter parser
│ └── logging.py # structlog config
└── templates/ # Bundled project templates
├── skeleton/ # Project skeleton templates
│ ├── CLAUDE.md # Agent constitution template
│ ├── TODO.md # Task list template
│ ├── .claude/ # Agent/command templates
│ └── docs/ # ADR and design templates
└── skills/ # Skill templates
└── skeleton/ # Project skeleton templates
├── CLAUDE.md # Agent constitution template
├── TODO.md # Task list template
├── .claude/ # Agent/command templates
└── docs/ # ADR and design templates
```

## Architecture
Expand All @@ -68,19 +67,13 @@ A workspace is:
- Metadata in `.agentspace/` directory
- Optional Python venv in `.venv/`

### Agent Skills

Uses [agentskills.io](https://agentskills.io) standard:
- `.github/skills/` for project-level skills
- `.agentspace/skills/` for workspace-specific skills
- Auto-discovered by compatible agents

## Commands

```bash
# Workspaces
agentspaces workspace create [branch] # Create workspace
agentspaces workspace list # List workspaces
agentspaces workspace status <name> # Show workspace details
agentspaces workspace remove <name> # Remove workspace

# Design templates
Expand Down
32 changes: 7 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# agentspaces

Workspace orchestration for AI coding agents. Manage isolated workspaces for parallel development with git worktrees, tracked context, and agent integration.
Workspace orchestration for AI coding agents. Manage isolated workspaces for parallel development with git worktrees and tracked context.

## Features

- **Parallel Development** - Work on multiple features simultaneously without branch switching
- **Isolated Environments** - Each workspace has its own Python venv and dependencies
- **Agent Integration** - Launch Claude Code directly into workspaces with context
- **Project Templates** - Generate documentation optimized for AI agents (CLAUDE.md, TODO.md, ADRs)
- **Workspace Tracking** - Purpose, metadata, and activity tracking per workspace
- **Workspace Tracking** - Purpose, metadata, and timestamps per workspace

## Quick Start

Expand All @@ -35,33 +34,17 @@ agentspaces workspace create main --purpose "Add user authentication"
# Created: eager-turing at ~/.agentspaces/my-app/eager-turing
```

### Launch an Agent

```bash
agentspaces agent launch eager-turing --use-purpose
# Launches Claude Code with prompt: "Add user authentication"
```

## Usage

### Workspace Commands

```bash
agentspaces workspace create [branch] # Create from branch (default: HEAD)
agentspaces workspace list # List all workspaces
agentspaces workspace status [name] # Show detailed status
agentspaces workspace activate <name> # Set as active workspace
agentspaces workspace sync [name] # Sync dependencies
agentspaces workspace status <name> # Show detailed status
agentspaces workspace remove <name> # Remove workspace
```

### Agent Commands

```bash
agentspaces agent launch [workspace] # Launch Claude Code
agentspaces agent launch --use-purpose # Use workspace purpose as prompt
```

### Documentation Templates

```bash
Expand All @@ -78,22 +61,21 @@ Workspaces are stored at `~/.agentspaces/<project>/<workspace>/`:

```
~/.agentspaces/my-app/eager-turing/
├── .agentspace/ # Metadata and skills
│ ├── workspace.json
│ └── skills/
├── .agentspace/ # Metadata
│ └── workspace.json
├── .venv/ # Isolated Python environment
└── <project files> # Git worktree
```

## Architecture

```
[CLI] → [Service] → [Git Worktree] → [Python Env] → [Agent Launch]
[CLI] → [Service] → [Git Worktree] → [Python Env]
```

- **CLI Layer** - Typer commands with Rich output
- **Service Layer** - WorkspaceService orchestration
- **Infrastructure** - Git, uv, and Claude subprocess wrappers
- **Infrastructure** - Git and uv subprocess wrappers

See [docs/design/architecture.md](docs/design/architecture.md) for detailed system design.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "agentspaces"
version = "0.1.0"
version = "0.2.0"
description = "Workspace orchestration tool for AI coding agents"
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/agentspaces/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""agentspaces: Workspace orchestration tool for AI coding agents."""

__version__ = "0.1.0"
__version__ = "0.2.0"
Loading