sf-message-catalog

sf-message-catalog is a skill for Claude Code from kugamon/salesforce-isv-skills. It costs 184 tokens per session (2,306 once invoked), scanned A, original, MIT.

A Salesforce managed-package message catalog generator. It finds user-facing error, warning, information, and confirmation messages in the package’s code and creates a formatted document.

In plain words
What is it for?
Use it to document messages from Apex, Lightning Web Components, Aura components, Visualforce pages, and Visualforce components, including their context and severity.
Why use it?
It removes the need to search several Salesforce component types by hand and helps collect messages in one place.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Part of the salesforce-isv plugin — 2 skills shipped together

Good fit Use it to document messages from Apex, Lightning Web Components, Aura components, Visualforce pages, and Visualforce components, including their context and severity.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kugamon/salesforce-isv-skills/sf-message-catalog
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.

Any agent
npx skills add kugamon/salesforce-isv-skills --skill sf-message-catalog
Clone the repo
git clone --depth 1 https://github.com/kugamon/salesforce-isv-skills

Made for: Claude Code.

Or install salesforce-isv, the plugin that ships this one along with the rest of its 2 skills.

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 sf-message-catalog

README.md
[![agentmods](https://agentmods.dev/badge/skills/kugamon/salesforce-isv-skills/sf-message-catalog/github.svg)](https://agentmods.dev/skills/kugamon/salesforce-isv-skills/sf-message-catalog)
Your own site
<a href="https://agentmods.dev/skills/kugamon/salesforce-isv-skills/sf-message-catalog"><img src="https://agentmods.dev/badge/skills/kugamon/salesforce-isv-skills/sf-message-catalog/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 sf-message-catalog

Your own site · 80×15
<a href="https://agentmods.dev/skills/kugamon/salesforce-isv-skills/sf-message-catalog"><img src="https://agentmods.dev/badge/skills/kugamon/salesforce-isv-skills/sf-message-catalog.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 184 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,306 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.
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.00184 $0.02306
Opus 5 $0.00092 $0.01153
Sonnet 5 $0.00037 $0.00461
Haiku 4.5 $0.00018 $0.00231

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

Security

Grade A, and why

sf-message-catalog 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.

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.

plugins/salesforce-isv/skills/sf-message-catalog/SKILL.md · 220 lines

How it starts

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

Salesforce Managed Package — Message Catalog Generator

Generate a complete, customer-facing catalog of every user-facing message in a Salesforce managed package. The output is a professional landscape .docx with color-coded severity, organized by component type.

Before You Begin

  1. Read the docx skill — locate and read the docx SKILL.md in your available skills. You will generate a .docx using docx-js.
  2. Identify the Salesforce org connector. Ask the user which connected Salesforce org to query. Look for available MCP tools matching patterns like mcp__salesforce-*__tooling_execute or mcp__Salesforce-*__tooling_execute. If multiple orgs are connected, ask the user to pick one. If only one is available, confirm it.
  3. Identify the managed package namespace prefix. Ask the user for the namespace (e.g., kugo2p). This is used to filter Tooling API queries to only components belonging to that package.

Phase 1: Extract Messages from All Component Types

Query the Salesforce Tooling API for source code across five component types. For each, extract every user-facing message string along with its method/context, triggering condition, and severity.

1.1 Apex Classes and Triggers

Query all Apex classes and triggers in the namespace:

SELECT Id, Name, Body FROM ApexClass WHERE NamespacePrefix = '{namespace}'
SELECT Id, Name, Body FROM ApexTrigger WHERE NamespacePrefix = '{namespace}'

Search each body for these patterns (in priority order):

Pattern Severity
.addError('...') ERROR
ApexPages.addMessage(...) with ApexPages.Severity.ERROR ERROR
ApexPages.addMessage(...) with ApexPages.Severity.WARNING WARNING
ApexPages.addMessage(...) with ApexPages.Severity.INFO INFO
ApexPages.addMessage(...) with ApexPages.Severity.CONFIRM CONFIRM
throw new ...Exception('...') ERROR
String variables assigned then passed to addError or addMessage Varies

For each message found, record:

  • Method: The Apex method name where the message lives
  • Message: The exact string literal (preserve {merge fields})
  • Condition: The if / guard clause that triggers it (summarize in plain English)
  • Severity: ERROR, WARNING, INFO, or CONFIRM

Read the full file on GitHub · 220 lines

Files

What ships with it

2 files 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 · 220 lines · 184 tokens per session scan A 9d611231c87a

Subscribe to this mod's changes

sf-message-catalog is a skill published in the GitHub repository kugamon/salesforce-isv-skills (2 stars, last pushed 20d ago), licensed MIT. It adds 184 tokens to every session and 2,306 once invoked, about $0.0009 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

ebook-drive

ค้นหาหนังสือหรือเอกสาร PDF จากแหล่งที่ถูกกฎหมายบนอินเทอร์เน็ต แล้วบันทึกเข้าโฟลเดอร์ Google Drive ของผู้ใช้ โดยอัตโนมัติผ่าน Google Apps Script — ผู้ใช้ไม่ต้องดาวน์โหลดหรืออัปโหลดไฟล์เองแม้แต่ขั้นตอนเดียว ใช้เมื่อผู้ใช้พิมพ์ชื่อหนังสือ/เอกสารพร้อมขอให้หาให้, แนบรูปปกหนังสือแล้วขอให้หา, หรือพูดถึงการเก็บ ebook/PDF…

natthasath/natthasath-marketplace · 229 tokens

blind

แทนที่ข้อมูล sensitive ในเอกสารด้วยข้อมูลสมมติที่ดูสมจริง (pseudonymization) — รักษารูปแบบและโครงสร้างเดิมไว้ แต่ข้อมูลจริงถูกซ่อนทั้งหมด รองรับทุกประเภทเอกสาร: ข้อความทั่วไป, เอกสารราชการ, ตาราง Excel/CSV, PPTX, รายงานการเงิน ใช้เมื่อผู้ใช้ต้องการซ่อน ปิดบัง หรือสลับข้อมูลจริงออก เช่น "ช่วย blind ข้อมูลนี้"…

natthasath/natthasath-marketplace · 0 tokens

saraban

ตรวจสอบ ปรับปรุง และร่างเอกสารราชการไทยให้ถูกต้องตามระเบียบสารบรรณ พ.ศ. ๒๕๒๖ และฉบับแก้ไข (ฉบับที่ ๒ พ.ศ. ๒๕๔๘, ฉบับที่ ๓ พ.ศ. ๒๕๖๐, ฉบับที่ ๔ พ.ศ. ๒๕๖๔) ครอบคลุมหนังสือภายนอก บันทึกข้อความ ประกาศ คำสั่ง หนังสือประทับตรา หนังสือเวียน และงานสารบรรณอิเล็กทรอนิกส์ ใช้ skill…

natthasath/natthasath-marketplace · 252 tokens

ebook

ค้นหาและดาวน์โหลดไฟล์ PDF จากแหล่งที่ถูกกฎหมายบนอินเทอร์เน็ต ใช้เมื่อผู้ใช้ต้องการดาวน์โหลดไฟล์ PDF เช่น "หาและดาวน์โหลด Clean Code", "โหลด PDF นี้ให้หน่อย" หรือแค่วาง URL ลิงก์ PDF มาเลย เรียกใช้ผ่าน /ebook เท่านั้น — ไม่ auto-trigger จากบทสนทนา รองรับการตั้งค่า path บันทึกไฟล์และเปลี่ยน path ได้.

natthasath/natthasath-marketplace · 102 tokens

parse-integration

Extract structured data from documents (invoices, receipts, purchase orders, bills of lading, bank statements, contracts, forms, ID documents, scans, photos of paper) with Parse by Conversion Tools, and build a production integration against its API. Covers getting an API key, defining an extraction schema, submitting…

conversiontools/agent-skills · 134 tokens

knowledge

สร้าง Knowledge Note สำหรับบันทึกใน Capacities พร้อม frontmatter และ sections ที่เป็นระบบ ใช้ skill นี้ทันทีเมื่อผู้ใช้ต้องการบันทึกความหมาย คำนิยาม หรือ knowledge ของคำศัพท์ หัวข้อ หรือแนวคิดใดๆ เช่น "อธิบาย Bay Plan", "บันทึกความรู้เรื่อง TCP/IP", "สร้าง note สำหรับ Kubernetes", "knowledge เรื่อง Load Balancer"…

natthasath/natthasath-marketplace · 122 tokens