A Claude Code plugin marketplace for extending AI coding agents with specialized domain knowledge, workflows, and tool integrations.
Manage, monitor, troubleshoot, and develop with locally running Airbyte instances using abctl CLI and kubectl.
Use when:
- Diagnosing sync issues (long-running jobs, failed syncs, no output)
- Checking Airbyte service health and pod status
- Investigating configuration problems
- Monitoring job progress and logs
- Verifying data persistence to destinations like S3
- Debugging connection or authentication errors
- Managing Airbyte lifecycle (install/restart/uninstall)
Categories covered: CLI operations, Kubernetes pod management, API interactions, troubleshooting workflows, diagnostic scripts
Add the marketplace and install a plugin:
/plugin marketplace add berrydev-ai/agent-skills
/plugin install airbyte-local-manager@berrydev-plugins
Once installed, the skill is automatically available to Claude Code. The agent will use the skill's SKILL.md as context when working on relevant tasks. You can also invoke it directly:
/airbyte-local-manager
- "Check the status of my local Airbyte instance"
- "My sync has been running for 20 hours with no output - diagnose what's wrong"
- "Verify that data is being written to S3 from my Airbyte connection"
- "Restart the Airbyte worker pod"
agent-skills/
├── .claude-plugin/
│ └── marketplace.json # Marketplace catalog
├── plugins/
│ └── airbyte-local-manager/
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin manifest
│ ├── skills/
│ │ └── airbyte-local-manager/
│ │ └── SKILL.md # Agent instructions (loaded as context)
│ ├── scripts/ # Executable scripts the agent can run
│ ├── references/ # Detailed reference docs (loaded on demand)
│ ├── metadata.json # Version, organization, description
│ └── README.md # Human-readable documentation
├── CLAUDE.md
├── README.md
└── LICENSE
To add a new plugin, see CLAUDE.md for detailed guidelines.
MIT - see LICENSE for details.