release-manager — business-knowledge release-manager, morphir, community, business-knowledge, ide skills, functional-programming, morphir-modeling, multi-language

v1.0.0

About this Skill

Ideal for AI Agents like Cursor, Windsurf, or Claude Code needing advanced release management capabilities for Morphir releases. Assists with Morphir release management, including pre-release verification, changelog generation, and release coordination. Use when preparing releases, checking release readiness, or managing versio

# Core Topics

finos finos
[184]
[64]
Updated: 3/9/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
7/11
Quality Score
38
Canonical Locale
en
Detected Body Locale
en

Ideal for AI Agents like Cursor, Windsurf, or Claude Code needing advanced release management capabilities for Morphir releases. Assists with Morphir release management, including pre-release verification, changelog generation, and release coordination. Use when preparing releases, checking release readiness, or managing versio

Core Value

Empowers agents to manage release workflows efficiently, including pre-release verification, changelog management, and version coordination using standardized release protocols and changelog generation.

Ideal Agent Persona

Ideal for AI Agents like Cursor, Windsurf, or Claude Code needing advanced release management capabilities for Morphir releases.

Capabilities Granted for release-manager

Automating pre-release checks for Morphir releases
Generating and reviewing changelogs for version updates
Coordinating version bumps and release workflows

! Prerequisites & Limits

  • Requires access to Morphir release data
  • Limited to Morphir releases only

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is release-manager?

Ideal for AI Agents like Cursor, Windsurf, or Claude Code needing advanced release management capabilities for Morphir releases. Assists with Morphir release management, including pre-release verification, changelog generation, and release coordination. Use when preparing releases, checking release readiness, or managing versio

How do I install release-manager?

Run the command: npx killer-skills add finos/morphir/release-manager. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for release-manager?

Key use cases include: Automating pre-release checks for Morphir releases, Generating and reviewing changelogs for version updates, Coordinating version bumps and release workflows.

Which IDEs are compatible with release-manager?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for release-manager?

Requires access to Morphir release data. Limited to Morphir releases only.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add finos/morphir/release-manager. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use release-manager immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

release-manager

Install release-manager, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Release Manager Skill

You are a release management assistant specialized in Morphir releases. You help ensure releases are properly verified, documented, and coordinated.

Capabilities

  1. Pre-Release Verification - Run all checks before releasing
  2. Changelog Management - Generate and review changelogs
  3. Version Management - Coordinate version bumps
  4. Release Coordination - Manage the release workflow

Pre-Release Verification Checklist

Before any release, run the following verification steps:

Automated Checks

bash
1# 1. Run all formatting checks 2mise run fmt-check 3 4# 2. Run all linters 5mise run lint 6 7# 3. Run all tests 8mise run test 9 10# 4. Validate schemas against metaschema 11mise run schema:validate 12 13# 5. Validate documentation examples 14mise run examples:validate 15 16# 6. Validate fixtures 17mise run fixtures:validate 18 19# 7. Verify schema sync (YAML/JSON) 20mise run docs:schema:verify 21 22# 8. Full check pipeline (runs all of the above) 23mise run check

Manual Verification

  • CHANGELOG.md is updated with all notable changes
  • Version numbers are consistent across all files
  • Breaking changes are documented with migration guides
  • All CI pipelines are green
  • Documentation site builds successfully

Release Workflow

1. Prepare Release

bash
1# Ensure all checks pass 2mise run check 3 4# Generate changelog (if using git-cliff) 5git cliff --unreleased --tag vX.Y.Z > CHANGELOG-next.md 6 7# Review and merge changelog

2. Create Release

bash
1# Create release branch (if applicable) 2git checkout -b release/vX.Y.Z 3 4# Update version numbers 5# - Cargo.toml 6# - package.json (if applicable) 7# - Any other version files 8 9# Commit version bump 10git commit -am "chore: bump version to X.Y.Z" 11 12# Create tag 13git tag -a vX.Y.Z -m "Release vX.Y.Z" 14 15# Push 16git push origin release/vX.Y.Z --tags

3. Post-Release

  • Verify GitHub release is created
  • Verify documentation site is updated
  • Verify npm/cargo packages are published (if applicable)
  • Announce release in appropriate channels

CI Integration

The following checks should be part of CI and must pass before release:

CheckTaskRequired
Formattingmise run fmt-check
Lintingmise run lint
Testsmise run test
Schema validationmise run schema:validate
Example validationmise run examples:validate
Fixture validationmise run fixtures:validate
Schema syncmise run docs:schema:verify

Task Reference

TaskDescription
mise run checkRun all checks (formatting, linting, validation)
mise run fmtFormat all code
mise run fmt:rustFormat Rust code only
mise run fmt:schemaFormat JSON Schema files only
mise run lintRun all linters
mise run lint:rustRun Clippy only
mise run lint:schemaLint JSON Schema files only
mise run testRun all tests
mise run schema:validateValidate schemas against metaschema
mise run examples:validateValidate doc examples against schemas
mise run fixtures:validateValidate fixture files against schemas
mise run docs:schema:verifyVerify YAML/JSON schema sync

Troubleshooting

Schema Validation Failures

If schema:validate fails:

  1. Check the specific error message
  2. Validate the schema file syntax
  3. Ensure the schema follows JSON Schema draft-07/2019-09/2020-12 as appropriate

Example Validation Failures

If examples:validate fails:

  1. Check which files failed with mise run examples:validate --verbose
  2. Ensure formatVersion field is present in example files
  3. Verify examples match the schema for their version

Fixture Validation Failures

If fixtures:validate fails:

  1. Fixtures may need to be refetched: mise run fixtures:fetch
  2. Check if fixtures are valid Morphir IR format
  3. Ensure fixtures are in the expected locations:
    • .morphir/testing/fixtures/
    • tests/bdd/testdata/morphir-ir/

Related Skills

Looking for an alternative to release-manager or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer