ワンクリックで
update-docs
Update release documentation (README.md, CHANGELOG.md, docs/readme.html, docs/readme.txt) for a new version
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Update release documentation (README.md, CHANGELOG.md, docs/readme.html, docs/readme.txt) for a new version
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Bump the Objeck release version across all platform files, rebuild on Windows and Linux, and run regression tests
Fully automate an Objeck release — reads version.h, auto-bumps if needed, pre-flight gates, LSP sync, docs update, tag push, GitHub Actions build/sign/publish monitoring, release body, and DigitalOcean playground deploy
Deploy/refresh the Objeck web playground (playground.objeck.org) on its VPS over SSH — git pull, rebuild the sandbox Docker image, restart the service, health-check. Host and SSH access are held out-of-band; this skill contains no secrets.
SOC 職業分類に基づく
| name | update-docs |
| description | Update release documentation (README.md, CHANGELOG.md, docs/readme.html, docs/readme.txt) for a new version |
| allowed-tools | Read Edit Write Bash Grep Glob |
| argument-hint | [version] [summary] e.g. 2026.4.2 "DTLS support, LTO optimization" |
Update the Objeck release documentation for a new version.
This skill updates the four documentation files that track version history:
README.md (GitHub landing page — What's New section)CHANGELOG.md (detailed changelog with categorized entries)docs/readme.html (website changelog)docs/readme.txt (plain text release notes)$ARGUMENTS may contain a version number and optional summarycore/shared/version.h (VERSION_STRING line)Read core/shared/version.h to get the current version string. If $ARGUMENTS provides a version, use that instead.
Ask the user for the list of changes if not provided. The user should provide bullet points of what changed in this release.
Read the ## What's New section in README.md.
**vYEAR.MONTH.RELEASE**
* **Feature name** — description
* **Another feature** — description
* Bug fix or minor item description
Read docs/readme.html.
<p> summary at the top of <main> with a brief summary of the new version<h3><u>vX.Y.Z</u></h3> section with <ul><li> items at the top (before the previous version)<u> tag from the previous version's <h3> (only the latest version gets underlined)<h3><u>vYEAR.MONTH.RELEASE</u></h3>
<ul>
<li><strong>Feature</strong> — description</li>
<li>Bug fix description</li>
</ul>
Read docs/readme.txt.
vYEAR.MONTH.RELEASE (Month Day, Year)
===
Brief one-line summary.
vYEAR.MONTH.RELEASE
- Feature or change description
- Another change
Use the current date for the release date.
Read CHANGELOG.md.
## [vX.Y.Z] - YYYY-MM-DD section at the top (after the header, before the previous version)### New Features, ### Bug Fixes, ### Performance, ### Libraries, ### Infrastructure, etc. — only include subsections that have entries## [vYEAR.MONTH.RELEASE] - YYYY-MM-DD
### New Features
- **Feature name**: Description with technical detail
### Bug Fixes
- Fixed specific issue with context
### Infrastructure
- CI/tooling changes
CHANGELOG.md for the version. They must tell a consistent story — every flagship feature in the changelog should appear in README.md, docs/readme.html, and docs/readme.txt (each at its own altitude). A version is often partially pre-authored (e.g. CHANGELOG + README done, readme.html/readme.txt not, or a draft readme.txt written before later features landed); finish the laggards rather than assuming one file represents all.grep for the previous version's number / "Download v").