gdrive-create

gdrive-create is a skill for Claude Code from matteotitta/genesys-skills. It costs 120 tokens per session (1,734 once invoked), scanned A, original, MIT.

A document-creation workflow for making branded Google Docs, Slides, and Sheets and placing them in the right client folder.

In plain words
What is it for?
Use it to create proposals, research documents, presentations, trackers, comparisons, and other deliverables in Google Drive.
Why use it?
It removes the need to choose the document type, find the client folder, and run separate creation scripts by hand.

Skill for Claude Code

Written for Claude Code: paths in frontmatter.

Good fit Use it to create proposals, research documents, presentations, trackers, comparisons, and other deliverables in Google Drive.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/matteotitta/genesys-skills/create-gdrive
Install

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.

Any agent
npx skills add matteotitta/genesys-skills --skill create-gdrive
Clone the repo
git clone --depth 1 https://github.com/matteotitta/genesys-skills

Made for: Claude Code.

Wrote 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.

agentmods badge for gdrive-create

README.md
[![agentmods](https://agentmods.dev/badge/skills/matteotitta/genesys-skills/create-gdrive/github.svg)](https://agentmods.dev/skills/matteotitta/genesys-skills/create-gdrive)
Your own site
<a href="https://agentmods.dev/skills/matteotitta/genesys-skills/create-gdrive"><img src="https://agentmods.dev/badge/skills/matteotitta/genesys-skills/create-gdrive/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.

agentmods 80×15 button for gdrive-create

Your own site · 80×15
<a href="https://agentmods.dev/skills/matteotitta/genesys-skills/create-gdrive"><img src="https://agentmods.dev/badge/skills/matteotitta/genesys-skills/create-gdrive.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 120 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,734 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
SkillSpector: 1 finding, up to low

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • low Excessive Agency · line 193
    Skill's behavior or capabilities extend beyond its stated purpose. Scope creep allows an agent to perform actions unrelated to its documented functionality, increasing the attack surface.
    Fix: Limit the skill's scope to its documented purpose. Remove instructions that enable the agent to perform actions outside its stated functionality.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00120 $0.01734
Opus 5 $0.00060 $0.00867
Sonnet 5 $0.00024 $0.00347
Haiku 4.5 $0.00012 $0.00173

Measured 11d ago against content hash 94a68f8b2ae8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

gdrive-create 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 11d 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.

skills/meta/infra/create-gdrive/SKILL.md · 221 lines

How it starts

The opening of the file, as written. The whole thing — 221 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Google Drive document creation

Create branded Google Docs, Slides, and Sheets in the correct client folder. This skill is the single entry point for all Google Drive document creation across the entire system.

When to use

  • Any skill produces a deliverable (proposal, research, analysis, deck, tracker)
  • User explicitly asks to "create a Google Doc", "push to Drive", "make a slide deck", "create a spreadsheet"
  • After running /client-proposals, /competitor-research, /product-messaging, /sales-enablement, or any deliverable-producing skill

Process

Step 1: Determine document type

User intent Document type Script
Written deliverables (proposals, research, analysis) Google Doc create-doc-unified.mjs
Presentations, decks, pitch materials Google Slides create-slides.mjs
Data, trackers, comparisons, matrices Google Sheets create-sheet.mjs

Step 2: Identify client context

Priority order:

  1. User explicitly names the client
  2. Current working directory is inside /project-consulting/{client-name}/
  3. File path contains a client identifier
  4. Ask: "Which client is this for?"

Valid client slugs (from gdrive-config.json):

  • ClientCo → PJ - ClientCo folder
  • ClientCo → PJ - Proposals folder
  • gtm-e-school → PJ - Proposals folder
  • genesys-growth → PJ - Proposals folder
  • alphastream → PJ - Alphastream folder
  • talli → PJ - Talli.ai folder
  • archive → PJ - Archive folder

Step 3: Save deliverable as markdown

Before pushing to Google Drive, the deliverable must exist as a .md file. Save it following the naming convention: MMYY-topic.md

Step 4: Run the appropriate script

Google Docs
cd dev-tools/mcp/gdrive && node create-doc-unified.mjs \
  "/full/path/to/file.md" \
  "Company Name" \
  --client {client-slug} \
  --title "Document Title"

Parameters:

  • file.md — Path to the markdown file (required)
  • "Company Name" — Full company name for the header (required)
  • --client — Client slug from config (optional, routes to correct folder)
  • --title — Custom document title, defaults to "Scope of work" (optional)
  • --folder — Override folder ID (optional, overrides client config)

Read the full file on GitHub · 221 lines

Changes

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.

  1. 11d ago First seen · 221 lines · 120 tokens per session scan A 94a68f8b2ae8

Subscribe to this mod's changes

gdrive-create is a skill published in the GitHub repository matteotitta/genesys-skills (36 stars, last pushed 1mo ago), licensed MIT. It adds 120 tokens to every session and 1,734 once invoked, about $0.0006 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-08-30.

Related

Other skills, from other repositories

gingiris-b2b-growth

🇺🇸 B2B SaaS Growth — PLG vs SLG Playbook — Diagnose whether your problem is distribution, pricing, or PMF. PLG/SLG selection by ACV and sales cycle, the 5-stage path from $0 to $10M ARR, NRR discipline, affiliate & channel motion, enterprise tiering. Built from HeyGen, Deel, Vercel, Supabase, Snowflake patterns.…

Gingiris-1031/gingiris-skills · 484 tokens

gr-b2b-growth

A guide to growing a business-to-business software product from early user research to large-scale sales. B2B software is sold to companies rather than individual consumers.

Gingiris-1031/gingiris-skills · 83 tokens

go-to-market-playbook

A reusable Go-to-Market strategy template for both B2B and B2C launches. Covers positioning, messaging, ICP definition, channel selection, and competitive analysis frameworks. By @WeiYipei.

Gingiris-1031/gingiris-skills · 48 tokens

orbit-notion

Open Orbit briefing skill — selected by the Orbit pipeline when Notion is the user's only connected connector, or when the user explicitly scopes their daily digest to Notion. Pulls the past 24 hours of document edits, comments, mentions, and database row changes from the user's authenticated Notion connection and…

nexu-io/open-design · 117 tokens

instrument-data-to-allotrope

Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…

anthropics/knowledge-work-plugins · 123 tokens

feishu

Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.

Hmbown/CodeWhale · 33 tokens