tapcanvas-collage-local

tapcanvas-collage-local is a skill for Claude Code, Codex from anymouschina/TapCanvas. It costs 31 tokens per session (497 once invoked), scanned A, original, MIT.

A local tool that combines several images into a labeled grid using Python and Pillow, a Python library for image handling. It can create collages from local files or image URLs without calling an AI model.

In plain words
What is it for?
Use it to build storyboard collages, arrange role-card images, add role names, and choose the grid and image-size settings.
Why use it?
It makes a set of storyboard frames or role cards easier to view and compare in one image. Because the process is local and fixed, the result does not depend on a model response.

Skill for Claude CodeCodex

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

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is --input ./tmp/shot1.png \.

Good fit Use it to build storyboard collages, arrange role-card images, add role names, and choose the grid and image-size settings.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/anymouschina/TapCanvas
agentmods
npx agentmods add skills/anymouschina/tapcanvas/tapcanvas-collage-local

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 tapcanvas-collage-local

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/anymouschina/tapcanvas/tapcanvas-collage-local"><img src="https://agentmods.dev/badge/skills/anymouschina/tapcanvas/tapcanvas-collage-local.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 497 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.00031 $0.00497
Opus 5 $0.00015 $0.00249
Sonnet 5 $0.00006 $0.00099
Haiku 4.5 $0.00003 $0.00050

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

Security

Grade A, and why

tapcanvas-collage-local 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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/collage.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.

apps/agents-cli/skills/tapcanvas-collage-local/SKILL.md · 83 lines

What it actually says

TapCanvas Local Collage

Use this skill when the task is:

  • merge multiple storyboard frames into one grid image
  • merge role-card images and add role-name labels
  • avoid model-based collage generation

This skill is local-first and deterministic. It does not call any model API.

Prerequisites

  • Python 3.9+
  • Pillow

Install:

python3 -m pip install --upgrade pillow

Script

Path:

skills/tapcanvas-collage-local/scripts/collage.py

Input modes

You can pass image inputs as:

  • local file paths
  • HTTP/HTTPS URLs

Usage examples

  1. 2x2 collage with role labels:
python3 skills/tapcanvas-collage-local/scripts/collage.py \
  --input ./tmp/shot1.png \
  --input ./tmp/shot2.png \
  --input ./tmp/shot3.png \
  --input ./tmp/shot4.png \
  --label "真宫寺唯" \
  --label "萧夜" \
  --label "真宫寺唯" \
  --label "萧夜" \
  --output ./tmp/role-collage.png \
  --grid 2 \
  --cell-size 640 \
  --divider-width 4 \
  --divider-color "#ffffff"
  1. URL inputs, auto grid:
python3 skills/tapcanvas-collage-local/scripts/collage.py \
  --input "https://example.com/a.png" \
  --input "https://example.com/b.png" \
  --input "https://example.com/c.png" \
  --output ./tmp/storyboard-collage.png \
  --grid auto

Behavior

  • Fills each cell with center-crop + resize (stable visual layout).
  • Draws a semi-transparent dark label strip at cell bottom.
  • Draws per-cell label text in white.
  • If labels are fewer than images, remaining cells are unlabeled.
  • If labels are more than images, extra labels are ignored.

Output

  • Default output format: PNG.
  • Ensure output path parent directories exist (script auto-creates).
Files

What ships with it

1 file 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. 11d ago First seen · 83 lines · 31 tokens per session scan A f2214e7f5dea

Subscribe to this mod's changes

tapcanvas-collage-local is a skill published in the GitHub repository anymouschina/TapCanvas (603 stars, last pushed today), licensed MIT. It adds 31 tokens to every session and 497 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

dramake

A production workflow for turning an idea, story, script, storyboard, or existing footage into a short AI drama or film. It covers planning, generation, voice, editing, and quality checks for formats such as vertical and horizontal video.

xixihhhh/ai-short-drama-skill · 279 tokens

slides

Build a Grida slides deck — a .canvas bundle in slides mode whose pages are SVG documents (16:9, one SVG per slide). Use when creating a presentation, pitch deck, slideshow, or talk.

gridaco/grida · 46 tokens

short-drama-storyboard

A workflow for turning a Chinese short-drama script and its visual facts into a shot-by-shot storyboard with frozen starting-frame prompts.

zenstory-ai/drama-skills · 102 tokens

short-drama-image-prompts

A guide for writing reusable image prompts for short dramas, covering characters, costumes, locations, props, and different states. It produces copy-ready Markdown prompts but does not create the images.

zenstory-ai/drama-skills · 86 tokens

remake-reel

Analyze a reference video (a reel, montage, or ad the user likes) into an edit blueprint — shot boundaries, music beats, BPM, energy curve, the drop — and rebuild the same structure with the user's own footage. Use when someone says "make it like this video", "remake this reel with my clips", or asks what makes an…

ronak-create/FableCut · 74 tokens

pr-walkthrough

Create a narrated video walkthrough of a pull request with code slides and audio narration. Use when asked to create a PR walkthrough, PR video, or walkthrough video.

tldraw/tldraw · 37 tokens