ソース情報
- リポジトリ
- ravi-hq/cli
- ソースの最終更新活動
- 2026年4月7日 00:53
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/ravi-hq/cli --skill releaseコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Use when working with the Ravi CLI — identity, inbox, passwords, secrets, email, SMS, calls, and feedback commands
Use when testing CLI changes against the local backend before committing. Covers building with local endpoint, authenticating, and driving every command group with verification.
Use when generating a Go test file for a module following Ravi CLI test conventions
SKILL.md を表示中
| name | release |
| description | Use when releasing a new Ravi CLI version — version bump, tagging, and verification |
Guide the release process for a new CLI version. This is a checklist — the user drives each step.
The user should specify the version to release (e.g., "release 0.4.0").
git status # Must be clean, on main branch
git log --oneline -5 # Review recent commits
make test # All tests must pass
make lint # No lint errors
make build API_URL=https://ravi.id
./bin/ravi version # Confirm version output
git log $(git describe --tags --abbrev=0)..HEAD --oneline --no-decorate
Review for any breaking changes that need documentation.
git tag v<VERSION> # e.g., git tag v0.4.0
git push origin v<VERSION> # Triggers GitHub Actions release workflow
gh run list --limit 1 # Find the triggered run
gh run watch # Watch it complete
The workflow automatically:
ravi-hq/homebrew-tapgh release view v<VERSION> # Check release was created
Confirm:
gh api repos/ravi-hq/homebrew-tap/commits --jq '.[0].commit.message'
Should show: ravi <VERSION>
If something goes wrong:
# Delete the tag locally and remotely
git tag -d v<VERSION>
git push origin :refs/tags/v<VERSION>
# Delete the GitHub release (if created)
gh release delete v<VERSION> --yes
| OS | Arch | Binary Name |
|---|---|---|
| macOS | arm64 | ravi-darwin-arm64 |
| macOS | amd64 | ravi-darwin-amd64 |
| Linux | arm64 | ravi-linux-arm64 |
| Linux | amd64 | ravi-linux-amd64 |
Note: Windows (amd64) is built by the Makefile but NOT included in the release workflow.