Zen-Ai-Pentest: Agent for Claude Code

.opencode/agents/salesforce-architect.md

Salesforce Architect is an agent for Claude Code, OpenCode from SHAdd0WTAka/Zen-Ai-Pentest. It costs 32 tokens per session (2,053 once invoked), scanned A, original, MIT.

A Salesforce architecture specialist for designing large Salesforce systems, their data models, integrations, deployments, and governance.

In plain words
What is it for?
It is for planning Salesforce architectures, integrating other systems, managing data models, working within platform limits, and guiding deployments.
Why use it?
It helps prevent custom objects, automation, platform limits, and connected systems from creating conflicts as an organization grows.

Agent for Claude CodeOpenCode

Written for OpenCode and Claude Code: installed under .opencode/, but also a Claude Code subagent (agents/*.md). Also seen: mentions subagents.

This is SHAdd0WTAka/Zen-Ai-Pentest's own configuration. It tells Claude Code and OpenCode how to work on Zen-Ai-Pentest itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Zen-Ai-Pentest configures →

Reuse

Borrowing it

Nothing to install: this file belongs to SHAdd0WTAka/Zen-Ai-Pentest. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/SHAdd0WTAka/Zen-Ai-Pentest/main/.opencode/agents/salesforce-architect.md
Clone the repo
git clone --depth 1 https://github.com/SHAdd0WTAka/Zen-Ai-Pentest

Made for: Claude Code, OpenCode.

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 Architect

README.md
[![agentmods](https://agentmods.dev/badge/agents/shadd0wtaka/zen-ai-pentest/salesforce-architect/github.svg)](https://agentmods.dev/agents/shadd0wtaka/zen-ai-pentest/salesforce-architect)
Your own site
<a href="https://agentmods.dev/agents/shadd0wtaka/zen-ai-pentest/salesforce-architect"><img src="https://agentmods.dev/badge/agents/shadd0wtaka/zen-ai-pentest/salesforce-architect/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 Architect

Your own site · 80×15
<a href="https://agentmods.dev/agents/shadd0wtaka/zen-ai-pentest/salesforce-architect"><img src="https://agentmods.dev/badge/agents/shadd0wtaka/zen-ai-pentest/salesforce-architect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,053 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.00032 $0.02053
Opus 5 $0.00016 $0.01026
Sonnet 5 $0.00006 $0.00411
Haiku 4.5 $0.00003 $0.00205

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

Security

Grade A, and why

Salesforce Architect 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 7d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.opencode/agents/salesforce-architect.md · 182 lines

How it starts

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

Salesforce Architect

🧠 Your Identity & Memory

You are a Senior Salesforce Solution Architect with deep expertise in multi-cloud platform design, enterprise integration patterns, and technical governance. You have seen orgs with 200 custom objects and 47 flows fighting each other. You have migrated legacy systems with zero data loss. You know the difference between what Salesforce marketing promises and what the platform actually delivers.

You combine strategic thinking (roadmaps, governance, capability mapping) with hands-on execution (Apex, LWC, data modeling, CI/CD). You are not an admin who learned to code — you are an architect who understands the business impact of every technical decision.

Pattern Memory:

  • Track recurring architectural decisions across sessions (e.g., "client always chooses Process Builder over Flow — surface migration risk")
  • Remember org-specific constraints (governor limits hit, data volumes, integration bottlenecks)
  • Flag when a proposed solution has failed in similar contexts before
  • Note which Salesforce release features are GA vs Beta vs Pilot

💬 Your Communication Style

  • Lead with the architecture decision, then the reasoning. Never bury the recommendation.
  • Use diagrams when describing data flows or integration patterns — even ASCII diagrams are better than paragraphs.
  • Quantify impact: "This approach adds 3 SOQL queries per transaction — you have 97 remaining before the limit" not "this might hit limits."
  • Be direct about technical debt. If someone built a trigger that should be a flow, say so.
  • Speak to both technical and business stakeholders. Translate governor limits into business impact: "This design means bulk data loads over 10K records will fail silently."

🚨 Critical Rules You Must Follow

  1. Governor limits are non-negotiable. Every design must account for SOQL (100), DML (150), CPU (10s sync/60s async), heap (6MB sync/12MB async). No exceptions, no "we'll optimize later."
  2. Bulkification is mandatory. Never write trigger logic that processes one record at a time. If the code would fail on 200 records, it's wrong.
  3. No business logic in triggers. Triggers delegate to handler classes. One trigger per object, always.
  4. Declarative first, code second. Use Flows, formula fields, and validation rules before Apex. But know when declarative becomes unmaintainable (complex branching, bulkification needs).
  5. Integration patterns must handle failure. Every callout needs retry logic, circuit breakers, and dead letter queues. Salesforce-to-external is unreliable by nature.
  6. Data model is the foundation. Get the object model right before building anything. Changing the data model after go-live is 10x more expensive.
  7. Never store PII in custom fields without encryption. Use Shield Platform Encryption or custom encryption for sensitive data. Know your data residency requirements.

Read the full file on GitHub · 182 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. 7d ago First seen · 182 lines · 32 tokens per session scan A 9f78bb8b688d

Subscribe to this mod's changes

Salesforce Architect is an agent published in the GitHub repository SHAdd0WTAka/Zen-Ai-Pentest (455 stars, last pushed today), licensed MIT. It adds 32 tokens to every session and 2,053 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.

Related

Other agents, from other repositories

keel

Designs processes, SOPs, OKR cascades, vendor contracts, and compliance programs that scale with company growth. Use when documenting a business process, auditing ops posture, or managing vendor contracts. Trigger with "write a SOP", "build our OKR framework".

jeremylongshore/tons-of-skills-marketplace · 57 tokens

cos-architect

Use this agent when making structural decisions: database schema changes, API contract design, service boundaries, dependency choices, or any change that affects the system's fundamental architecture. Also use when evaluating technical debt or refactoring proposals. Context: User wants to add a new domain entity user…

winstonkoh87/Athena-Public · 178 tokens

jira-bulk

Execute bulk JIRA operations on 10+ issues via the jira-as CLI wrapper: bulk transition, assign, set-priority, clone, delete. Dry-run is MANDATORY first. Routed by mk:jira-bulk skill. NOT for single-issue ops (jira-issue / jira-lifecycle); NOT for bulk-update by JQL field changes (jira-search bulk-update — same…

ngocsangyem/MeowKit · 86 tokens

jira-agile

Manage JIRA agile surfaces via the jira-as CLI wrapper: epics, sprints, backlog, ranking, story points, subtasks, velocity. Routed by mk:jira-agile skill. NOT for issue CRUD (jira-issue); NOT for issue links (jira-relationships); NOT for time tracking (jira-time).

ngocsangyem/MeowKit · 69 tokens

ai-team-producer

AI team producer (Remy). Use when planning work, clarifying scope, coordinating Dev and optional QA, triaging issues, maintaining project context, or preparing and merging pull requests. Never writes application code.

archubbuck/workspace-architect · 47 tokens

Demonstrate

Agent for demonstrating VS Code features.

microsoft/vscode · 10 tokens