Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 11 additions & 20 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,29 @@
{
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
"name": "trogonstack",
"description": "Plugins by TrogonStack for Claude Code",
"owner": {
"name": "TrogonStack",
"url": "https://github.com/TrogonStack"
},
"metadata": {
"description": "TrogonStack agent skills",
"version": "0.0.1"
},
"plugins": [
{
"name": "diataxis",
"name": "trogonstack-diataxis",
"description": "Documentation skills following the Diataxis framework for organizing and generating docs into tutorials, how-to guides, reference, and explanation sections",
"source": "./",
"skills": [
"./skills/diataxis-gen-readme",
"./skills/diataxis-organize-docs"
]
"source": "./plugins/trogonstack-diataxis",
"category": "development"
},
{
"name": "gh",
"name": "trogonstack-gh",
"description": "GitHub workflow skills for enriching PR descriptions, automating code review context, and streamlining collaboration through the gh CLI",
"source": "./",
"skills": [
"./skills/gh-enrich-pr-description"
]
"source": "./plugins/trogonstack-gh",
"category": "development"
},
{
"name": "nats",
"name": "trogonstack-nats",
"description": "NATS messaging skills for designing subject hierarchies with naming conventions and wildcard patterns",
"source": "./",
"skills": [
"./skills/nats-design-subject"
]
"source": "./plugins/trogonstack-nats",
"category": "development"
}
]
}
32 changes: 20 additions & 12 deletions .github/release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"release-type": "simple",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": false,
"include-component-in-tag": true,
"extra-files": [
{
"type": "json",
"path": ".claude-plugin/plugin.json",
"jsonpath": "$.version"
}
],
Comment thread
yordis marked this conversation as resolved.
"changelog-sections": [
{
"type": "feat",
Expand All @@ -13,25 +24,22 @@
}
],
"packages": {
".": {
"release-type": "simple",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": false,
"include-component-in-tag": false,
"extra-files": [
{
"type": "json",
"path": ".claude-plugin/plugin.json",
"jsonpath": "$.version"
}
]
"plugins/trogonstack-diataxis": {
"component": "trogonstack-diataxis"
},
"plugins/trogonstack-gh": {
"component": "trogonstack-gh"
},
"plugins/trogonstack-nats": {
"component": "trogonstack-nats"
}
},
"plugins": [
{
"type": "sentence-case"
}
],
"tag-separator": "@",
"include-v-in-tag": true,
"draft": false,
"draft-pull-request": false,
Expand Down
4 changes: 3 additions & 1 deletion .github/release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
".": "0.2.1"
"plugins/trogonstack-diataxis": "0.0.1",
"plugins/trogonstack-gh": "0.0.1",
"plugins/trogonstack-nats": "0.0.1"
}
23 changes: 0 additions & 23 deletions CHANGELOG.md

This file was deleted.

9 changes: 9 additions & 0 deletions plugins/trogonstack-diataxis/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "trogonstack-diataxis",
"description": "Documentation skills following the Diataxis framework for organizing and generating docs into tutorials, how-to guides, reference, and explanation sections",
"version": "0.0.1",
"author": {
"name": "TrogonStack",
"url": "https://github.com/TrogonStack"
}
}
9 changes: 9 additions & 0 deletions plugins/trogonstack-gh/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "trogonstack-gh",
"description": "GitHub workflow skills for enriching PR descriptions, automating code review context, and streamlining collaboration through the gh CLI",
"version": "0.0.1",
"author": {
"name": "TrogonStack",
"url": "https://github.com/TrogonStack"
}
}
9 changes: 9 additions & 0 deletions plugins/trogonstack-nats/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "trogonstack-nats",
"description": "NATS messaging skills for designing subject hierarchies with naming conventions and wildcard patterns",
"version": "0.0.1",
"author": {
"name": "TrogonStack",
"url": "https://github.com/TrogonStack"
}
}