https://github.com/sequenzia/claude-alchemy
Supercharge your Claude Code workflow with powerful plugins and a visual task manager. Claude Alchemy is a collection of tools and applications designed to help developers get the most out of Claude Code.
https://github.com/sequenzia/claude-alchemy
agent-skills ai-agents ai-coding claude claude-code claude-code-plugin claude-code-skills claude-code-tasks devloper-tools
Last synced: about 10 hours ago
JSON representation
Supercharge your Claude Code workflow with powerful plugins and a visual task manager. Claude Alchemy is a collection of tools and applications designed to help developers get the most out of Claude Code.
- Host: GitHub
- URL: https://github.com/sequenzia/claude-alchemy
- Owner: sequenzia
- License: mit
- Created: 2026-01-25T22:13:59.000Z (17 days ago)
- Default Branch: main
- Last Pushed: 2026-02-03T05:15:35.000Z (9 days ago)
- Last Synced: 2026-02-03T17:21:16.643Z (9 days ago)
- Topics: agent-skills, ai-agents, ai-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-code-tasks, devloper-tools
- Language: TypeScript
- Homepage:
- Size: 1.99 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Claude Alchemy
**Supercharge your Claude Code workflow with powerful plugins and a visual task manager.**
Claude Alchemy is a collection of tools and apps designed to help developers get the most out of [Claude Code](https://docs.anthropic.com/en/docs/claude-code).

**See more screenshots [screenshots](#screenshots) below**
> **Documentation:** [sequenzia.github.io/claude-alchemy](https://sequenzia.github.io/claude-alchemy)
## Task Manager
**See your Claude Code Tasks in real-time.**
The Task Manager is a real-time Kanban board that visualizes Claude's native task system (`~/.claude/tasks/`). Watch tasks flow from Pending → In Progress → Completed as Claude works through your project.
**Key Features:**
- **Real-time updates** — Tasks update instantly via Server-Sent Events as Claude works
- **Dependency tracking** — See which tasks block others and track completion flow
- **Statistics dashboard** — Monitor progress with completion percentages and blocked task counts
- **Search & filter** — Quickly find tasks across large task lists
- **Dark/light themes** — Easy on the eyes during those long coding sessions
```bash
cd apps/task-manager
pnpm install && pnpm dev # Starts on http://localhost:3030
```
> **New to Claude Code Tasks?** Check out the [Tasks Cheatsheet](./internal/docs/claude-tasks-cheatsheet.md) for tips on setting up `CLAUDE_CODE_TASK_LIST_ID`, task dependencies, and best practices.
## Architecture
Claude Alchemy is a pnpm monorepo with plugins, apps, and developer tooling:
| Component | Location | Description |
|-----------|----------|-------------|
| **Tools Plugin** | `plugins/tools/` | 9 agents, 8 skills (+ 5 supporting) for code exploration, architecture, review, docs, and release workflows (v0.2.3) |
| **SDD Plugin** | `plugins/sdd/` | 2 agents, 4 skills for spec-driven development: create-spec → create-tasks → execute-tasks (v0.2.6) |
| **Task Manager** | `apps/task-manager/` | Next.js 16 real-time Kanban board for Claude Code Tasks |
| **VS Code Extension** | `extensions/vscode/` | Schema validation and autocomplete for plugin.json, hooks.json, SKILL.md frontmatter (v0.2.0) |
| **JSON Schemas** | `schemas/` | 7 JSON Schema definitions for Claude Code plugin file validation |
### Plugins
The plugin system uses a "markdown-as-code" design — all workflow logic lives in declarative `SKILL.md` and agent markdown files. Skills orchestrate specialized agents in parallel using Claude Code's Task tool.
**Tools Plugin (`claude-alchemy-tools` v0.2.4):**
- `/codebase-analysis` — Multi-phase codebase exploration with parallel agents
- `/feature-dev` — Feature development (explore → design → implement → review)
- `/deep-analysis` — Deep exploration and synthesis workflow
- `/teams-deep-analysis` — Team-based collaborative analysis with Agent Teams
- `/docs-manager` — Documentation management for MkDocs sites and standalone markdown
- `/git-commit` — Conventional commit creation
- `/release` — Python package release workflow
- `/bump-plugin-version` — Semantic version management
*Plus 5 supporting skills loaded internally by workflows.*
**SDD Plugin (`claude-alchemy-sdd` v0.2.8):**
- `/create-spec` — Adaptive interview to generate specifications
- `/analyze-spec` — Spec quality analysis
- `/create-tasks` — Decompose specs into Claude Code Tasks with dependency inference
- `/execute-tasks` — Autonomous task execution with shared context
## Screenshots
### Task Manager Kanban View

### Tasks Generated from sdd-tools

### Single Task View with Dependencies, Test Cases and Acceptance Criteria

### Completed Tasks in Claude Code

## Development
### Prerequisites
- Node.js >= 18
- pnpm >= 8
- Python >= 3.14 and [uv](https://docs.astral.sh/uv/) (for documentation site only)
### Setup
```bash
# Clone the repository
git clone https://github.com/sequenzia/claude-alchemy.git
cd claude-alchemy
# Install dependencies
pnpm install
# Start task-manager
pnpm dev:task-manager
```
### Workspace Commands
```bash
pnpm dev:task-manager # Start task-manager dev server
pnpm build:task-manager # Build task-manager for production
pnpm lint # Run linting across all workspaces
```
### Documentation Site
```bash
uv sync --all-extras # Install Python dependencies
uv run mkdocs serve # Local preview at http://localhost:8000
scripts/deploy-docs.sh # Deploy to GitHub Pages
```
## License
MIT