Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/project-nomos/nomos --skill gws-drive명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | gws-drive |
| version | 1.0.0 |
| description | Google Drive: Manage files, folders, and shared drives. |
| metadata | {"openclaw":{"category":"productivity","requires":{"bins":"[Truncated]"},"cliHelp":"gws drive --help"}} |
PREREQUISITE: Read
../gws-shared/SKILL.mdfor auth, global flags, and security rules. If missing, rungws generate-skillsto create it.
gws drive <resource> <method> [flags]
| Command | Description |
|---|---|
+upload | Upload a file with automatic metadata |
get — Gets information about the user, the user's Drive, and system capabilities. Required: The fields parameter must be set.copy — Creates a copy of a file and applies any requested updates with patch semantics.create — Creates a file. Supports upload via --upload flag. Max file size: 5,120 GB.download — Downloads the content of a file.export — Exports a Google Workspace document to the requested MIME type. Limited to 10 MB.get — Gets a file's metadata or content by ID. Use alt=media for content.list — Lists the user's files. Supports q parameter for search queries. Returns all files including trashed by default.update — Updates a file's metadata, content, or both. Supports patch semantics and upload.watch — Subscribes to changes to a file.create — Creates a shared drive.get — Gets a shared drive's metadata by ID.list — Lists the user's shared drives. Supports q parameter for search.update — Updates the metadata for a shared drive.create — Creates a permission for a file or shared drive.delete — Deletes a permission.get — Gets a permission by ID.list — Lists a file's or shared drive's permissions.update — Updates a permission with patch semantics.create — Creates a comment on a file.delete — Deletes a comment.get — Gets a comment by ID.list — Lists a file's comments.get — Gets a revision's metadata or content by ID.list — Lists a file's revisions.Before calling any API method, inspect it:
# Browse resources and methods
gws drive --help
# Inspect a method's required params, types, and defaults
gws schema drive.<resource>.<method>
Use gws schema output to build your --params and --json flags.