You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add Claude Code plugin support, wiki sync CI, marketplace docs
- Add update-marketplace job to release.yml (auto-updates CLI version in marketplace)
- Add wiki-sync.yml workflow (syncs docs/wiki/ to GitHub Wiki on push)
- Add Claude Code Integration section to Getting-Started.md
- Add Claude Code Plugin section to AGENTS.md with skill update checklist
Copy file name to clipboardExpand all lines: AGENTS.md
+45Lines changed: 45 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -403,6 +403,51 @@ var sb = new StringBuilder(estimatedCapacity);
403
403
-[ ]`Span<T>` used for string/array slicing instead of `Substring()`/`Array.Copy()`
404
404
-[ ] SKPaint/SKFont objects are reused or pooled, not created per-element
405
405
406
+
## Claude Code Plugin (FlexRender-Marketplace)
407
+
408
+
The FlexRender plugin for Claude Code lives in a separate repository: [`RoboNET/FlexRender-Marketplace`](https://github.com/RoboNET/FlexRender-Marketplace).
409
+
410
+
**When to update the plugin skills:**
411
+
412
+
Any change to the following areas requires updating the corresponding skill in the marketplace repo:
413
+
414
+
| Changed Area | Skill to Update | Skill Path |
415
+
|-------------|-----------------|------------|
416
+
| YAML template syntax, element types, properties, expressions |`template`|`flexrender/skills/template/SKILL.md`|
417
+
| C# API, FlexRenderBuilder, AST classes, NuGet packages, DI |`template-csharp`|`flexrender/skills/template-csharp/SKILL.md`|
418
+
| Content parsers (Markdown, HTML, NDC), IContentParser API |`content-formats`|`flexrender/skills/content-formats/SKILL.md`|
**CI automation:** The `release.yml` workflow automatically creates a PR in the marketplace repo to update `cli-version.json` when a new FlexRender version is released.
0 commit comments