-
Notifications
You must be signed in to change notification settings - Fork 0
Feat/claude skills marketplace #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Introduces a Claude Code plugin marketplace at skills/.claude-plugin/ featuring both external and local plugins: External plugins: - expo-skills (expo/skills) - callstack-skills (callstackincubator/agent-skills) - anthropic-skills (anthropics/skills) Local plugins: - kysely-sql: SQL with Kysely query builder for Expo/Bun - planning: MVP-style planning with issue context gathering - typescript: Strict TypeScript with typecheck hook - biome: Auto-format/lint with Biome hook - bun: Environment setup with version management - general: Git commands, Linear/Sentry/GitHub MCP integrations Includes hooks for SessionStart, PostToolUse, and notifications, plus slash commands for /commit, /push, /amend, /start-linear-task. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR adds a Claude Code skills marketplace to the Kingstinct organization repository, providing curated plugins for Expo, React Native, TypeScript, SQL, planning workflows, and development tools. The marketplace enables users to install pre-configured skills that guide Claude's behavior for specific development tasks.
Changes:
- Added skills marketplace infrastructure with plugin definitions and installation instructions
- Created internal Kingstinct plugins (TypeScript, planning, SQL, Biome, Bun, general workflows)
- Added skill-creator and mcp-builder agent skills for creating new skills and MCP servers
- Configured GitHub Actions workflows for validation
Reviewed changes
Copilot reviewed 43 out of 43 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| skills/.claude-plugin/marketplace.json | Defines marketplace catalog with external (Expo, Callstack, Anthropic) and internal plugins |
| skills/plugins/typescript/* | TypeScript best practices plugin with typecheck hook |
| skills/plugins/planning/* | MVP-style planning plugin with Linear/Sentry/GitHub integration |
| skills/plugins/kysely-sql/* | SQL database guidelines using Kysely query builder |
| skills/plugins/biome/* | Biome linting/formatting plugin with auto-fix hook |
| skills/plugins/bun/* | Bun environment setup plugin with version management |
| skills/plugins/general/* | Git workflow commands and integrations (commit, push, amend, Linear tasks) |
| .agents/skills/skill-creator/* | Skill creation guide with validation and packaging scripts |
| .agents/skills/mcp-builder/* | MCP server development guide with evaluation framework |
| README.md | Added installation and usage documentation for the skills marketplace |
| .vscode/settings.json | Enabled search in skill/skills directories |
| .github/workflows/* | Added YAML and plugin validation workflows |
Comments suppressed due to low confidence (1)
skills/plugins/general/scripts/pushover-notification.sh:1
- Using
export $(... | xargs)without proper quoting can lead to command injection if the .env.github file contains malicious content. Consider using a safer method to load environment variables, such asset -a; source "$SCRIPT_DIR/../.env.github"; set +aor parsing line-by-line with proper validation.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Remove check that combined mutually exclusive conditions (-z and -n on the same variable), which could never evaluate to true. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
No description provided.