Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Google Drive Doc Synthesis (gdrive_synthesize)

A KTX memory-agent skill that reads staged Google Drive documents and distills them into durable, well-cited internal wiki pages.

Data & AnalyticsAdvanced1,555100AI score 7/10Last updated: Jul 19, 2026

What it does

Given a WorkUnit containing one Google Doc plus metadata, it reads the raw page.md and metadata.json and writes a small set of durable wiki entries instead of dumping summaries.

  • Captures policies, workflows, ownership conventions, product definitions, and business terminology
  • Deliberately skips brainstorm notes, task lists, meeting logistics, and time-bounded status updates
  • Searches existing wiki pages first and prefers updates over duplicate creation
  • Records a conflict note inside the page when evidence disagrees, rather than silently picking a side
  • Enforces an identifier-verification protocol: schema.table references must resolve via entity_details/sql_execution or be marked [unverified - <rawPath>]
  • Handles eviction decisions for deleted raw paths even when no wiki write is needed

Who it's for

  • Data/platform teams running the KTX (Kaelio) memory-agent pipeline
  • Organizations consolidating scattered Google Drive docs into one knowledge base
  • Anyone building alias mappings between doc terminology and warehouse/dbt/Looker/Metabase objects

Example uses

  1. Policy distillation: turn a "Refund approval process" Doc into one wiki page listing steps, owning team, and exceptions, citing the Doc title and last-modified date.
  2. Terminology reconciliation: when a new Doc redefines "Agentic Harness" differently from an older note, adopt the current definition and append a conflict note.
  3. Identifier check: a doc mentions analytics.orders_v2; the agent confirms it with entity_details before adding it to the page's tables: frontmatter.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/Kaelio/ktx/HEAD/packages/cli/src/skills/gdrive_synthesize/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the packages/cli/src/skills/gdrive_synthesize folder from the GitHub repo Kaelio/ktx into my ~/.claude/skills/gdrive-synthesize/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/Kaelio/ktx.git && mkdir -p ~/.claude/skills && cp -r ktx/packages/cli/src/skills/gdrive_synthesize ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal and clone the repo: git clone https://github.com/Kaelio/ktx.git
  2. Create the skills directory: mkdir -p ~/.claude/skills
  3. Copy just this skill: cp -r ktx/packages/cli/src/skills/gdrive_synthesize ~/.claude/skills/
  4. Verify that ~/.claude/skills/gdrive_synthesize/SKILL.md exists.
  5. Restart Claude Code and confirm gdrive_synthesize appears in the skill list.
  6. Note: the skill only functions fully where KTX tools such as wiki_write, read_raw_file, and eviction_list are available. Standalone, treat it as a workflow reference.
View source on GitHubLicense: Apache-2.0