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

Spreadsheets

ASecurity

Generate line-item spreadsheets — estimates, BOMs, cost breakdowns, comparison tables — as Excel (.xlsx) and/or Google Spreadsheet from one JSON spec. Companion to a deck, and also standalone. Use for: 見積もりを作って, 見積書, 明細表, 費用内訳を Excel に, BOM をスプレッドシートに, cost breakdown spreadsheet. Not: free-form or existing-file xlsx work (document-skills:xlsx); reading or analyzing spreadsheets; tables drawn inside slides.

2 stars
0 votes
0 copies
1 views
Added 9/19/2026
developmentpythongoapi

Works with

api

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

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

Installs into .claude/skills of the current project.

Are you the author of Spreadsheets?

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

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

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

Download with Pro
Files
SKILL.md
---
name: spreadsheets
description: >-
  Generate line-item spreadsheets — estimates, BOMs, cost breakdowns,
  comparison tables — as Excel (.xlsx) and/or Google Spreadsheet from one JSON
  spec. Companion to a deck, and also standalone.
  Use for: 見積もりを作って, 見積書, 明細表, 費用内訳を Excel に,
  BOM をスプレッドシートに, cost breakdown spreadsheet.
  Not: free-form or existing-file xlsx work (document-skills:xlsx); reading or
  analyzing spreadsheets; tables drawn inside slides.
---

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

# Line-item Spreadsheets (Excel + Google Spreadsheet)

## Important

- **One spec, two outputs.** The JSON spec builds the `.xlsx` with openpyxl;
  `--gsheet` converts that same file into a Google Spreadsheet via Drive.
  Never author the two outputs separately — they must stay identical.
- **Amounts are formulas, not pasted numbers.** Amount = quantity × unit price
  as a real formula (`=D{row}*F{row}`), totals as `SUM`. The user will edit
  quantities in the delivered file and the totals must follow. Only put
  literal numbers in cells the user should treat as input (unit price,
  quantity).
- **Fixes happen in the spec.** Regenerate on any change; with the same title
  and folder, the Google Spreadsheet is updated **in place** (URL preserved),
  so the user always holds one link.
- **Run every command from the slide-forge root as cwd** — `${CLAUDE_PLUGIN_ROOT}`
  when running from an installed plugin, `/path/to/slide-forge` on a
  local clone. Auth and the venv are shared at the repo root (`config/`, `.venv`).
- **Never invent prices.** Unit prices, tax rates, and discount terms come
  from the user or their material. Anything unsourced stays a `○○` placeholder
  flagged in the note row and the report — same rule as deck content.
- **Companion to a deck**: when the spreadsheet backs a proposal's cost slide
  (`scalar-proposal-slides` BOM, etc.), put it in the **deck's Drive folder**
  and keep slide summary and sheet totals consistent — the slide shows the
  total, the sheet carries the line items.

## Quick Reference

| Task | Command |
|------|---------|
| Validate the spec (offline, free) | `.venv/bin/python scripts/build_sheet.py spec.json --dry-run` |
| Build xlsx (→ `out/sheets/<title>.xlsx`) | `.venv/bin/python scripts/build_sheet.py spec.json [--out path.xlsx]` |
| Also create the Google Spreadsheet | `--gsheet [--folder <Drive folder URL/ID>]` |
| Archive the spec next to it | `.venv/bin/python scripts/drive_folder.py upload <FOLDER> spec.json` |
| Worked example (estimate with tax summary) | `examples/estimate-sample.json` |

## Spec format

Full reference in the `build_sheet.py` docstring; the shape:

```json
{
  "title": "○○様向け ScalarDB 導入見積もり",
  "sheets": [{
    "name": "見積もり明細",
    "heading": "表の見出し(任意)",
    "note": "有効期限・税区分などの注記(任意)",
    "columns": [
      {"header": "数量", "type": "int", "width": 8},
      {"header": "単価(月額)", "type": "currency"},
      {"header": "金額(月額)", "type": "currency", "formula": "=D{row}*F{row}"}
    ],
    "rows": [[...], "…列数は columns と一致。formula 列は null…"],
    "summary": [
      {"label": "小計", "formula": "=SUM(G{first}:G{last})"},
      {"label": "消費税 (10%)", "formula": "=G{s1}*0.1"},
      {"label": "合計", "formula": "=G{s1}+G{s2}", "emphasis": true}
    ]
  }]
}
```

- `type`: `text` (default) / `int` / `currency` (¥#,##0) / `percent` / `date`
- Placeholders: `{row}` (that data row), `{first}`/`{last}` (data range),
  `{s1}`, `{s2}`… (summary rows, forward references only)
- Multiple sheets per book: put the line-item sheet first, then
  assumptions / breakdown sheets — estimates without stated assumptions get
  disputed later, so include an assumptions sheet whenever the numbers depend
  on region, exchange rate, contract term, or excluded work.

## Workflow

1. **Settle the shape before authoring** (AskUserQuestion, one round,
   following `references/interactive-intake.md` §0/§5 manners): line-item
   granularity and source material; tax handling (excl./incl. tax/rate);
   output — xlsx only / Google Spreadsheet too (default: both; lead with the
   Spreadsheet when the recipient is on Google Workspace); Drive folder (the
   deck's folder when this backs a deck). Skip anything already specified.
2. **Author the spec** and validate offline: `--dry-run` catches column-count
   mismatches, unknown types, and bad placeholder references before any
   API call.
3. **Build**: add `--gsheet --folder <FOLDER>` when a Google Spreadsheet was
   requested. Upload the spec JSON to the same folder (Drive folder rule).
4. **Verify the numbers** — formulas compute in the file, not in the spec, so
   check them once: export the converted sheet as CSV and confirm the
   subtotal/total (`drive.files().export(fileId=…, mimeType="text/csv")`
   returns computed values), or recompute the expected totals and compare. A
   wrong column letter in a formula is silent otherwise.
5. **Report**: local xlsx path, Google Spreadsheet URL (when created), the
   Drive folder, and any `○○` placeholders still to be filled by the user.

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 →