Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/fakoli/fakoli-plugins/gws-drivegit clone --depth 1 https://github.com/fakoli/fakoli-pluginsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/fakoli/fakoli-plugins/gws-drive)<a href="https://agentmods.dev/commands/fakoli/fakoli-plugins/gws-drive"><img src="https://agentmods.dev/badge/commands/fakoli/fakoli-plugins/gws-drive.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00013 | $0.00539 |
| Opus 5 | $0.00006 | $0.00269 |
| Sonnet 5 | $0.00003 | $0.00108 |
| Haiku 4.5 | $0.00001 | $0.00054 |
Grade A, and why
gws-drive scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
/gws-drive
Manage Google Drive files using the gws CLI.
Instructions
When this command is invoked, parse $ARGUMENTS to determine what the user wants to do with Drive.
Common Operations
Search files:
gws drive files list --params '{"q": "name contains \"QUERY\"", "pageSize": 10}' --fields "files(id,name,mimeType,modifiedTime)" --format table
Upload a file:
gws drive +upload ./local-file.pdf
Upload to a specific folder:
gws drive +upload ./file.pdf --parent FOLDER_ID
Download a file:
gws drive files get --params '{"fileId": "FILE_ID", "alt": "media"}' --output ./local-file.pdf
Create a folder:
gws drive files create --json '{"name": "Folder Name", "mimeType": "application/vnd.google-apps.folder"}'
Share a file:
gws drive permissions create --params '{"fileId": "FILE_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "[email protected]"}'
List folder contents:
gws drive files list --params '{"q": "\"FOLDER_ID\" in parents", "pageSize": 20}' --fields "files(id,name,mimeType)" --format table
URL Handling
If the user provides a Google Drive URL, extract the file ID from between /d/ and the next /:
https://drive.google.com/file/d/FILE_ID/view→FILE_IDhttps://docs.google.com/document/d/DOC_ID/edit→DOC_ID
Error Handling
- Exit code 2: Auth expired. Tell user to run
gws auth login. - Exit code 1: API error. Check the error message for details.
Tips
- Always use
--fieldsto limit response size and protect context window. - Use
--format tablefor display,--format jsonfor programmatic use. - Use
--dry-runbefore destructive operations (delete, update permissions). - For zsh: use double quotes for queries containing
!.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 69 lines · 13 tokens per session scan A ac0037cfe672
gws-drive is a command published in the GitHub repository fakoli/fakoli-plugins (4 stars, last pushed 26d ago), licensed MIT. It adds 13 tokens to every session and 539 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other commands, from other repositories
url-or-path
You are executing the /import:url-or-path command. Import documentation from a URL or local path.
update
You are executing the /import:update command. Re-fetch documentation from original sources.
search
You are executing the /import:search command. Search within all cached documentation.
latex
Compile one specified LaTeX document, resolve build errors, audit citations, and report build quality. Use when a .tex source must be built or a concrete compilation failure repaired. Not for corpus-wide build checks, visual polish after a clean build, or creating a project; use $latex-health-check, $latex-polish, or…
split-pdf
Download, split, and deeply read an academic PDF that is not available through Paperpile. Use when a long external PDF needs page-wise ingestion. For Paperpile items, use the Paperpile text-extraction route instead.
csv-to-numbers
Convert a CSV into a formatted Numbers workbook.