https://github.com/tomitribe/claude-plugins
Claude Code plugin marketplace for Tomitribe projects
https://github.com/tomitribe/claude-plugins
Last synced: about 1 month ago
JSON representation
Claude Code plugin marketplace for Tomitribe projects
- Host: GitHub
- URL: https://github.com/tomitribe/claude-plugins
- Owner: tomitribe
- Created: 2026-02-18T18:08:56.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-04-02T01:13:03.000Z (2 months ago)
- Last Synced: 2026-04-02T13:51:25.971Z (2 months ago)
- Language: Shell
- Size: 109 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Claude Plugins
This repository contains plugins for Tomitribe's open source libraries and team workflow commands.
## Setup
Add the Tomitribe marketplace to Claude Code:
```
/plugins → Marketplace → +Add Marketplace → tomitribe/claude-plugins
```
Then enable the plugins you want from the list.
## Library Reference Plugins
Skills that auto-activate when you're working with Tomitribe libraries:
| Plugin | Library |
|--------|---------|
| `churchkey` | Cryptographic key parsing/export (PEM, JWK, OpenSSH, SSH2) |
| `crest` | Annotation-driven CLI framework |
| `pixie` | Lightweight dependency injection, configuration, and events |
| `jaws` | Typed S3 proxy interfaces |
| `tomitribe-util` | Encoding, I/O, duration/size, templates, collections, reflection |
| `tomitribe-util-dir` | Strongly-typed filesystem manipulation with Dir proxies |
| `archie` | Streaming archive transformation |
| `checkmate` | Fluent validation |
| `http-signatures` | HTTP message signing (HMAC, RSA, ECDSA) |
| `swizzle` | Stream manipulation and lexing |
| `java-conventions` | Tomitribe Java coding standards (`final` keyword, etc.) |
## Workflow Commands
Commands for working effectively with Claude Code. Enable via `workflow@tomitribe`.
### `/design [topic]`
Starts a structured design session. Claude discusses, tracks decisions, captures
rejected alternatives, and documents open questions — all before any code is written.
Creates a working document at `docs/dev/-working-doc.md`.
Use for problems that cross system boundaries, have multiple interconnected decisions,
or where the first solution that comes to mind probably isn't the best one.
### `/improve`
Reviews recent git history and proposes CLAUDE.md improvements based on what
actually happened. Identifies three categories:
- **Mistakes to prevent** — reverts, fix commits, corrections become "DO NOT" rules
- **Improvements to harden** — refactors, new conventions, quality improvements become "always do it this way" rules
- **Workflow patterns** — repeated commands, undocumented build steps become efficiency rules
Run after completing significant work to make Claude permanently better for
the next session.
### `/handoff`
Before `/clear`, dumps session state to `HANDOFF.md` so the next session picks
up cleanly. Covers what was done, decisions made, what's next, gotchas, and
how to continue.
### `/recap`
Quick "where was I?" for when you return to an open session. Summarizes what
you were working on, what got done, where you left off, and what's next.