A collection of personal plugins for Claude Code, including custom agents, skills, and session analysis tools.
| Plugin | Description | Version |
|---|---|---|
| kyle-custom | Custom agents, skills, and commands for Claude Code | 0.6.0 |
| session-historian | Read and analyze Claude Code session history for debugging, continuity, and workflow analysis | 1.0.0 |
| gastown | Multi-agent orchestration system for coordinating Claude Code instances | 1.0.0 |
claude plugin add kyletabor/claude_pluginsThis installs all plugins from the marketplace configuration.
kyle-custom (root-level plugin):
claude plugin add kyletabor/claude_pluginssession-historian:
claude plugin add kyletabor/claude_plugins/session-historiangastown:
claude plugin add kyletabor/claude_plugins/gastownCustom agents, skills, and commands for Claude Code workflows. Includes:
- architect skill - Designs architecture and creates implementation tasks from epics/PRDs. Explores the codebase with parallel subagents, designs technical approach, and creates implementation task beads with step-by-step instructions.
- beadmeister skill - Creates execution-ready task beads from Architect output. Converts architecture specs into polecat work with molecular, executable steps.
- architect command - Slash command to invoke the architect skill
- beadmeister command - Slash command to invoke the beadmeister skill
Read and analyze Claude Code session history for debugging, continuity, and workflow analysis. Provides 6 Python scripts for listing, searching, summarizing, and analyzing sessions.
Session historian can help you:
- Debug issues by reviewing past sessions
- Continue work from previous conversations
- Analyze workflow patterns and agent behavior
- Search session history for specific topics or events
Multi-agent orchestration system for coordinating Claude Code instances. Teaches Claude how to operate in a Gas Town multi-agent environment, following the propulsion principle for autonomous agent coordination.
The gastown skill provides:
- Role definitions and responsibilities (mayor, sheriff, deputy, townsperson)
- Command protocols for agent coordination
- Workflow patterns for multi-agent collaboration
- Best practices for the propulsion principle (autonomous, self-directed work)
Originally created by Steve Yegge, maintained by Kyle Tabor.
.
├── .claude-plugin/
│ ├── plugin.json # kyle-custom plugin manifest
│ └── marketplace.json # Multi-plugin marketplace config
├── skills/
│ ├── architect/ # Architecture and task decomposition skill
│ │ └── SKILL.md
│ └── beadmeister/ # Task bead creation skill
│ └── SKILL.md
├── session-historian/ # Session history analysis plugin
│ ├── .claude-plugin/
│ │ └── plugin.json
│ └── [session analysis scripts]
├── gastown/ # Multi-agent orchestration plugin
│ ├── .claude-plugin/
│ │ └── plugin.json
│ └── skills/
│ └── gastown/
│ └── SKILL.md
└── README.md
Kyle Tabor
- GitHub: kyletabor
MIT