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 fakoli/fakoli-plugins --skill recipe-create-doc-from-templategit 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/skills/fakoli/fakoli-plugins/recipe-create-doc-from-template)<a href="https://agentmods.dev/skills/fakoli/fakoli-plugins/recipe-create-doc-from-template"><img src="https://agentmods.dev/badge/skills/fakoli/fakoli-plugins/recipe-create-doc-from-template/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/fakoli/fakoli-plugins/recipe-create-doc-from-template"><img src="https://agentmods.dev/badge/skills/fakoli/fakoli-plugins/recipe-create-doc-from-template.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.00021 | $0.00377 |
| Opus 5 | $0.00010 | $0.00188 |
| Sonnet 5 | $0.00004 | $0.00075 |
| Haiku 4.5 | $0.00002 | $0.00038 |
Grade A, and why
recipe-create-doc-from-template 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 5d 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
Create a Google Doc from a Template
Copy a Google Docs template, fill in content, and share with collaborators.
When to Use
Use this workflow when the user wants to create a new document based on an existing template (e.g., project briefs, meeting notes, proposals).
Workflow
1. Find the template
Help the user locate the template document:
gws drive files list \
--params '{"q": "name contains 'TEMPLATE_NAME' and mimeType = 'application/vnd.google-apps.document'"}' \
--fields "files(id,name)" --format table
2. Copy the template
gws drive files copy \
--params '{"fileId": "TEMPLATE_DOC_ID"}' \
--json '{"name": "NEW_DOCUMENT_NAME"}'
Capture the new document ID from the response.
3. Fill in content
gws docs +write --document-id NEW_DOC_ID --text 'CONTENT_HERE'
4. Share with collaborators
Use --dry-run first:
gws drive permissions create \
--params '{"fileId": "NEW_DOC_ID"}' \
--json '{"role": "writer", "type": "user", "emailAddress": "[email protected]"}' \
--dry-run
Confirm, then execute.
5. Provide the link
Give the user the document URL: https://docs.google.com/document/d/NEW_DOC_ID
Tips
- Copy preserves all formatting from the template
- Use
"role": "commenter"for review-only access
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.
- 5d ago First seen · 63 lines · 21 tokens per session scan A ede3f5dfb73a
recipe-create-doc-from-template is a skill published in the GitHub repository fakoli/fakoli-plugins (4 stars, last pushed 3d ago), licensed MIT. It adds 21 tokens to every session and 377 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
docx
This skill should be activated when the user asks to create a Word document, report, memo, letter, proposal, whitepaper, or anything involving .docx output. Also triggers when the user says 'write a report', 'create a document', 'make a Word file', 'draft a proposal', 'generate a whitepaper', or mentions .docx.…
xlsx
This skill should be activated when the user asks to create, edit, read, or analyze Excel spreadsheet files (.xlsx, .xlsm, .csv, .tsv). Triggers for: building financial models, creating data tables, formatting spreadsheets, adding formulas, cleaning tabular data, converting between tabular formats. Also triggers when…
doc-docx
A Word document generator for editable DOCX files, the standard format used by Microsoft Word. It creates reports, contracts, proposals, official letters, and planning documents using Korean office layouts and a defined visual style.
cs-kb-article
A customer-support documentation tool for writing FAQs, user guides, troubleshooting instructions, policy notices, and release notes. It structures the material for help centres such as Zendesk, Freshdesk, and Kakao Business.
data-export
Generates data export/import infrastructure for JSON, CSV, PDF formats with GDPR data portability, share sheet integration, and file import. Use when user wants data export functionality, CSV/JSON/PDF export, GDPR compliance data portability, import from files, or share sheet for data.
notion-sdk
Control Notion via Python SDK. TRIGGERS - Notion API, create page, query database, add blocks.