
from salesforce-claude-code8
Agent workflow to search for existing Salesforce tools, libraries, MCP servers, and packages before writing new code—helps decide whether to adopt, extend, or b
Search-First formalizes a research-first workflow for Salesforce development: before writing new Apex, LWC, or integration code, the agent performs targeted searches across npm, AppExchange, MCP servers, and GitHub to find existing solutions, assesses maintenance/license/fit, and recommends Adopt/Extend/Compose/Build. Concrete use case: evaluate whether a rollup summary, CI plugin, or managed package already exists before introducing custom code.
Use this skill prior to implementing new features or utilities—especially when the task might be solvable by an existing package, MCP server, or repository. Good for initial design, architecture decisions, CI tooling choices, and when a developer asks to "add X" and you need to know if a vetted solution already exists.
Designed for Claude Code and Cursor-style coding agents, plus general-purpose agent orchestrators that can run parallel searches and return structured recommendations.
A Salesforce-specific workflow skill that guides agents to search for existing tools (npm, AppExchange, MCP servers, GitHub) before writing custom code. Well-structured decision matrix and anti-patterns section, but no executable scripts—purely instructional SKILL.md. Useful for Salesforce developers but niche audience; the general 'search before you code' concept is broadly applicable but this implementation is tightly coupled to the Salesforce ecosystem.
No security concerns—skill contains no scripts, no network calls, no credentials. SKILL.md is well-written with clear triggers and decision matrix. Architecture is flat (single SKILL.md, no scripts/ or references/ directories), which is fine for an instructional-only skill. Code quality is decent but limited by being purely prose-based with no automation.
Salesforce Deployment Constraints
Enforce safe Salesforce deployments: validation-first workflow, test-coverage gates, dependency ordering, pre-deploy snapshots, and rollback readiness.
Sf Docs Lookup
Use when looking up official Salesforce documentation. Apex reference, LWC docs, platform guides, API references, and SF CLI commands via WebSearch.
SF Agentforce Development
Guides building Agentforce AI agents: agent script patterns, actions (Apex invocable), testing workflows, deployment and metadata best practices.