Add Claude Code plugin marketplace with skills and documentation#1913
Open
Add Claude Code plugin marketplace with skills and documentation#1913
Conversation
Add a Claude Code plugin directly in the Backpex repo, distributed as a marketplace. Includes six skills that give Claude deep knowledge of Backpex APIs and conventions: - create-filter: all built-in filter types and custom filters - create-field: 17 built-in field types and custom field creation - create-live-resource: scaffolding LiveResources with adapter_config and routing - create-item-action: row/show actions with handle/link pattern - create-resource-action: global actions with slide-over forms - upgrade: version migration using existing upgrade guides Also add an "AI Assisted Development" documentation guide covering plugin installation and available skills.
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a Claude Code plugin marketplace definition and a set of “skills” docs to help Claude generate Backpex-specific code, plus a new “AI Assisted Development” guide that’s included in HexDocs.
Changes:
- Added six Claude “skill” markdown files covering common Backpex tasks (LiveResources, fields, filters, actions, upgrades).
- Added
.claude-pluginmarketplace/plugin metadata for distributing the Backpex Claude plugin. - Added a new
guides/ai_development/ai-development.mdguide and wired it intomix.exsdocs extras/groups.
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 8 comments.
Show a summary per file
| File | Description |
|---|---|
| skills/upgrade/SKILL.md | New upgrade skill instructions and upgrade-guide pointers |
| skills/create-resource-action/SKILL.md | New resource action skill with callback reference and examples |
| skills/create-live-resource/SKILL.md | New LiveResource scaffolding skill with options/callbacks/routing guidance |
| skills/create-item-action/SKILL.md | New item action skill covering handle/link patterns and placement |
| skills/create-filter/SKILL.md | New filter skill describing built-in/custom filters and wiring |
| skills/create-field/SKILL.md | New field skill covering built-in fields and custom Backpex.Field |
| mix.exs | Adds the AI development guide to HexDocs extras and groups |
| guides/ai_development/ai-development.md | New “Claude Code Plugin” installation/usage guide |
| .claude-plugin/plugin.json | Plugin metadata (name/description/version/author) |
| .claude-plugin/marketplace.json | Marketplace metadata referencing the plugin source and keywords |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- create-filter: fix wrong @impl module for MultiSelect prompt/0, add use Phoenix.Component for custom filter HEEx support, add validate/2 to overridable callbacks - create-field: fix callback return types, remove wrong orderable default, add missing align_label and index_column_class options, clarify overridable vs optional callbacks - create-live-resource: fix invalid except: [:delete] example, add missing translate/1 and filters/1 callbacks, fix pubsub and on_mount defaults - upgrade: add critical elixir-autogen warning for Gettext workflow to prevent accidental translation deletion
- Clarify pubsub fallback mechanism in default description - Document that layout/1 also accepts an arity-1 function
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Add a Claude Code plugin directly in the Backpex repo, distributed as a marketplace. Includes six skills that give Claude deep knowledge of Backpex APIs and conventions:
Also add an "AI Assisted Development" documentation guide covering plugin installation and available skills.