A Claude Code Skills marketplace containing plugins with domain-specific Skills for building mini SaaS products.
Skills are directories containing a SKILL.md file that teach Claude domain knowledge, workflows, and best practices. Claude automatically loads Skills when user requests match the skill's description.
/plugin marketplace add ingli96/vibe_context
/plugin install ai-engineer@vibe-context
/plugin install claude-skiller@vibe-contextgit clone https://github.com/ingli96/vibe_context.git ~/.claude/skills/vibe-contextMeta-skill for creating new Claude Code Skills with proper structure and best practices.
Skills:
skill-creator- Scaffolds new Skills, explains structure, helps troubleshoot existing Skillsproject-planning- Creates comprehensive plan.md files with tasks, acceptance criteria, and architecture decisions
Skills for AI/LLM development including API patterns and observability.
Skills:
openai-api- OpenAI Responses API (GPT-5.4 family), structured output, async pipelinesgoogle-image- Google image generation with Nano Banana 2 and Nano Banana Prollm-tracing- LLM observability with Langfuse SDK v4 and OpenTelemetry
Third-party service integrations (coming soon): Supabase, Stripe, Sentry, Vercel.
vibe-context/
├── .claude-plugin/
│ └── marketplace.json # Plugin registry
├── plugins/
│ ├── ai-engineer/
│ │ └── skills/
│ │ ├── openai-api/
│ │ ├── google-image/
│ │ └── llm-tracing/
│ ├── claude-skiller/
│ │ └── skills/
│ │ ├── skill-creator/
│ │ └── project-planning/
│ └── integrations/
│ └── skills/
└── CLAUDE.md # Project instructions
- Create directory:
plugins/<plugin-name>/skills/<skill-name>/ - Create
SKILL.mdwith required frontmatter:--- name: skill-name description: What it does. Use when [trigger keywords]. ---
- Add skill path to the appropriate plugin in
.claude-plugin/marketplace.json
- Max 64 characters
- Lowercase letters, numbers, hyphens only
- Cannot contain "anthropic" or "claude"
- Prefer gerund form:
processing-pdfs,generating-commits
MIT