
Gws Keep
Create, list, update, and delete Google Keep notes through gws so your agent can capture research snippets and todos without leaving the terminal.
Install
npx skills add https://github.com/googleworkspace/cli --skill gws-keepWhat is this skill?
- Exposes Keep v1 resources: notes (create, delete, get, list, permissions) and media download.
- Uses standard gws keep <resource> <method> pattern with documented pagination via next_page_token.
- Lists notes with server-chosen page_size bounds for agent-friendly batch reads.
- Notes delete is immediate and irreversible—skill documents OWNER requirement.
- Requires gws-shared for auth, global flags, and security rules (metadata v0.22.5).
Adoption & trust: 20.8k installs on skills.sh; 3/3 security scanners passed (skills.sh audits).
Recommended Skills
Grill Memattpocock/skills
Grill With Docsmattpocock/skills
Cavemanjuliusbrussee/blueprint
Lark Tasklarksuite/cli
Lark Workflow Standup Reportlarksuite/cli
To Prdmattpocock/skills
Journey fit
Primary fit
Idea/research is the canonical shelf because Keep is where solo builders stash discovery notes, interview bullets, and competitor scraps before specs harden. Research fits list/get/create flows on notes plus attachment download when evidence lives in Keep media.
Common Questions / FAQ
Is Gws Keep safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Gws Keep
# keep (v1) > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. ```bash 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: ```bash # 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.