Claude Code plugins for design, implementation, and development workflows.
When documenting Task tool invocations in skills or agent prompts, use XML-style blocks:
<invoke name="Task">
<parameter name="subagent_type">ed3d-basic-agents:sonnet-general-purpose</parameter>
<parameter name="description">Brief description of what the subagent does</parameter>
<parameter name="prompt">
The prompt content goes here.
Can be multiple lines.
</parameter>
</invoke>
This format keeps the model on-rails better than fenced code blocks with plain text descriptions.
Do not write Task invocations as prose like "Use the Task tool with subagent_type X and prompt Y". Use the XML block format.
When updating a plugin's version in its .claude-plugin/plugin.json, you must also:
- Update the corresponding version in
.claude-plugin/marketplace.jsonat the repo root - Add a changelog entry to
CHANGELOG.mdat the repo root
Changelog entries go at the top (after the # Changelog heading) and follow the format:
## [plugin-name] [version]
Brief description of the release.
**New:**
- New features or additions
**Changed:**
- Modifications to existing behavior
**Fixed:**
- Bug fixesOnly include sections that apply. Keep entries concise.