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

Hearing Slides

ASecurity

Slides whose job is to collect information rather than deliver it: the agenda of what you need to hear, a fill-in sheet for the meeting, an event poll, and the page that says where to send the answers. Driven by the gaps in a hearing sheet. Use for: 聞くためのスライド, ヒアリング用の資料, 足りない情報を集めるスライド, イベントで情報を集めたい, 記入してもらう資料. Not: internal "who do we ask next" pages (scalar-ae-materials / b2b-account-maps); the proposal itself (scalar-proposal-slides).

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

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add wfukatsu/slide-forge --skill hearing-slides --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Hearing Slides?

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

Security grade badge for Hearing Slides
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/wfukatsu-hearing-slides/badge)](https://www.skillsdirectory.com/skills/wfukatsu-hearing-slides)

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

Download with Pro
Files
SKILL.md
---
name: hearing-slides
description: >-
  Slides whose job is to collect information rather than deliver it: the
  agenda of what you need to hear, a fill-in sheet for the meeting, an event
  poll, and the page that says where to send the answers. Driven by the gaps
  in a hearing sheet.
  Use for: 聞くためのスライド, ヒアリング用の資料, 足りない情報を集めるスライド,
  イベントで情報を集めたい, 記入してもらう資料.
  Not: internal "who do we ask next" pages (scalar-ae-materials /
  b2b-account-maps); the proposal itself (scalar-proposal-slides).
---

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

# Hearing Slides — pages that collect

Read `references/hearing-kit.md` first (record, customer filter, where answers
may be stored) and `references/scalar/workflow-contract.md` for the shared
generation, QA and delivery rules. **This skill does not restate either.**

Working directory: the slide-forge root. Run everything with `.venv/bin/python`.

## What makes these pages different

A proposal page asserts. **These pages leave a hole and ask the customer to
fill it.** The hole is real — it comes from `hearing.json`, where the answer is
still `未確認` or `推定`.

- **Never fill a hole with a guess to make the page look finished.** A builder
  that has no material refuses to build the page (exit 2); take that as the
  answer, not as an error to work around.
- Everything here is customer-facing, so it is built only from what survives
  the customer filter. Internal sections and the source/confidence columns
  never reach a slide.
- **Say what the customer gets back.** Collecting without returning anything
  teaches people not to answer next time.

## Boundaries

| Request | Where it goes |
|---|---|
| Slides that ask the customer / an audience for information | This skill |
| The sheet itself, and reading the answers back | `hearing-sheet` |
| Internal "who do we ask, by when" (`discovery-gaps`) | `scalar-ae-materials` / `b2b-account-maps` |
| A conversation-opening challenge hypothesis (`challenge-hypothesis`) | `scalar-ae-materials` |
| Proposal, PoC plan, quotation | `scalar-proposal-slides` / `spreadsheets` |
| Event segments and nurture tracks | `scalar-nurture-intake` |

`discovery-gaps` and this skill's `hearing-agenda` look similar and are not.
`discovery-gaps` is **internal**: it assigns each gap to a counterpart and a
date. `hearing-agenda` is **shown to the customer** and asks them directly.
Do not put one in the other's folder.

## The pages

| Template | The moment it is for | Built from |
|---|---|---|
| `hearing-agenda` | Opening a meeting: here is what we need to hear and why | `未確認` questions, ticked ones first |
| `hypothesis-check` | Mid-meeting: our understanding, put up to be corrected | questions whose confidence is `推定` |
| `fill-in-sheet` | In the room: blank rows to write on (print / screen share) | `未確認` questions in the chosen section |
| `event-poll` | A talk or a seminar: which of these is you? | a nurture segment's situations (`templates/nurture/segment-sheet.ja.md` §1) |
| `collect-cta` | Closing: where to send answers, and what comes back | `meta.renders.gsheet`, or `--where` |
| `collect-qr` | An event close: the same, as a QR to scan | as above, plus `scripts/hearing/qr.py` |

## Step 1: See what is actually open

```bash
.venv/bin/python scripts/hearing/hearing_sheet.py gaps <hearing.json> [--section 4]
```

Choose pages from what is there, not from the list above:

- Nothing `推定` → **no `hypothesis-check`.** There is no understanding to
  correct yet, and inventing one to fill the page is the exact failure this
  skill exists to prevent.
- Fewer than three `未確認` → the sheet is nearly done; a whole deck of asking
  is the wrong artifact. Say so and offer the one page that fits.
- More than one section open → ask with `--section` rather than mixing an
  infrastructure question into a budget page.

## Step 2: Build the data, then the pages

```bash
.venv/bin/python scripts/hearing/hearing_slots.py <hearing.json> hearing-agenda \
    --out out/<customer>/agenda.json --section 4
.venv/bin/python scripts/render_slide_template.py --template hearing-agenda \
    --data out/<customer>/agenda.json --out out/<customer>/agenda.slide.json
```

The generated wording is a **starting point, not the deliverable**. Rewrite
`title` and `lead` to the customer's own situation and vocabulary before
assembling — a page that reads as a form letter gets form-letter answers.

For a QR page, make the image first and check where it points:

```bash
.venv/bin/python scripts/hearing/qr.py "<answer URL>" --out out/<customer>/qr.png
```

Without `qrcode` installed this writes a clearly marked placeholder and exits 2.
**Do not put the placeholder in front of a customer** — either install
`qrcode[pil]` or use `collect-cta`, which carries the URL as text.

## Step 3: Assemble, validate, generate

```bash
.venv/bin/python scripts/assemble_spec.py out/<customer>/*.slide.json \
    --out out/<customer>/deck.json --title "<資料名>"
.venv/bin/python scripts/build_deck.py --template templates/scalar-2026.json \
    --spec out/<customer>/deck.json --dry-run --strict
```

Fix the **data** when the audit fires — shorten the wording, drop a row — never
the template. Then generate into `01_顧客提示` (a page that asks the customer
is customer-facing material) and follow the shared contract's QA and cleanup.

## Step 4: Close the loop

A collection page that never gets read back is decoration. In the report, say:

1. Which pages were built, and which were refused for lack of material
2. What each page is asking for, and which sheet IDs it covers
3. **How the answers come back** — `hearing-sheet`'s `read`, with the baseline
   kept before the sheet went out
4. What is still open after this deck, and who can answer it

Event answers aggregate to type and count before they go anywhere near
`accounts/_nurture/`; anything that identifies a company is a deal, not a
segment (`references/hearing-kit.md` §4).

## Files

| Path | Role |
|---|---|
| `slide-templates/hearing/` | the six page templates and their examples |
| `scripts/hearing/hearing_slots.py` | hearing.json → slot data (refuses thin pages) |
| `scripts/hearing/qr.py` | the QR for a collect page (optional `qrcode`) |
| `references/hearing-kit.md` | shared rules with `hearing-sheet` |

Attribution

wfukatsuwfukatsu
View sourceMore from wfukatsu →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

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

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

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.

284722 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 →