bigpowers 1.2.1 → 1.2.3

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/.releaserc.json CHANGED
@@ -8,7 +8,13 @@
8
8
  [
9
9
  "@semantic-release/git",
10
10
  {
11
- "assets": ["CHANGELOG.md", "package.json", "skills-lock.json"],
11
+ "assets": [
12
+ "CHANGELOG.md",
13
+ "package.json",
14
+ "skills-lock.json",
15
+ ".gemini/extensions/bigpowers/gemini-extension.json",
16
+ "specs/SKILL-SEARCH-INDEX.md"
17
+ ],
12
18
  "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
13
19
  }
14
20
  ],
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.2.3](https://github.com/danielvm-git/bigpowers/compare/v1.2.2...v1.2.3) (2026-05-31)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **ci:** portable SKILL-SEARCH-INDEX generation for Linux runners ([da6db2c](https://github.com/danielvm-git/bigpowers/commit/da6db2c500a8b5562f458fbbc9a4d5b071843c0d))
7
+
8
+ ## [1.2.2](https://github.com/danielvm-git/bigpowers/compare/v1.2.1...v1.2.2) (2026-05-31)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **ci:** deterministic sync verify and release artifact hooks ([9370e35](https://github.com/danielvm-git/bigpowers/commit/9370e351a5b1f290de4297919d4d547bd9f64a27))
14
+
1
15
  ## [1.2.1](https://github.com/danielvm-git/bigpowers/compare/v1.2.0...v1.2.1) (2026-05-31)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "bigpowers",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "description": "59 agent skills for spec-driven, test-first software development by solo developers",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "compliance": "bash scripts/audit-compliance.sh specs/audit/features",
8
8
  "sync": "bash scripts/sync-skills.sh",
9
+ "version": "bash scripts/sync-skills.sh && git add .gemini/extensions/bigpowers/gemini-extension.json specs/SKILL-SEARCH-INDEX.md",
9
10
  "install": "bash scripts/install.sh",
10
11
  "postinstall": "bash scripts/sync-skills.sh && bash scripts/install.sh",
11
12
  "release": "semantic-release"
@@ -13,13 +13,13 @@ mkdir -p "$(dirname "$OUT")"
13
13
  echo ""
14
14
  echo "| name | model | description |"
15
15
  echo "|------|-------|-------------|"
16
- for skill_dir in "$REPO_ROOT"/*/; do
16
+ for skill_dir in $(find "$REPO_ROOT" -maxdepth 1 -mindepth 1 -type d | sort); do
17
17
  skill_md="$skill_dir/SKILL.md"
18
18
  [[ -f "$skill_md" ]] || continue
19
19
  name=$(awk '/^---/{f++} f==1 && /^name:/{print; exit}' "$skill_md" | sed 's/^name:[[:space:]]*//')
20
20
  model=$(awk '/^---/{f++} f==1 && /^model:/{print; exit}' "$skill_md" | sed 's/^model:[[:space:]]*//')
21
- desc=$(awk '/^---/{f++} f==1 && /^description:/{p=1} p && !/^---/{print}' "$skill_md" \
22
- | sed 's/^description:[[:space:]]*//' | tr -d '\n' | sed 's/|/\\|/g' | cut -c1-200)
21
+ desc=$(awk '/^---/{f++} f==1 && /^description:/{sub(/^description:[[:space:]]*/,""); print; exit}' "$skill_md" \
22
+ | tr -d '\n' | sed 's/|/\\|/g' | LC_ALL=C head -c 200)
23
23
  [[ -z "$name" ]] && continue
24
24
  echo "| $name | ${model:-sonnet} | $desc |"
25
25
  done