tsmztech
01Plugin Claude Code
Plugin marketplace listing 3 plugins: salesforce-cli, salesforce-dev, claude-craft.
Plugin Claude Code
Plugin marketplace listing 3 plugins: salesforce-cli, salesforce-dev, claude-craft.
Plugin Claude Code
Scaffolds Claude Code skills, commands, sub-agents, and hooks with best-practice templates, and keeps reference documentation synced with the latest Claude Code release.
Command
Check if claude-craft reference docs are up to date by comparing the fetched version against installed and latest available Claude Code versions.
Command
Fetch and clean latest Claude Code documentation into local reference docs.
Skill Claude CodeCodex
Create a new Claude Code slash command. Commands are single markdown files in .claude/commands/. For the newer skills format (directory with SKILL.md and supporting files), use create-skill instead.
Skill Claude CodeCodex
Create a new Claude Code hook that runs shell commands at specific lifecycle points — formatting after edits, blocking commands, notifications, context injection, and more. Hooks are added to settings.json files.
Skill Claude CodeCodex
Create a new Claude Code skill with proper SKILL.md structure, frontmatter, and file placement.
Skill Claude CodeCodex
Create a new Claude Code sub-agent with proper markdown structure, frontmatter, and file placement.
Plugin Claude Code
Salesforce-specific skills, agents, and workflows for Claude Code.
Command
Check Salesforce CLI prerequisites and org authentication status.
Skill Claude CodeCodex
Run SOQL aggregate queries against a Salesforce org. Supports aggregate functions (SUM, AVG, MIN, MAX, COUNT) with GROUP BY, GROUP BY ROLLUP, GROUP BY CUBE, HAVING, and date/time grouping functions (CALENDARYEAR, CALENDARMONTH, etc). Use when the user wants to summarize, total, average, or group Salesforce data.…
Skill Claude CodeCodex
Execute Anonymous Apex code against a Salesforce org. Use when the user wants to run Apex scripts, execute one-off operations, test Apex logic, manipulate data via Apex, or run admin scripts. Claude constructs the Apex code based on user intent. Examples: 'run anonymous apex', 'execute apex', 'run this apex code'…
Skill Claude CodeCodex
Bulk insert, upsert, or update records in a Salesforce org from a CSV file. Supports bulk insert (create new records), bulk upsert (insert-or-update using an external ID field), and bulk update (modify existing records by Id column). Uses the Salesforce Bulk API v2 via sf CLI for efficient large-scale data operations.…
Skill Claude CodeCodex
Generate on-demand Salesforce dashboards as static HTML pages with interactive charts, graphs, and data tables. Uses Chart.js (CDN, no installation) for bar, line, pie, doughnut, radar, and scatter visualizations. ALWAYS invoke this skill when the user wants to create a dashboard, generate charts from Salesforce data…
Skill Claude CodeCodex
Export Salesforce data to a local CSV or JSON file. Runs a SOQL query and saves the results to disk. Supports automatic pagination for complete exports and Bulk API 2.0 for very large datasets (100k+ records). CSV files open directly in Excel and Google Sheets. Examples: 'export accounts to CSV', 'save contacts to a…
Skill Claude CodeCodex
Run SOQL (Salesforce Object Query Language) queries against a Salesforce org. Supports standard SELECT queries, child-to-parent dot notation (Contact.Account.Name), parent-to-child subqueries (SELECT Id, (SELECT Id FROM Contacts) FROM Account), COUNT queries, and all SOQL clauses including WHERE, ORDER BY, LIMIT…
Skill Claude CodeCodex
Manage Salesforce debug logs and trace flags. Set or remove trace flags for any user, list and retrieve debug logs, and analyze log content for performance issues and errors. Use when the user wants to enable debugging, check debug logs, troubleshoot issues, analyze governor limits, or investigate Apex execution.…
Skill Claude CodeCodex
Describe a Salesforce object's schema metadata including all fields, relationships, picklist values, and field properties. Use when the user wants to inspect an object's structure, list fields, check field types, or understand relationships between objects. Examples: 'describe Account', 'show me the Case fields'…
Skill Claude CodeCodex
Insert, update, and upsert single records in a Salesforce org using field=value pairs. Handles insert (create new records), update (modify existing records by Id), and upsert (insert-or-update using an external ID field). Does NOT support delete operations. For bulk operations from CSV files, use the…
Skill Claude CodeCodex
Search for Salesforce standard and custom objects by name pattern. Use when the user wants to find objects in their org, discover available objects, look up custom objects, or check if an object exists. Examples: 'search for Account', 'find objects related to Order', 'list custom objects matching Invoice', 'what…
Plugin Claude Code
Salesforce development specific skills, agents, and workflows for Claude Code.
Skill Claude CodeCodex
Apex and Salesforce code review specialist. ALWAYS invoke this skill when the user wants to code review, security audit, or quality check classes, triggers, or test classes in a Salesforce context. Do not review classes or triggers directly -- use this skill first, even if the user does not explicitly say 'Apex'.…
Skill Claude CodeCodex
Salesforce custom field creation specialist. ALWAYS invoke this skill when the user wants to add a custom field, create a field, or define a new field on a Salesforce object. Do not attempt to create custom fields or generate field metadata directly — use this skill first. Triggers: 'create field', 'add field', 'new…
Skill Claude CodeCodex
Salesforce custom object creation specialist. ALWAYS invoke this skill when the user wants to create a new custom object, define an sObject, or add a new entity to their Salesforce org. Do not attempt to create custom objects or generate object metadata directly — use this skill first. Triggers: 'create object', 'new…