-
Notifications
You must be signed in to change notification settings - Fork 981
Introduce a skeleton directory for hosting Claude plugins #6656
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
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| { | ||
| "name": "armeria", | ||
| "owner": { | ||
| "name": "armerian", | ||
| "email": "dl_armeria@linecorp.com" | ||
| }, | ||
| "metadata": { | ||
| "description": "Claude plugin for the Armeria microservice framework, providing AI-assisted guidance for common development tasks", | ||
| "version": "0.0.1" | ||
| }, | ||
| "plugins": [ | ||
| { | ||
| "name": "armeria", | ||
| "source": { | ||
| "source": "git-subdir", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Noted Claude partially clones to fetch the sub directory. |
||
| "url": "https://github.com/line/armeria.git", | ||
| "path": "tools/claude-plugins/armeria" | ||
| } | ||
|
||
| } | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,24 @@ | ||||||||||||||||||
| # Claude Plugin | ||||||||||||||||||
|
|
||||||||||||||||||
| We maintain a [Claude](https://claude.ai/) plugin that may be useful for the community to use AI-powered guidance for development. | ||||||||||||||||||
|
|
||||||||||||||||||
| ## Installation | ||||||||||||||||||
|
|
||||||||||||||||||
| You can install the Armeria Claude plugin from the marketplace: | ||||||||||||||||||
|
|
||||||||||||||||||
| ```bash | ||||||||||||||||||
| /plugin marketplace add line/armeria | ||||||||||||||||||
| /plugin install armeria@armeria | ||||||||||||||||||
|
||||||||||||||||||
| ``` | ||||||||||||||||||
|
|
||||||||||||||||||
| ## Contributing | ||||||||||||||||||
|
|
||||||||||||||||||
| To contribute new features to the Claude plugin: | ||||||||||||||||||
|
|
||||||||||||||||||
| 1. Create or update a markdown file in `<project dir>/tools/claude-plugins/armeria` | ||||||||||||||||||
| 2. Reference official Armeria documentation URLs if applicable | ||||||||||||||||||
| 3. Submit a pull request for review | ||||||||||||||||||
|
||||||||||||||||||
| 1. Create or update a markdown file in `<project dir>/tools/claude-plugins/armeria` | |
| 2. Reference official Armeria documentation URLs if applicable | |
| 3. Submit a pull request for review | |
| 1. Create or update a plugin component under `<project dir>/tools/claude-plugins/armeria`, for example: | |
| - `skills/<skill-name>/SKILL.md` for a skill, or | |
| - `commands/<command-name>.md` for a command | |
| 2. Reference official Armeria documentation URLs if applicable | |
| 3. Submit a pull request for review |
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@site-new/src/content/community/claude-plugin.mdx` around lines 18 - 20,
Update the step that instructs contributors to add documentation under
tools/claude-plugins/armeria so it points to the discovered locations: instruct
them to create or update files under
tools/claude-plugins/armeria/skills/<skill-name>/SKILL.md or
tools/claude-plugins/armeria/commands/<command-name>.md (not the plugin root),
and note that Claude Code only loads SKILL.md in skills/ and .md files in
commands/ so content placed elsewhere will be ignored.
Uh oh!
There was an error while loading. Please reload this page.