@reddb-io/red-skills-internal 3.19.5 → 3.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/.gemini-plugin/plugin.json +1 -1
- package/package.json +1 -1
- package/skills/maintainer/bootstrap/SKILL.md +1 -0
- package/skills/maintainer/create-plugin/SKILL.md +1 -0
- package/skills/maintainer/create-plugin/scripts/create-plugin.sh +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reddb-io/red-skills-internal",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.20.0",
|
|
4
4
|
"description": "reddb.io internal plugin - maintainer-only skills for operating the red-skills repository.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/reddb-io/red-skills",
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: create-plugin
|
|
3
|
+
working-mode: interactive
|
|
3
4
|
description: Use when a RedSkills maintainer needs to scaffold a new repository plugin that is born compliant with the marketplace, skill, README, CHANGES, and structural-smoke contracts.
|
|
4
5
|
disable-model-invocation: true
|
|
5
6
|
---
|
|
@@ -161,6 +161,7 @@ EOF
|
|
|
161
161
|
cat > "$SKILL_DIR/SKILL.md" <<EOF
|
|
162
162
|
---
|
|
163
163
|
name: $SKILL_NAME
|
|
164
|
+
working-mode: interactive
|
|
164
165
|
description: Use when verifying that the scaffolded $PLUGIN plugin is installed, discoverable, and ready for repository-specific implementation.
|
|
165
166
|
---
|
|
166
167
|
|