Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
When adding a new plugin, follow these steps:
Sign in to like and favorite skills
When adding a new plugin, follow these steps:
<plugin-name>/ ├── .claude-plugin/ │ └── plugin.json # Plugin metadata ├── README.md # Plugin documentation └── skills/ └── <skill-name>/ └── SKILL.md # Skill definition and commands
{ "name": "<plugin-name>", "description": "Plugin description", "version": "1.0.0", "author": { "name": "Frank Wang" }, "keywords": ["keyword1", "keyword2"], "license": "MIT" }
--- name: <skill-name> description: Skill description for Claude to know when to use this skill. --- # Skill Title ## Commands ...
After adding a new plugin, you MUST update
:.claude-plugin/marketplace.json
plugins arrayversion number{ "name": "<plugin-name>", "source": "./<plugin-name>", "description": "Plugin description", "version": "1.0.0", "keywords": ["keyword1", "keyword2"] }
Ensure the commit includes:
marketplace.json