@reddb-io/red-skills-internal 4.4.1 → 4.6.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/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Install:
|
|
|
12
12
|
pi install npm:@reddb-io/red-skills-internal
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
Updates follow the same release train as the rest of the
|
|
15
|
+
Updates follow the same release train as the rest of the redskilled distribution. `pi update --all` resolves the latest matching version from the npm registry.
|
|
16
16
|
|
|
17
17
|
## Source
|
|
18
18
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reddb-io/red-skills-internal",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.6.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",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/reddb-io/
|
|
9
|
+
"url": "https://github.com/reddb-io/redskilled.git"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
12
12
|
"pi-package",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
".claude-plugin/**/*",
|
|
28
28
|
".codex-plugin/**/*",
|
|
29
29
|
".gemini-plugin/**/*",
|
|
30
|
+
"runtime.toon",
|
|
30
31
|
"scripts/**/*",
|
|
31
32
|
"package.json",
|
|
32
33
|
"README.md"
|
package/runtime.toon
ADDED
|
@@ -16,13 +16,13 @@ scaffolder first, then the rest of the repo can follow from generated output.
|
|
|
16
16
|
Run the scaffolder from the RedSkills repository root:
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
|
|
19
|
+
red-skills-resource run plugins/internal/skills/maintainer/create-plugin/scripts/create-plugin.sh <plugin-name>
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
Use `--root <repo-root>` when operating on a copied fixture or another checkout:
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
|
|
25
|
+
red-skills-resource run plugins/internal/skills/maintainer/create-plugin/scripts/create-plugin.sh --root /tmp/red-skills-fixture acme-tools
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
The command creates:
|
|
@@ -65,8 +65,7 @@ mkdir -p \
|
|
|
65
65
|
"$PLUGIN_DIR/.claude-plugin" \
|
|
66
66
|
"$PLUGIN_DIR/.codex-plugin" \
|
|
67
67
|
"$PLUGIN_DIR/.gemini-plugin" \
|
|
68
|
-
"$SKILL_DIR"
|
|
69
|
-
"$PLUGIN_DIR/scripts"
|
|
68
|
+
"$SKILL_DIR"
|
|
70
69
|
|
|
71
70
|
cat > "$PLUGIN_DIR/.claude-plugin/plugin.json" <<EOF
|
|
72
71
|
{
|
|
@@ -175,7 +174,7 @@ small until the plugin has a real maintainer workflow.
|
|
|
175
174
|
Run the plugin smoke script from the RedSkills repository root:
|
|
176
175
|
|
|
177
176
|
\`\`\`bash
|
|
178
|
-
|
|
177
|
+
red-skills-content --check "$ROOT"
|
|
179
178
|
\`\`\`
|
|
180
179
|
|
|
181
180
|
Report the printed result.
|
|
@@ -191,16 +190,6 @@ two-section body structure, and marketplace-safe tool grants.
|
|
|
191
190
|
</supporting-info>
|
|
192
191
|
EOF
|
|
193
192
|
|
|
194
|
-
cat > "$PLUGIN_DIR/scripts/structural-smoke.sh" <<'EOF'
|
|
195
|
-
#!/usr/bin/env bash
|
|
196
|
-
set -euo pipefail
|
|
197
|
-
|
|
198
|
-
REPO="$(cd "$(dirname "$0")/../../.." && pwd)"
|
|
199
|
-
cd "$REPO"
|
|
200
|
-
|
|
201
|
-
node scripts/plugin-structural-smoke.mjs "plugins/$(basename "$(cd "$(dirname "$0")/.." && pwd)")"
|
|
202
|
-
EOF
|
|
203
|
-
chmod +x "$PLUGIN_DIR/scripts/structural-smoke.sh"
|
|
204
193
|
|
|
205
194
|
cat > "$PLUGIN_DIR/README.md" <<EOF
|
|
206
195
|
# $PLUGIN
|
|
@@ -223,7 +212,7 @@ to the repository and the marketplace manifests have been published.
|
|
|
223
212
|
\`\`\`bash
|
|
224
213
|
bash scripts/validate-marketplace-manifests.sh
|
|
225
214
|
bash scripts/lint-skill-frontmatter.sh
|
|
226
|
-
|
|
215
|
+
red-skills-content --check "$ROOT"
|
|
227
216
|
\`\`\`
|
|
228
217
|
|
|
229
218
|
## Maintenance
|
|
@@ -313,7 +302,7 @@ cat <<EOF
|
|
|
313
302
|
created plugins/$PLUGIN
|
|
314
303
|
|
|
315
304
|
validate with:
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
305
|
+
red-skills-content --check "$ROOT"
|
|
306
|
+
|
|
307
|
+
red-skills-content --check "$ROOT"
|
|
319
308
|
EOF
|