jpskill.com
📦 その他 コミュニティ

gws-keep

Google Keepのメモを整理・管理し、必要な情報を効率的に見つけたり、新しいアイデアを記録したりするなど、日々の情報管理をサポートするSkill。

📜 元の英語説明(参考)

Manage Google Keep notes.

🇯🇵 日本人クリエイター向け解説

一言でいうと

Google Keepのメモを整理・管理し、必要な情報を効率的に見つけたり、新しいアイデアを記録したりするなど、日々の情報管理をサポートするSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o gws-keep.zip https://jpskill.com/download/19183.zip && unzip -o gws-keep.zip && rm gws-keep.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/19183.zip -OutFile "$d\gws-keep.zip"; Expand-Archive "$d\gws-keep.zip" -DestinationPath $d -Force; ri "$d\gws-keep.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して gws-keep.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → gws-keep フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

[Skill 名] gws-keep

keep (v1)

前提条件: 認証、グローバルフラグ、およびセキュリティルールについては、../gws-shared/SKILL.md をお読みください。ファイルがない場合は、gws generate-skills を実行して作成してください。

gws keep <resource> <method> [flags]

API リソース

media

  • download — 添付ファイルを取得します。REST 経由で添付ファイルのメディアをダウンロードするには、alt=media クエリパラメータが必要です。要求された MIME タイプで添付ファイルのメディアが利用できない場合、400 bad request エラーを返します。

notes

  • create — 新しいノートを作成します。
  • delete — ノートを削除します。呼び出し元は、削除するノートに対して OWNER ロールを持っている必要があります。ノートを削除すると、リソースは直ちに削除され、元に戻すことはできません。共同編集者はノートへのアクセス権を失います。
  • get — ノートを取得します。
  • list — ノートを一覧表示します。すべてのリスト呼び出しは、返されるアイテムの上限として page_size を持つ結果のページを返します。page_size がゼロの場合、サーバーが上限を選択できます。ListNotesResponse には、最大で page_size のエントリが含まれます。さらにリストするものが残っている場合、next_page_token の値が提供されます。(ページトークンは不透明な値です。)結果の次のページを取得するには、結果の next_page_token を次のリクエストの page_token にコピーします。
  • permissions — 'permissions' リソースに対する操作

コマンドの発見

API メソッドを呼び出す前に、それを検査してください。

# リソースとメソッドを閲覧する
gws keep --help

# メソッドの必須パラメータ、型、デフォルト値を検査する
gws schema keep.<resource>.<method>

gws schema の出力を使用して、--params および --json フラグを作成してください。

📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

keep (v1)

PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it.

gws keep <resource> <method> [flags]

API Resources

media

  • download — Gets an attachment. To download attachment media via REST requires the alt=media query parameter. Returns a 400 bad request error if attachment media is not available in the requested MIME type.

notes

  • create — Creates a new note.
  • delete — Deletes a note. Caller must have the OWNER role on the note to delete. Deleting a note removes the resource immediately and cannot be undone. Any collaborators will lose access to the note.
  • get — Gets a note.
  • list — Lists notes. Every list call returns a page of results with page_size as the upper bound of returned items. A page_size of zero allows the server to choose the upper bound. The ListNotesResponse contains at most page_size entries. If there are more things left to list, it provides a next_page_token value. (Page tokens are opaque values.) To get the next page of results, copy the result's next_page_token into the next request's page_token.
  • permissions — Operations on the 'permissions' resource

Discovering Commands

Before calling any API method, inspect it:

# Browse resources and methods
gws keep --help

# Inspect a method's required params, types, and defaults
gws schema keep.<resource>.<method>

Use gws schema output to build your --params and --json flags.