A marketplace of small, focused plugins that turn Claude Code into a useful assistant for the things you actually do — taxes, paperwork, recurring chores. Each plugin is self-contained: skills, scripts, reference docs, MIT-licensed.
Install
In Claude Code, add the marketplace:
/plugin marketplace add flykit-cc/flykit
Then install any plugin from it:
/plugin install steuer@flykit
Plugins
| Plugin | What it does |
|---|---|
| flow | A stack-agnostic dev workflow — session lifecycle (continue / status / pause), parallel deep reviews, and an autonomous autopilot loop. Reads your stack from a per-repo .flow/config.md. |
| steuer | German freelancer tax filing — fetch transactions from Wise, classify with Claude, calculate the EÜR, walk through ELSTER. |
| more coming | Got a workflow worth automating? Open an issue or see CONTRIBUTING.md. |
How it works
flykit is a standard Claude Code plugin marketplace. Each plugin is a directory under plugins/ containing its manifest, skills, scripts, and references.
Each plugin also has a web.json sidecar — that's what flykit.cc renders (tagline, features, skills, sources). The site fetches marketplace.json + each web.json + live star count at build time.
Pushes to main auto-publish to flykit.cc within about a minute.
plugins/<name>/ flykit.cc
├── .claude-plugin/ ├── marketplace fetch (build time + 1h ISR)
│ └── plugin.json ─────────► Claude Code
├── skills/
├── scripts/
├── web.json ───────────────► flykit.cc renderer
└── README.md
Contributing
PRs welcome. See CONTRIBUTING.md for:
- Adding a new plugin (full checklist)
- Working on existing plugins — debugging locally, adding skills/commands/agents, extending pluggable interfaces (e.g., steuer's transaction-source contract)
- Code style + PR checklist
The flykit.cc frontend lives in a separate repo: flykit-cc/flykit-web. Design, copy, and layout PRs go there.