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 skills add KunanonJ/ai-skills-hub --skill aside-site-google-drivegit clone --depth 1 https://github.com/KunanonJ/ai-skills-hubWrote 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/skills/kunanonj/ai-skills-hub/aside-site-google-drive)<a href="https://agentmods.dev/skills/kunanonj/ai-skills-hub/aside-site-google-drive"><img src="https://agentmods.dev/badge/skills/kunanonj/ai-skills-hub/aside-site-google-drive/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/kunanonj/ai-skills-hub/aside-site-google-drive"><img src="https://agentmods.dev/badge/skills/kunanonj/ai-skills-hub/aside-site-google-drive.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00013 | $0.00427 |
| Opus 5 | $0.00006 | $0.00214 |
| Sonnet 5 | $0.00003 | $0.00085 |
| Haiku 4.5 | $0.00001 | $0.00043 |
Grade A, and why
aside-site-google-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 9d ago.
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
Google Drive
Canonical URLs
- My Drive:
https://drive.google.com/drive/u/${uid}/my-drive - Shared with me:
https://drive.google.com/drive/u/${uid}/shared-with-me - Recent:
https://drive.google.com/drive/u/${uid}/recent - Starred:
https://drive.google.com/drive/u/${uid}/starred - Trash:
https://drive.google.com/drive/u/${uid}/trash - Search:
https://drive.google.com/drive/u/${uid}/search?q=${keyword} - Folder:
https://drive.google.com/drive/u/${uid}/folders/${folderId} - File view:
https://drive.google.com/drive/file/d/${fileId}/view?authuser=${uid}
Search results behavior
Single click usually selects. To open a search result, double click the gridcell.
- Results commonly open in a dialog, not a new tab.
- After closing the dialog, take a fresh snapshot before touching the next result.
Helper for reading multiple results:
const readGdriveResults = async (page, refs, action = 'snapshot', delay = 100) => {
const results = [];
for (const ref of refs) {
await page.locator(ref).dblclick();
await sleep(delay);
if (action === 'snapshot') {
results.push((await snapshot(page)).tree);
} else if (action === 'screenshot') {
results.push(await page.locator(ref).screenshot());
}
await page.keyboard.press('Escape');
await snapshot(page);
}
return results;
};
Working style
- Prefer search, folder, and direct file URLs over browsing from the Drive home surface.
- Re-snapshot after open, close, share, and move dialogs because Drive re-renders panes heavily.
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.
- 9d ago First seen · 52 lines · 13 tokens per session scan A d6a3fb7fe5df
aside-site-google-drive is a skill published in the GitHub repository KunanonJ/ai-skills-hub (5 stars, last pushed 2d ago), licensed MIT. It adds 13 tokens to every session and 427 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 skills, from other repositories
audit-dimensions
A review checklist for D1D25 specification files, covering the dimensions used to examine those documents.
issue-creation
Trigger: issue creation, bug reports, feature requests, or issue approval. Create and triage GitHub issues from repository evidence.
sdd-tasks
Break an SDD change into implementation tasks. Trigger: orchestrator launches task planning for a change.
sdd-research
Trigger: SDD research, external evidence, source-backed research. Produce auditable evidence for a selected research lane.
skill-improver
Trigger: improve skills, audit skills, refactor skills, skill quality. Audit and upgrade existing LLM-first skills.
go-testing
Trigger: Go tests, go test coverage, Bubbletea teatest, golden files. Apply focused Go testing patterns.