ワンクリックで
ワンクリックで
Orchestrates full-program analysis by running block classification, then analyzing all unanalyzed routines and symbols in parallel using subagents.
Analyzes a specific memory address or label to determine its purpose (variable, flag, pointer, hardware register) by examining its cross-references and usage patterns.
Analyzes a disassembly subroutine to determine its function by examining code, cross-references, and memory usage, leveraging target system expertise.
Analyzes memory regions of a disassembled binary and converts them to the correct block types (code, bytes, words, text, tables, etc.) using MOS 6502 and the target system's expertise.
Analyzes a sequence of memory containing Commodore BASIC tokens, formats address/word data types, and constructs side comments representing the plain BASIC commands.
Streamlines the process of adding new tools to the MCP server.
| name | bump-version |
| description | Automates the process of bumping the version and updating the changelog. |
Use this skill when the user requests to bump the project version (e.g., "bump version to v0.8.0" or "prepare release x.y.z").
Ensure the user provided a valid semantic version (e.g., 0.8.0). If they didn't specify one, determine the correct next version based on recent changes (major/minor/patch) or ask the user for clarification.
Update the version field in the following files:
Cargo.toml:
[package].version.regenerator2000-core and regenerator2000-tui versions in the [dependencies] section.crates/regenerator2000-core/Cargo.toml:
[package].version.crates/regenerator2000-tui/Cargo.toml:
[package].version.regenerator2000-core version in the [dependencies] section.Run the following command to get a list of commits since the last tag:
git log $(git describe --tags --abbrev=0)..HEAD --oneline
Review the commit messages to understand the scope of what features, fixes, and other changes are included in this release.
In CHANGELOG.md:
[Unreleased] section.## [x.y.z] - YYYY-MM-DD using the current date.### Features### Fixes### Changes### Refactor / Internal### DocumentationSummarize the updates made and notify the user that Cargo.toml and CHANGELOG.md have been successfully updated for the new version.