-
Notifications
You must be signed in to change notification settings - Fork 8
Analyze Claude Code plugins and improve kit #1
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
Open
mikeendale
wants to merge
4
commits into
main
Choose a base branch
from
claude/analyze-plugins-improve-kit-01HNE2Aw3HPBAUgafAuWBpyZ
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
a5b4d08
feat: migrate to official Claude Code plugin format
claude 0792cc5
fix: make /setup install plugins automatically instead of just recomm…
claude a81655f
fix: align marketplace.json with official Anthropic schema
claude e214e63
fix: remove non-standard SKILL.md frontmatter fields
claude File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,82 @@ | ||
| { | ||
| "$schema": "https://anthropic.com/claude-code/marketplace.schema.json", | ||
| "name": "claude-code-kit", | ||
| "version": "1.0.0", | ||
| "description": "Framework-specific plugins for Claude Code with automatic detection and installation", | ||
| "owner": { | ||
| "name": "blencorp", | ||
| "email": "support@blencorp.com" | ||
| }, | ||
| "plugins": [ | ||
| { | ||
| "name": "nextjs", | ||
| "description": "Next.js 15+ App Router, Server Components, Server Actions", | ||
| "source": "./cli/kits/nextjs", | ||
| "category": "development", | ||
| "version": "1.0.0" | ||
| }, | ||
| { | ||
| "name": "react", | ||
| "description": "React 18+ hooks, Suspense, lazy loading, TypeScript patterns", | ||
| "source": "./cli/kits/react", | ||
| "category": "development", | ||
| "version": "1.0.0" | ||
| }, | ||
| { | ||
| "name": "express", | ||
| "description": "Express.js routing, middleware, controllers, error handling", | ||
| "source": "./cli/kits/express", | ||
| "category": "development", | ||
| "version": "1.0.0" | ||
| }, | ||
| { | ||
| "name": "nodejs", | ||
| "description": "Node.js backend patterns with TypeScript and layered architecture", | ||
| "source": "./cli/kits/nodejs", | ||
| "category": "development", | ||
| "version": "1.0.0" | ||
| }, | ||
| { | ||
| "name": "prisma", | ||
| "description": "Prisma ORM patterns for type-safe database access", | ||
| "source": "./cli/kits/prisma", | ||
| "category": "development", | ||
| "version": "1.0.0" | ||
| }, | ||
| { | ||
| "name": "tailwindcss", | ||
| "description": "Tailwind CSS v4 utility patterns and responsive design", | ||
| "source": "./cli/kits/tailwindcss", | ||
| "category": "development", | ||
| "version": "1.0.0" | ||
| }, | ||
| { | ||
| "name": "shadcn", | ||
| "description": "shadcn/ui component library with Radix UI primitives", | ||
| "source": "./cli/kits/shadcn", | ||
| "category": "development", | ||
| "version": "1.0.0" | ||
| }, | ||
| { | ||
| "name": "mui", | ||
| "description": "Material-UI v7 components and sx prop styling", | ||
| "source": "./cli/kits/mui", | ||
| "category": "development", | ||
| "version": "1.0.0" | ||
| }, | ||
| { | ||
| "name": "tanstack-query", | ||
| "description": "TanStack Query v5 data fetching and cache management", | ||
| "source": "./cli/kits/tanstack-query", | ||
| "category": "development", | ||
| "version": "1.0.0" | ||
| }, | ||
| { | ||
| "name": "tanstack-router", | ||
| "description": "TanStack Router file-based routing with type-safe navigation", | ||
| "source": "./cli/kits/tanstack-router", | ||
| "category": "development", | ||
| "version": "1.0.0" | ||
| } | ||
| ] | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| { | ||
| "name": "claude-code-kit", | ||
| "description": "Framework detection and plugin installer for Claude Code. Detects your project's tech stack (Next.js, React, Express, Prisma, etc.) and installs the appropriate plugins automatically.", | ||
| "version": "1.0.0", | ||
| "author": { | ||
| "name": "blencorp", | ||
| "email": "support@blencorp.com" | ||
| }, | ||
| "repository": "https://github.com/blencorp/claude-code-kit" | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Version inconsistency: The marketplace.json describes React as "React 18+" but the corresponding SKILL.md file and README table describe it as React 19 patterns. These should be aligned for consistency.
Recommendation: Update to "React 19" if the skill targets React 19 specifically, or update other documentation to say "React 18+" if backward compatibility is intended.