template-create

template-create is a skill for Claude Code, Codex from llamadrive/bengo-toolkit. It costs 77 tokens per session (5,368 once invoked), scanned A, original, MIT.

A workflow for turning an XLSX spreadsheet into a reusable court-document template. It analyzes the spreadsheet and defines the fields that users can fill in.

In plain words
What is it for?
Use it to register a new template from an XLSX file, choose its sharing scope, and make it available for later case-document work.
Why use it?
It avoids repeatedly preparing the same court forms by hand and controls where templates are stored. It also separates templates for one case, one computer, or a shared office folder.

Skill for Claude CodeCodex

Part of the bengo-toolkit plugin — 15 skills, 25 commands, 3 MCP servers shipped together

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.

agentmods
npx agentmods add skills/llamadrive/bengo-toolkit/template-create
Any agent
npx skills add llamadrive/bengo-toolkit --skill template-create
Clone the repo
git clone --depth 1 https://github.com/llamadrive/bengo-toolkit

Made for: Claude Code, Codex.

Or install bengo-toolkit, the plugin that ships this one along with the rest of its 15 skills, 25 commands, 3 MCP servers.

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 template-create

README.md
[![agentmods](https://agentmods.dev/badge/skills/llamadrive/bengo-toolkit/template-create.svg)](https://agentmods.dev/skills/llamadrive/bengo-toolkit/template-create)
Your own site
<a href="https://agentmods.dev/skills/llamadrive/bengo-toolkit/template-create"><img src="https://agentmods.dev/badge/skills/llamadrive/bengo-toolkit/template-create.svg" alt="Measured on agentmods" height="20"></a>
Per session 77 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,368 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00077 $0.05368
Opus 5 $0.00039 $0.02684
Sonnet 5 $0.00015 $0.01074
Haiku 4.5 $0.00008 $0.00537

Measured 3d ago against content hash 54e237bd9568, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

template-create 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 3d ago.

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/template-create/SKILL.md · 354 lines

How it starts

The opening of the file, as written. The whole thing — 354 lines — stays where its author put it; the contents beside it link to each section on GitHub.

テンプレート作成(template-create)

ユーザーが持ち込んだXLSXファイルを分析し、入力フィールドを定義してテンプレートとして登録する。

ワークフロー

Step 0: 保存場所の決定と案件フォルダ解決

初回使用時のみ案内メッセージを表示する(2 回目以降は silent、処理は決してブロックしない):

python3 skills/_lib/first_run.py notice

出力があれば、そのままユーザーに提示してから保存場所の決定へ進む。

テンプレートは 保存場所 を 3 通りから選べる:

  • 「この案件のみ」case既定、安全側)— 現在の案件フォルダの中にだけ保存 (<案件フォルダ>/.claude-bengo/templates/)。他の案件には影響しないため、試しに 登録する・案件固有の派生版を作る、といった用途に安全。後から /template-promote --to user|firm で他の案件からも使えるようにできる。
  • 「事務所共有」firm)— 事務所全員で共有するクラウド同期フォルダに保存。 /template-firm-setup で事前に設定した Google Drive / Dropbox / OneDrive 等の パスに保存される。事務所全員から見えるため、クライアントの個人情報が含まれて いると保存できない(以下のガード参照)。未設定や同期フォルダに到達できない 場合は使えない(その旨を案内する)。
  • 「この PC の全案件で共通」user)— この PC 限定で、すべての案件から使える ように ~/.claude-bengo/templates/ に保存。この PC 上の全案件から見えるため、 クライアントの個人情報が含まれていると保存できない(以下のガード参照)。

優先順: 実行時は $ARGUMENTS の --scope フラグがあればそれを採用。なければ 以下を 1 度だけ尋ねる:

このテンプレートをどこに保存する?
  1. この案件のみ(推奨・既定) — {案件フォルダ名} の中にだけ保存される
  2. 事務所全員で共有          — クラウド同期フォルダに保存(要 /template-firm-setup、個人情報の混入注意)
  3. この PC の全案件で共通    — この PC 上の全案件から使える形で保存(個人情報の混入注意)

番号で回答(未回答は 1):

選択肢 2 を選んだ場合、事務所共有フォルダに到達できないと保存できない。事前に python3 skills/_lib/workspace.py firm-status を呼んで確認するか、エラーが返ったら /template-firm-setup <パス> を案内する。

保存場所が決まったら保存先ディレクトリを解決する:

# user スコープ
python3 skills/_lib/workspace.py templates   # user_templates_dir を読む
# case スコープ
python3 skills/_lib/workspace.py resolve     # workspace_root を読む
  • user → 保存先 = ~/.claude-bengo/templates/(workspace 初期化不要)
  • case → 保存先 = {workspace_root}/.claude-bengo/templates/。walk-up で 見つからなければ CWD を silently 初期化する。

重要(case スコープの制限): CWD が ~/.claude-bengo/ 配下の場合、 ensure_workspace()WorkspaceUnderGlobalError を投げて拒否する。 ~/.claude-bengo/ は予約領域であり、その下を案件フォルダ扱いすると監査ログや user テンプレートが混線する。エラーが発生したらユーザーに「別のフォルダ に cd してから再実行してほしい」と案内する。

セキュリティ(user スコープ時の必須チェック): user 保存前に、対象 XLSX に クライアントの実データが残っていないかを決定論的に走査する:

python3 skills/_lib/pii_scan.py scan --xlsx "<source.xlsx>" --json

Read the full file on GitHub · 354 lines

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. 3d ago First seen · 354 lines · 77 tokens per session scan A 54e237bd9568

Subscribe to this mod's changes

template-create is a skill published in the GitHub repository llamadrive/bengo-toolkit (6 stars, last pushed 1mo ago), licensed MIT. It adds 77 tokens to every session and 5,368 once invoked, about $0.0004 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-31.

Related

Other skills, from other repositories

instrument-data-to-allotrope

Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…

anthropics/knowledge-work-plugins · 123 tokens

exploratory-data-analysis

Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…

K-Dense-AI/scientific-agent-skills · 83 tokens

notion

Notion API for creating and managing pages, databases, and blocks. Use when the user wants to create a Notion page, query a Notion database, update Notion properties, search Notion, add content to Notion, manage Notion blocks, or interact with Notion data sources and workspaces via the API.

elizaOS/eliza · 69 tokens

feishu

Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.

Hmbown/CodeWhale · 33 tokens

ondb

A logical analysis and reasoning tool for AI. Use when decomposing documents into structured knowledge, querying entities and relations, validating consistency, or indexing files. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", "analyze this document", entity CRUD, or cross-skill…

x-cmd/x-cmd · 71 tokens

sn-da-large-file-analysis

万行以上 Excel 数据集的高性能分析引擎。提供 openpyxl readonly 流式读取(iterrows 支持 10 万行以上)、Parquet 转换加速、内存优化、分块处理和大文件写入模式。遇到以下任一情况就主动使用本 skill:①数据行数 ≥ 10k(由 sn-da-excel-workflow 的行数评估步骤触发);②用户出现触发词:大文件 / 大数据量 / 性能优化 / 内存不足 / OOM / 百万行 / 十万行 / 流式读取 / Parquet / 分块处理 / large file / big data / streaming read / chunked processing;③直接使用…

OpenSenseNova/SenseNova-Skills · 218 tokens