quip-to-gitlab-wiki

quip-to-gitlab-wiki is a skill for Claude Code, Codex from aws-samples/sample-agent-skills-for-builders. It costs 45 tokens per session (500 once invoked), scanned A, original, Apache-2.0.

A migration workflow for moving Quip documents into a GitLab Wiki. Quip is a collaborative document service, while a GitLab Wiki stores project documentation alongside a GitLab project; the workflow converts document content and preserves media.

In plain words
What is it for?
Use it to collect Quip documents, convert their HTML to Markdown, download embedded images, compress videos, upload pages to a GitLab Wiki, and set up wiki navigation.
Why use it?
It removes the manual work of copying documents, images, and videos into a new documentation system. It also helps organise the imported pages into a usable wiki structure.

Skill for Claude CodeCodex ✓ vendor

Written for no agent in particular: nothing here depends on one.

Good fit Use it to collect Quip documents, convert their HTML to Markdown, download embedded images, compress videos, upload pages to a GitLab Wiki, and set up wiki navigation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aws-samples/sample-agent-skills-for-builders/quip-to-gitlab-wiki
About the project

Sample Agent Skills for Builders is a collection of reusable skills that extend AI coding agents with AWS, CDK, security, testing, and engineering workflows. Developers can install the skills for practical AWS development tasks or use the repository as a model for creating their own agent skills. The catalogue entries are skills and instructions from this collection.

aws-samples/sample-agent-skills-for-builders · 47 stars · on GitHub

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 aws-samples/sample-agent-skills-for-builders --skill quip-to-gitlab-wiki
Clone the repo
git clone --depth 1 https://github.com/aws-samples/sample-agent-skills-for-builders

Made for: Claude Code, Codex.

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 quip-to-gitlab-wiki

README.md
[![agentmods](https://agentmods.dev/badge/skills/aws-samples/sample-agent-skills-for-builders/quip-to-gitlab-wiki/github.svg)](https://agentmods.dev/skills/aws-samples/sample-agent-skills-for-builders/quip-to-gitlab-wiki)
Your own site
<a href="https://agentmods.dev/skills/aws-samples/sample-agent-skills-for-builders/quip-to-gitlab-wiki"><img src="https://agentmods.dev/badge/skills/aws-samples/sample-agent-skills-for-builders/quip-to-gitlab-wiki/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 quip-to-gitlab-wiki

Your own site · 80×15
<a href="https://agentmods.dev/skills/aws-samples/sample-agent-skills-for-builders/quip-to-gitlab-wiki"><img src="https://agentmods.dev/badge/skills/aws-samples/sample-agent-skills-for-builders/quip-to-gitlab-wiki.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 500 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
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.00045 $0.00500
Opus 5 $0.00023 $0.00250
Sonnet 5 $0.00009 $0.00100
Haiku 4.5 $0.00005 $0.00050

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

Security

Grade A, and why

quip-to-gitlab-wiki 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 10d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/push-to-wiki.sh, scripts/quip-to-markdown.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/quip-to-gitlab-wiki/SKILL.md · 79 lines

What it actually says

Quip to GitLab Wiki Migration

Migrate Quip documents to GitLab Wiki with full content and media preservation.

When to Apply

Reference this skill when:

  • Migrating Quip documents to GitLab
  • Converting documentation to wiki format
  • Preserving embedded images and videos
  • Setting up GitLab wiki structure

How It Works

  1. Gather Sources - Collect Quip URLs and tokens
  2. Convert - Transform Quip HTML to Markdown
  3. Push - Upload to GitLab Wiki
  4. Configure - Set up GitLab MCP for future edits
  5. Structure - Organize wiki navigation

Prerequisites

  • Quip API token
  • GitLab project with wiki enabled
  • Python 3.8+ with html2text
  • ffmpeg (for video compression)

Usage

# Convert Quip document (token from environment)
export QUIP_TOKEN="your_token_here"
python scripts/quip-to-markdown.py <thread_id> <output_dir>

# Push to GitLab wiki
./scripts/push-to-wiki.sh <wiki_git_url> <content_dir> <page_path> <quip_url>

Conversion Features

  • HTML to Markdown via html2text
  • Embedded image download
  • Video compression (MOV→MP4 at 720p)
  • Asset organization in uploads/

Wiki Structure

wiki/
├── Home.md
├── Section-Name/
│   ├── _index.md
│   └── Page-Name.md
└── uploads/
    ├── image1.png
    └── video1.mp4

Image Path Rules

Page Location Image Path
Root pages uploads/image.png
Section pages ../uploads/image.png
Nested pages ../../uploads/image.png

References

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 79 lines · 45 tokens per session scan A 94044f8ea225

Subscribe to this mod's changes

quip-to-gitlab-wiki is a skill published in the GitHub repository aws-samples/sample-agent-skills-for-builders (47 stars, last pushed 14d ago), licensed Apache-2.0. It adds 45 tokens to every session and 500 once invoked, about $0.0002 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

pdf-processing

Extract text from PDFs, fill forms, and merge documents.

PrefectHQ/fastmcp · 11 tokens

csv

CSV data processing — view, filter, convert, merge tabular data. Zero barrier — use with x-cmd, Python, or awk. Use for "csv", "data", "table", "spreadsheet", "conversion".

x-cmd/x-cmd · 49 tokens

use-ifclite

Work with IFC / BIM files (.ifc, .ifcx, IFC2X3 / IFC4 / IFC4X3 / IFC5) from the terminal using the ifc-lite CLI — inspect, query, validate (IDS), export (CSV/JSON/IFC/glTF/Parquet), create elements, merge, convert schema versions, diff, clash-check, run BCF collaboration, and script the SDK. Use whenever a task…

LTplus-AG/ifc-lite · 142 tokens

pdf-processing

Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction.

Tencent/WeKnora · 36 tokens

release-sync

Syncs latest release content to NotebookLM and HQ Knowledge Base after version tagging. Reads CHANGELOG, CLAUDE.md, and hook README, updates notebook sources, and ingests release digest. Optionally generates podcast from updated knowledge base. Use after tagging a new version to propagate release knowledge.

yonatangross/orchestkit · 62 tokens

docs-sync-internal

Use when code changes on the current branch need matching internal or developer documentation — "update our internal docs", "the architecture docs are stale after this change", "document what I just changed", "do the dev docs still match the code?" — or as a pre-push check that developer docs track the code. Narrower…

The01Geek/prflow · 105 tokens