bigpowers 1.2.1 → 1.2.2
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 +7 -1
- package/CHANGELOG.md +7 -0
- package/package.json +2 -1
- package/scripts/build-skill-index.sh +1 -1
package/.releaserc.json
CHANGED
|
@@ -8,7 +8,13 @@
|
|
|
8
8
|
[
|
|
9
9
|
"@semantic-release/git",
|
|
10
10
|
{
|
|
11
|
-
"assets": [
|
|
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,10 @@
|
|
|
1
|
+
## [1.2.2](https://github.com/danielvm-git/bigpowers/compare/v1.2.1...v1.2.2) (2026-05-31)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **ci:** deterministic sync verify and release artifact hooks ([9370e35](https://github.com/danielvm-git/bigpowers/commit/9370e351a5b1f290de4297919d4d547bd9f64a27))
|
|
7
|
+
|
|
1
8
|
## [1.2.1](https://github.com/danielvm-git/bigpowers/compare/v1.2.0...v1.2.1) (2026-05-31)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bigpowers",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
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,7 +13,7 @@ mkdir -p "$(dirname "$OUT")"
|
|
|
13
13
|
echo ""
|
|
14
14
|
echo "| name | model | description |"
|
|
15
15
|
echo "|------|-------|-------------|"
|
|
16
|
-
for skill_dir in "$REPO_ROOT"
|
|
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:]]*//')
|