ソース情報
- リポジトリ
- amxv/icloud-cli
- ソースの最終更新活動
- 2026年8月5日 19:52
- 検出された SKILL.md の言語
- 英語
- スター
- 1
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/amxv/icloud-cli --skill releaseコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | release |
| description | Prepare a Go CLI changelog and push a tag for the GitHub Actions release workflow. |
| allowed-tools | Bash, Read, Write, Edit |
Use this skill when cutting a release of icloud. The repository controls the
release: edit the changelog, validate the current command and documentation,
commit the release notes, and push a v* tag. GitHub Actions builds the native
binaries, creates the GitHub Release, and publishes npm.
main and synced with origin/main.package.json is publishable.NPM_TOKEN GitHub secret is configured..github/workflows/release.yml.icloud in the local build, npm package, and
generated help.Before tagging, manually update src/content/docs/changelog.md:
Maintenance release. No direct code behavior changes beyond release preparation.Do not use a script or release target to generate the changelog. The release notes are part of the normal project work and should be reviewed with the other changes.
Run the checks serially from the repository root:
make check
make build-all
bun run docs:check
bun run docs:build
Commit and push the changelog, then push the tag:
git add src/content/docs/changelog.md
git commit -m "docs: update changelog for v${VERSION}"
git push origin HEAD
make release-tag VERSION=${VERSION}
make release-tag only creates and pushes v${VERSION}. Use the equivalent
Git commands when you need different tag or remote control.
gh run list --limit 5 --json databaseId,displayTitle,headBranch,headSha,status,conclusion,url,workflowName
gh run watch <run-id>
gh release view "v${VERSION}" --json tagName,name,url,assets
npm view "$(node -p "require('./package.json').name")" version
Report the tag, workflow URL, release URL, asset names, and published npm
version. Repository tooling does not read local keychains, validate release
secrets, or orchestrate the workflow from a local ship command.