Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Slide Template Creator

ASecurity

Create, register, update and catalog reusable single-slide templates. These are content-level page templates, not Google Slides masters. Use for: ページテンプレートを追加, SWOT・比較・プロセスなどのスライド型を作って, 既存スライドやスクリーンショットをテンプレート化, 登録済みテンプレートの一覧と保守. Not: brand/master creation (template-forge); deck generation (google-slides / google-slides-template); visual QA of finished decks (slide-qa).

2 stars
0 votes
0 copies
0 views
Added 9/19/2026
developmentpythongobashrails

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add wfukatsu/slide-forge --skill slide-template-creator --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Slide Template Creator?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Slide Template Creator
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/wfukatsu-slide-template-creator/badge)](https://www.skillsdirectory.com/skills/wfukatsu-slide-template-creator)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: slide-template-creator
description: >-
  Create, register, update and catalog reusable single-slide templates. These
  are content-level page templates, not Google Slides masters.
  Use for: ページテンプレートを追加, SWOT・比較・プロセスなどのスライド型を作って,
  既存スライドやスクリーンショットをテンプレート化, 登録済みテンプレートの一覧と保守.
  Not: brand/master creation (template-forge); deck generation (google-slides /
  google-slides-template); visual QA of finished decks (slide-qa).
---

*[日本語](SKILL.ja.md)*

# Slide Template Creator

Create one reusable page specification at a time. Keep Google Slides masters in
`templates/`; store content-level templates in `slide-templates/`.

Run all commands from the slide-forge repository root. Use `.venv/bin/python`.

## Boundaries

| Request | Route |
|---|---|
| Create or update a reusable one-slide content pattern | this skill |
| Analysis-framework templates (PEST, logic tree, Pareto, …) | `analysis-template-creator` |
| Create brand colors, fonts, logo, master, or layouts | `template-forge` |
| Generate a complete deck | `google-slides` / `google-slides-template` |
| Verify generated slides visually | `slide-qa` |

A slide template is a `template.json` plus `example.json`, registered in
`slide-templates/manifest.json`. It expands to one ordinary slide-forge slide
object and therefore composes with `scripts/assemble_spec.py`.

## Workflow

### 1. Intake

Ask only for missing information, in one round:

- the question or message the slide must communicate;
- representative input data and expected variations;
- presentation or read-alone density;
- portable across masters or restricted to one registered master;
- any source slide, screenshot, or visual reference.

If the user supplies an existing user-owned deck, snapshot it before any live
edit. Prefer inspecting it and rebuilding the template locally; do not use the
live deck as the template registry.

### 2. Search before adding

```bash
.venv/bin/python scripts/list_slide_templates.py
.venv/bin/python scripts/list_slide_templates.py --tag <term>
rg '<term>' slide-templates scripts references
```

Reuse or extend an existing template when it answers the same question with the
same visual grammar. Create a new ID only when the required slots or visual
structure are materially different.

Read [primitive-selection.md](references/primitive-selection.md) when choosing
the drawing parts. Read [design-rules.md](references/design-rules.md) for page
structure, density, sources, and master portability.

### 3. Approve the template outline

Before editing, present and obtain approval for:

- ID and display name;
- question answered and inference level;
- page skeleton and semantic slots;
- reused or new primitives;
- sample preview content;
- interpretation guardrails.

Do not skip this gate when the user has not already approved those decisions.

### 4. Author the template

Create:

```text
slide-templates/<pack>/<id>/template.json
slide-templates/<pack>/<id>/example.json
```

Register it in `slide-templates/manifest.json`. Follow the complete schema in
[template-schema.md](references/template-schema.md).

Prefer existing primitives in `scripts/patterns.py`, `pages.py`, `charts.py`,
and `illustrations.py`. Add a primitive only when the same low-level drawing is
repeated, domain input needs function-level validation, and the function can be
named and reused independently of one template.

Portable templates must use `BLANK` plus `governing_message`, semantic palette
tokens through Canvas primitives, and the 10 × 5.625 inch safe area. Do not
reference a master object ID or hard-code brand RGB values.

### 5. Validate offline

```bash
.venv/bin/python scripts/validate_slide_templates.py --id <id>
.venv/bin/python scripts/render_slide_template.py \
  --template <id> --data slide-templates/<pack>/<id>/example.json \
  --out out/<id>.json
```

The validator checks registry/schema/input consistency, renders the example,
then runs `build_deck.py --dry-run --strict`. Fix every audit finding.

For all templates in a pack:

```bash
.venv/bin/python scripts/validate_slide_templates.py --pack <pack>
.venv/bin/python scripts/build_slide_template_catalog.py \
  --pack <pack> --out out/<pack>-catalog.json
```

### 6. Visual QA

Generate a catalog deck only after offline validation. Run `slide-qa` on every
catalog page. Test both representative input and boundary-size input for new
slot shapes. Fix the template, example, or shared primitive—not the generated
deck—and regenerate. Clean QA thumbnails before reporting.

### 7. Report

Report:

- template ID, pack, and paths;
- question answered and slot names;
- whether it is portable or master-specific;
- offline validation result;
- catalog URL and visual-QA result when live generation was authorized;
- any new primitive or compatibility constraint.

## Safety and quality rules

- Never invent production data to fill a template. `example.json` must identify
  itself as sample data in its source or notes.
- Require a `source` slot for numeric claims.
- Keep descriptive, diagnostic, predictive, causal, and strategic claims
  distinct. Put method-specific caveats in `guardrails`.
- Reject undeclared input slots and unresolved slot references.
- Keep generated and QA files under ignored `out/` paths.
- Preserve backward compatibility for stable templates. See
  [registration-and-compatibility.md](references/registration-and-compatibility.md).

Attribution

wfukatsuwfukatsu
View sourceMore from wfukatsu →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284072 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →