salesforce

salesforce is a skill for Claude Code, Codex from HybridAIOne/hybridclaw. It costs 42 tokens per session (1,797 once invoked), scanned A, original, MIT.

A Salesforce CRM skill for finding and updating customer records, inspecting the CRM's data structure, and recording sales activities. Salesforce is a system businesses use to manage leads, contacts, deals, and customer interactions.

In plain words
What is it for?
Use it to find leads, contacts, and opportunities, query CRM data, inspect fields and relationships, update deal stages or probabilities, and log calls, emails, or meetings.
Why use it?
It reduces manual CRM work and helps ensure updates and activity notes are attached to the correct records.

Skill for Claude CodeCodex

Written for Claude Code and Codex: user-invocable in frontmatter, but also agents/openai.yaml present.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 skills/skill-creator/scripts/quick_validate.py skills/salesforce.

Good fit Use it to find leads, contacts, and opportunities, query CRM data, inspect fields and relationships, update deal stages or probabilities, and log calls, emails, or meetings.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/HybridAIOne/hybridclaw
agentmods
npx agentmods add skills/hybridaione/hybridclaw/salesforce

Made for: Claude Code, Codex.

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 salesforce

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/hybridaione/hybridclaw/salesforce"><img src="https://agentmods.dev/badge/skills/hybridaione/hybridclaw/salesforce.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,797 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00042 $0.01797
Opus 5 $0.00021 $0.00898
Sonnet 5 $0.00008 $0.00359
Haiku 4.5 $0.00004 $0.00180

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

Security

Grade A, and why

salesforce 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 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/salesforce_query.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/salesforce/SKILL.md · 207 lines

How it starts

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

Salesforce

Use this skill for Salesforce CRM work from an org you can access with stored OAuth credentials.

Scope

  • global object discovery
  • object describe / DDL-style metadata inspection
  • relationship discovery for lookup, master-detail, and child links
  • SOQL row queries
  • Tooling API metadata queries
  • lead, contact, and opportunity lookup
  • opportunity stage/probability updates
  • activity logging for calls, emails, and meetings on the right CRM record
  • opinionated natural-language commands for common CRM workflows
  • credential setup guidance using HybridClaw stored secrets

Default Workflow

  1. Start with read/plan commands. Do not mutate CRM state unless the user explicitly asks.
  2. Run the bundled helper directly via bash in the current session:
    python3 skills/salesforce/scripts/salesforce_query.py ...
    
  3. Use plan for natural-language requests when you need to inspect the API actions before execution.
  4. Use run for supported opinionated workflows, for example "Move the Acme deal to Closed Won and log a call from today".
  5. Use find leads|contacts|opportunities for business-row reads before a write target is ambiguous.
  6. Use objects, describe, or relations before writing SOQL against an unfamiliar object.
  7. Use query for row reads. Add a SOQL LIMIT unless the user explicitly needs a larger fetch.
  8. Use tooling-query for metadata objects such as CustomObject, FieldDefinition, ApexClass, and flow metadata.
  9. If login fails, confirm that SF_FULL_PASSWORD already includes any required Salesforce security token.

Secret Refs

The helper routes all HTTP traffic through the HybridClaw gateway proxy. OAuth credentials are sent as <secret:NAME> placeholders that the gateway resolves server-side — real secret values never enter the Python process or the agent context.

Required stored secrets:

  • SF_FULL_USERNAME
  • SF_FULL_PASSWORD
  • SF_FULL_CLIENTID
  • SF_FULL_SECRET
  • SF_DOMAINlogin for production, test for sandbox

Read the full file on GitHub · 207 lines

Files

What ships with it

4 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. 8d ago First seen · 207 lines · 42 tokens per session scan A e14f928ed88c

Subscribe to this mod's changes

salesforce is a skill published in the GitHub repository HybridAIOne/hybridclaw (132 stars, last pushed yesterday), licensed MIT. It adds 42 tokens to every session and 1,797 once invoked, about $0.0002 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-09-03.