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 & AnalyticsAdvanced★ 1,555⑂ 100AI 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.tablereferences must resolve viaentity_details/sql_executionor 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
- 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.
- Terminology reconciliation: when a new Doc redefines "Agentic Harness" differently from an older note, adopt the current definition and append a conflict note.
- Identifier check: a doc mentions
analytics.orders_v2; the agent confirms it withentity_detailsbefore adding it to the page'stables: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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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.
- Open a terminal and clone the repo:
git clone https://github.com/Kaelio/ktx.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy just this skill:
cp -r ktx/packages/cli/src/skills/gdrive_synthesize ~/.claude/skills/ - Verify that
~/.claude/skills/gdrive_synthesize/SKILL.mdexists. - Restart Claude Code and confirm
gdrive_synthesizeappears in the skill list. - Note: the skill only functions fully where KTX tools such as
wiki_write,read_raw_file, andeviction_listare available. Standalone, treat it as a workflow reference.
View source on GitHub ↗License: Apache-2.0