Agent skill
librel
librel - Release management tools. VersionBumper handles semver version bumping for packages. ChangeDetector identifies changed packages between git commits. StackQuery retrieves CloudFormation stack outputs for deployments. Use for release automation, CI/CD pipelines, and deployment orchestration.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/librel
SKILL.md
librel Skill
When to Use
- Bumping package versions (major/minor/patch)
- Detecting which packages changed between commits
- Retrieving CloudFormation outputs for deployment
- Automating release workflows
Key Concepts
VersionBumper: Updates package.json version following semver rules.
ChangeDetector: Compares git refs to identify modified packages.
StackQuery: Retrieves AWS CloudFormation stack outputs for deployment config.
Usage Patterns
Pattern 1: Bump version
import { VersionBumper } from "@copilot-ld/librel";
const bumper = new VersionBumper("./packages/libagent");
await bumper.bump("minor"); // 1.0.0 -> 1.1.0
Pattern 2: Detect changes
import { ChangeDetector } from "@copilot-ld/librel";
const detector = new ChangeDetector(".");
const changed = await detector.getChangedPackages("main", "HEAD");
// ["libagent", "libmemory"]
Integration
Used by CI/CD scripts for release automation and change detection.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?