一键导入
release
Bump version in package.json and auto-generate CHANGELOG.md using standard-version for vscode-sidebar-terminal. Triggered by /release or /version commands.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Bump version in package.json and auto-generate CHANGELOG.md using standard-version for vscode-sidebar-terminal. Triggered by /release or /version commands.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run code quality checks (ruff, mypy, pytest) and optionally simplify code. This skill should be used when the user wants to check code quality, run linters, run tests, or simplify recently modified code. Triggered by /lint, /check, or /code-quality commands.
Perform structured code reviews focusing on correctness, readability, security, and maintainability. Use this skill when reviewing pull requests, evaluating code changes, or establishing review standards for a team.
Simplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise. This skill should be used when code-quality checks pass but the code would benefit from structural cleanup — deduplication, branching simplification, naming improvements, or dead-code removal. Invoked as a subagent from /code-quality or directly via the Task tool.
Guide for creating distinctive, production-grade frontend interfaces. Covers visual design systems, typography, color, motion, spatial composition, and web interface standards. Use when designing UI, establishing design systems, or reviewing visual quality of frontend code.
Runs synapse-docs, /simplify, sync-plugin-skills, and github-pages-sync in parallel for synapse-a2a development workflows. Use when you need doc updates, code simplification, plugin skill sync, and site-docs sync at the same time.
Synapse A2A agent communication — sending messages, spawning agents, delegating tasks, sharing memory, and coordinating file edits. Use this skill when: running synapse send/reply/broadcast/interrupt, spawning agents with synapse spawn or synapse team start, managing the task board with synapse tasks, sharing knowledge with synapse memory, locking files with synapse file-safety, checking agent status with synapse list/status, or orchestrating any multi-agent workflow.
| name | release |
| description | Bump version in package.json and auto-generate CHANGELOG.md using standard-version for vscode-sidebar-terminal. Triggered by /release or /version commands. |
Bump version and auto-generate CHANGELOG.md for the VS Code extension using standard-version.
/release <version-type>
patch - Increment patch version (e.g., 0.3.1 → 0.3.2)minor - Increment minor version (e.g., 0.3.1 → 0.4.0)major - Increment major version (e.g., 0.3.1 → 1.0.0)node -p "require('./package.json').version"
Show commits since the last release tag to verify there are changes to release:
git log v$(node -p "require('./package.json').version")..HEAD --oneline
If there are no commits, warn the user and stop.
Use standard-version to bump version in package.json and package-lock.json, and auto-generate CHANGELOG.md from conventional commits:
npm run release:patch # for patch
npm run release:minor # for minor
npm run release:major # for major
This runs npx standard-version --release-as <type> which:
package.json and package-lock.json.versionrc.cjs)Display:
git push, then create tag after CI passes".versionrc.cjs config maps conventional commits to changelog sections:
feat → Addedfix → Fixedperf, refactor, docs → Changedrevert → Revertedstyle, test, chore, ci → hiddenpackage.json ("version" field)package-lock.json ("version" field)CHANGELOG.md.versionrc.cjs/release patch # 0.3.1 → 0.3.2
/release minor # 0.3.1 → 0.4.0
/release major # 0.3.1 → 1.0.0