# Gws Keep > Manage Google Keep notes. Source: https://skillsagentes.com/skills/googleworkspace/cli/gws-keep Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 6 tok installed, 443 tok once triggered, 443 tok with every bundled file Bundle: 1 file, 2 KB Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill gws-keep --agent claude-code ``` ## What it does - Da acceso a la CLI `gws keep` para gestionar notas de Google Keep - Permite crear, obtener, listar y eliminar notas mediante `gws keep notes ` - Permite descargar archivos adjuntos de notas con `gws keep media download` - Gestiona permisos de notas mediante el recurso `permissions` ## Use it when - Cuando se necesita crear, leer, listar o borrar notas de Google Keep desde la línea de comandos - Cuando se necesita descargar el archivo multimedia adjunto a una nota - Cuando se necesita inspeccionar los parámetros de un método antes de llamarlo con `gws schema keep..` ## What triggers it - "Lista mis notas de Google Keep" - "Crea una nueva nota en Keep" - "Descarga el adjunto de esta nota de Keep" - "Elimina esta nota de Keep" ## Before you install - Requiere el binario `gws` y haber leído ../gws-shared/SKILL.md para autenticación, flags globales y reglas de seguridad. ## Files - SKILL.md — 2 KB ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # 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 [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.. ``` Use `gws schema` output to build your `--params` and `--json` flags. --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/gws-keep