Plugins for Android development — OpenAPI models and Yandex Tracker
| Plugin | Version | Description |
|---|---|---|
| swagger-android | 1.2.0 |
Generate Android Kotlin data models from Swagger/OpenAPI specs |
| yandex-tracker | 1.0.2 |
Yandex Tracker MCP server: 30+ tools, agent, workflows, sprint planning |
The development workflow plugins (
android-dev,kmp-migrator-superpowers) moved to a standalone CLI — gor-mobile. See Migration to gor-mobile.
Add the marketplace and install plugins:
/plugin marketplace add gorban-dev/gor-dev-plugins
/plugin install <plugin-name>@gor-dev-pluginsOr pin everything in your project's .claude/settings.json:
{
"extraKnownMarketplaces": {
"gor-dev-plugins": {
"source": {
"source": "github",
"repo": "gorban-dev/gor-dev-plugins"
}
}
},
"enabledPlugins": {
"swagger-android@gor-dev-plugins": true,
"yandex-tracker@gor-dev-plugins": true
}
}Add the marketplace directly from GitHub and install the plugin you need:
codex plugin marketplace add gorban-dev/gor-dev-plugins --ref main
codex plugin add yandex-tracker@gor-dev-pluginsPlugins that ship bundled MCP servers, such as yandex-tracker, include their built dist/ assets in the repository, so normal installation does not require npm install or a local build.
Each plugin ships per-platform manifests and a dedicated INSTALL.md inside its directory:
| Platform | Where to look |
|---|---|
| Cursor | <plugin>/.cursor-plugin/plugin.json |
| Codex CLI | <plugin>/.codex/INSTALL.md |
| OpenCode | <plugin>/.opencode/INSTALL.md |
Generates Android Kotlin data models from Swagger / OpenAPI specifications.
- Data classes with
kotlinx-serialization - Domain ↔ Data mappers
- Enum mappers
- Naming conventions enforced via the
swagger-kotlin-conventionsskill
Local MCP server with 30+ tools covering the Yandex Tracker API: issues, comments, worklogs, checklists, sprints, boards, queues, transitions, attachments. Ships with a skill for daily workflows (standups, sprint planning, time tracking).
android-dev, kmp-migrator-superpowers and google-dev-knowledge were removed in v3.0.0. Drop them from your config:
"enabledPlugins": {
- "android-dev@gor-dev-plugins": true,
- "kmp-migrator-superpowers@gor-dev-plugins": true,
- "google-dev-knowledge@gor-dev-plugins": true,
"swagger-android@gor-dev-plugins": true,
"yandex-tracker@gor-dev-plugins": true
}Both are superseded by gor-mobile — a standalone CLI instead of a plugin. It ships the same brainstorm → plan → implement → review → verify workflow with 14 skills, two review agents, hooks, rules packs and artifact retention, and works in both Claude Code (per-repo) and Codex (user-level).
brew install gorban-dev/gor-mobile/gor-mobile # or: npm install -g gor-mobile
gor-mobile setup # one-time machine setup
cd ~/code/my-android-app && gor-mobile init # install into the repoDevice work, project scaffolding, SDK/emulator management and Android docs lookup go through Google's Android CLI, which gor-mobile requires and drives.
The plugin was a thin wrapper around Google's own remote MCP server. Connect to it directly:
claude mcp add google-dev-knowledge --transport http https://developerknowledge.googleapis.com/mcp \
--header "X-Goog-Api-Key: YOUR_API_KEY"Docs: developers.google.com/knowledge/mcp. For Android-only lookups, android docs search / android docs fetch from the Android CLI hits the Android Knowledge Base without an API key.
MIT — see individual plugins for details.
Built with ♥ by Sergey Gorban.