Getting started
Install flykit
Five steps to get a flykit plugin running inside Claude Code.
Install Claude Code
flykit plugins run inside Claude Code. Install it from docs.claude.com. Any recent version supports plugins.
Add the marketplace
Register flykit as a plugin marketplace. You only do this once.
$ claude /plugin marketplace add flykit-cc/flykitInstall a plugin
Pick a plugin and install it scoped to flykit.
$ /plugin install steuer@flykitOpen Claude Code
Claude Code is a CLI — you launch it from a folder in your terminal, and that folder becomes the session's working directory. Whether it matters depends on the plugin:
- Skills that touch files (like steuer, which reads bank exports and writes reports) —
cdinto the folder where your data lives. - Slash commands, subagents, and prompt-only plugins — the folder doesn't matter. Open Claude Code anywhere.
- Hooks and MCP servers — context depends on the plugin. Check its README.
Run a skill
Each plugin exposes one or more skills. Invoke them like any other slash command.
$ /skill calculate-euerUninstalling
Remove a single plugin, or unregister the whole marketplace.
Remove one plugin:
$ /plugin uninstall steuer@flykitUnregister the marketplace entirely (also removes every plugin installed from it):
$ /plugin marketplace remove flykitWhat next?
Browse the available plugins, or open an issue to request a new one.