← Back to list

release
by rlcurrall
tools i give to agents
⭐ 2🍴 0📅 Jan 20, 2026
SKILL.md
name: release description: Create a new software release by bumping version numbers, committing changes, creating git tags, and pushing to remote. Use when creating a release, bumping versions, or publishing a new version. allowed-tools: Bash(bun:*)
Release
Create a new release for the aide CLI.
What it does
The release script (src/scripts/release.ts):
- Bumps version in
package.json,.claude-plugin/plugin.json, and.claude-plugin/marketplace.json - Commits the version changes
- Creates a git tag (e.g.,
v0.0.3) - Pushes to remote (both commit and tag)
Usage
| Command | Description |
|---|---|
bun release | Patch bump (0.0.1 -> 0.0.2) |
bun release --minor | Minor bump (0.0.1 -> 0.1.0) |
bun release --major | Major bump (0.0.1 -> 1.0.0) |
Instructions
- Ask the user which version bump type they want (patch, minor, or major) if not specified
- Run the appropriate command:
- Patch (default):
bun release - Minor:
bun release --minor - Major:
bun release --major
- Patch (default):
- Report the new version and the GitHub release URL
Example output
🚀 Releasing new patch version: 0.0.1 → 0.0.2
✓ Updated package.json to 0.0.2
✓ Updated .claude-plugin/plugin.json to 0.0.2
✓ Updated .claude-plugin/marketplace.json to 0.0.2
📝 Committing changes...
🏷️ Creating tag v0.0.2...
📤 Pushing to remote...
✅ Release v0.0.2 complete!
🔗 GitHub Actions will build and publish the release at:
https://github.com/rlcurrall/aide/releases/tag/v0.0.2
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon