Source profileQuality 67/100Review permissions

dyoshikawa/rulesync/.rulesync/skills/release-dry-run/SKILL.md

release-dry-run

Dry run for release: summarize changes since last release and suggest version bump.

Source repository stars
1,263
Declared platforms
0
Static risk flags
1
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

1. Get the latest release tag. - Run git fetch --tags to ensure all tags are available. - Run git describe --tags --abbrev=0 to get the latest tag. - Assign the result to $latesttag.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/dyoshikawa/rulesync --skill ".rulesync/skills/release-dry-run"
    Safe inspection promptEditorial

    Inspect the Agent Skill "release-dry-run" from https://github.com/dyoshikawa/rulesync/blob/310b711fbe8cffc14debb276ade8a384c2b89083/.rulesync/skills/release-dry-run/SKILL.md at commit 310b711fbe8cffc14debb276ade8a384c2b89083. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Steps

      1. Get the latest release tag. - Run git fetch --tags to ensure all tags are available. - Run git describe --tags --abbrev=0 to get the latest tag. - Assign the result to $latesttag.

      Get the latest release tag.Run git fetch --tags to ensure all tags are available.Run git describe --tags --abbrev=0 to get the latest tag.

    Permission review

    Static risk signals and limitations

    Runs scripts

    medium · line 1

    The documentation asks the agent to run terminal commands or scripts.

    This is a dry run command for release. It will summarize the changes since the last release and suggest the appropriate version bump based on semantic versioning.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score67/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars1,263SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guidecatalog recordEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    dyoshikawa/rulesync
    Skill path
    .rulesync/skills/release-dry-run/SKILL.md
    Commit
    310b711fbe8cffc14debb276ade8a384c2b89083
    License
    MIT
    Collected
    2026-07-28
    Default branch
    main
    View the original SKILL.md

    This is a dry run command for release. It will summarize the changes since the last release and suggest the appropriate version bump based on semantic versioning.

    Steps

    1. Get the latest release tag.

      • Run git fetch --tags to ensure all tags are available.
      • Run git describe --tags --abbrev=0 to get the latest tag.
      • Assign the result to $latest_tag.
    2. Compare code changes between the latest tag and the current HEAD.

      • Run git log ${latest_tag}..HEAD --oneline to get the commit list.
      • Run git diff ${latest_tag}..HEAD --stat to get the file change statistics.
    3. Analyze the changes and create a summary in the following format:

      ## Changes Summary
      
      ### Commits since ${latest_tag}
      - List of commits with their messages
      
      ### Changed Files
      - Summary of file changes (added, modified, deleted)
      
      ### Change Categories
      - **Breaking Changes**: List any breaking changes (API changes, removed features, etc.)
      - **New Features**: List new features added
      - **Bug Fixes**: List bug fixes
      - **Other Changes**: List other changes (refactoring, documentation, tests, etc.)
      
    4. Based on the analysis, suggest the appropriate version bump following semantic versioning rules:

      • MAJOR (X.0.0): Breaking changes that are not backward compatible
        • Removed or renamed public APIs
        • Changed behavior of existing features
        • Dropped support for older Node.js versions
      • MINOR (x.Y.0): New features that are backward compatible
        • New CLI commands or options
        • New configuration options
        • New tool support
      • PATCH (x.y.Z): Bug fixes and minor improvements
        • Bug fixes
        • Documentation updates
        • Internal refactoring without API changes
        • Dependency updates (unless they cause breaking changes)

      Important: Whenever the changes include any feature removal or a change in the behavior of an existing feature, do not hesitate to choose a MAJOR version bump. Prioritize protecting users from unexpected breakage over keeping the version number low.

    5. Output the final recommendation in the following format:

      ## Version Bump Recommendation
      
      Current version: ${latest_tag}
      Recommended bump: MAJOR / MINOR / PATCH
      Suggested new version: vX.Y.Z
      
      ### Reasoning
      - Explain why this version bump is recommended based on the changes.
      

    Note: This is a dry run only. No files will be modified and no commits will be made.

    Alternatives

    Compare before choosing