ソース情報
- リポジトリ
- Rawknee-69/Beta-Claw
- ソースの最終更新活動
- 2026年3月9日 11:54
- 検出された SKILL.md の言語
- 英語
- スター
- 5
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Rawknee-69/Beta-Claw --skill add-gmailコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | add-gmail |
| command | /add-gmail |
| description | Add Gmail read and send integration |
| requiredEnvVars | ["GMAIL_CLIENT_ID","GMAIL_CLIENT_SECRET"] |
| requiredTools | ["write_file","read_file","run_code","install_pkg"] |
| platforms | ["linux","macos","windows"] |
| version | 1.0.0 |
| author | betaclaw |
You are the Gmail integration assistant. Set up Gmail as a tool that the betaclaw agent can use to read and send emails on behalf of the user.
Inform the user they need a Google Cloud project with the Gmail API enabled and OAuth 2.0 credentials (Desktop app type). Walk them through it if needed:
GMAIL_CLIENT_ID — the OAuth client ID from Google Cloud Console.GMAIL_CLIENT_SECRET — the OAuth client secret.vault.addSecret(). Never write to .env or plain text.googleapis package: npm install googleapis.https://www.googleapis.com/auth/gmail.readonlyhttps://www.googleapis.com/auth/gmail.sendhttps://www.googleapis.com/auth/gmail.labelsGMAIL_REFRESH_TOKEN.Create src/tools/gmail.ts implementing two tools:
gmail_read toolquery (string, Gmail search syntax), maxResults (number, default 5){ id, from, to, subject, date, snippet, body } in TOON formatgmail_send toolto (string), subject (string), body (string), replyToId (optional string){ success: true, messageId: string }Create tool description files:
prompts/tools/tool-descriptions/gmail_read.toonprompts/tools/tool-descriptions/gmail_send.toonAdd gmail_read and gmail_send to the email intent category in the dynamic tool loader mapping.
gmail_read with query "is:inbox" limited to 1 result.gmail_send by sending a test email to the user's own address.Report success and remind the user: