forcedotcom/sf-skills

automation-sandbox-post-copy-config-generate

Generate the JSON config file that the Salesforce sandbox post-copy automation tool consumes, from a customer SOP in any format (PDF, xlsx, csv, JSON, docx, Markdown, plain text, or a screenshot of an endpoint table).

查看源码
仓库原始内容

按源仓库内容呈现,保留标题、案例、代码、表格、链接以及原文引用的演示图片。

Automation: Sandbox Post-Copy Config Generate

Convert a customer's sandbox-refresh / post-copy SOP into a structured JSON array that the post-copy automation tool consumes. Each entry is a declarative instruction: which Salesforce configuration to update, which fields are involved, whether it is active, and what order it runs in.

STOP — do this before writing any JSON

Do not compose the output from memory. Before you write the file, you MUST open and read assets/config_template.json and copy an entry from it for each action. Every output entry is exactly one of these two shapes — five top-level keys, no others, no wrapper object:

json
[
  {
    "ConfigurationName": "OutboundMessages",
    "Label": "IR_Account_OBM_PROD",
    "Fields": { "EndpointUrl": "https://uat.example.com/services/account", "Object": "Account" },
    "IsActive": true,
    "ExecutionOrder": 1
  },
  {
    "ConfigurationName": "RemoteSiteSettings",
    "Label": "R12_Remote_Site",
    "Fields": { "RemoteSiteUrl": "https://uat.example.com" },
    "IsActive": true,
    "ExecutionOrder": 2
  }
]
  • ConfigurationName: exactly OutboundMessages or RemoteSiteSettings — never Type, Name, or Operation.
  • OBM Fields: EndpointUrl + Object (both required). RemoteSite Fields: RemoteSiteUrl only — never Url/RemoteSiteURL.
  • Top level is a JSON array. No steps/actions/records wrapper. No <…> or REPLACE_WITH_… placeholder ever survives into the output.

If you announce "I will now write …" without having read the template and catalog, stop and read them first — a from-memory guess produces the wrong keys and fails at runtime.

Scope

  • In scope: Reading a customer SOP in any of the supported formats

(PDF, xlsx, csv, JSON, docx, Markdown, plain text, pasted excerpt, or images containing data tables — e.g., a screenshot of an Outbound Messages list with endpoint URLs), identifying post-copy / post-refresh actions, mapping each action to a supported ConfigurationName, emitting the canonical JSON array.

  • Out of scope: Generating Salesforce metadata XML (delegate to

generating-* skills), deploying anything to an org, running the post-copy tool, inferring or fabricating values not present in the SOP — if the SOP does not give a concrete URL/value for an action, skip the action.

Every emitted entry must have every Field populated with a real value from the customer source. No empty strings, no null, no <from-backup> / TBD / TODO placeholders. Customers should never see an unpopulated field in the output — if a value cannot be located, skip the entry and surface it. See the corresponding rule below.


Required Inputs

Gather or infer before generating:

  • SOP source(s): One or more paths (or pasted content) in any of:

PDF, xlsx, csv, JSON, docx, Markdown, plain text, or images (.png/.jpg/.jpeg/.tiff/.bmp). Multiple files are common — the action list and the endpoint table sometimes live in different files. Read every file the user supplies.

  • Target output path: Where the JSON config should be written. Default

to post-copy-config.json in the current directory unless specified.

  • Scope filter (optional): If the SOP covers many environments

(e.g., fcQA, fcUAT, multiple sandboxes), confirm which subset the user wants in the output.

If the user provides a clear SOP and target, generate immediately without asking unnecessary questions.


Workflow

All steps are sequential. Steps 1–5 (reading the SOP, the catalog, the template, and the schema) are prerequisites to writing — you may not skip to the write step. If you catch yourself about to emit JSON without having read assets/config_template.json and references/configuration_catalog.md, go back and read them first.

  1. Locate and read every supplied SOP source — read

references/source_format_handling.md for the exact extraction recipe per format (PDF, xlsx, csv, JSON, docx, image). At a glance:

  • PDF: extract text with pypdf (text layer) and OCR

image-based pages with pytesseract if the text layer is empty.

  • xlsx: read every sheet with openpyxl (data_only=True),

scan all columns including ones outside the visible default range, check cell comments and embedded media.

  • csv / JSON / Markdown / text: read directly.
  • docx: extract paragraphs and tables with python-docx.
  • Images (.png/.jpg/...): use the Read tool to view, then

decide if the image carries data (a table of endpoint URLs, a setup screenshot showing values to capture) or is purely illustrative (architecture diagram, flow chart). Extract values only from data-bearing images. See the image-handling rules in references/source_format_handling.md.

  • For very large SOPs (>50 pages / >20 sheets), focus on sections

or sheets titled "Post Refresh", "Post-Copy", "Post-Refresh Steps", "Update …", or equivalent.

  1. Identify post-copy actions — read

references/sop_parsing_patterns.md for the heuristics that turn prose instructions ("Update Outbound Message endpoint X to URL Y") into structured action records.

  1. Map each action to a `ConfigurationName` — load

references/configuration_catalog.md. The catalog currently supports only OutboundMessages and RemoteSiteSettings. Any action that targets a different configuration type is out of scope: skip it and list it in the response so the user can extend the catalog later.

  1. Read the JSON template — load assets/config_template.json. It

shows the exact required shape of one OutboundMessages entry and one RemoteSiteSettings entry, with <…> placeholder slots. Copy an entry, replace every <…> slot with the concrete SOP value, and keep the exact top-level keys (ConfigurationName, Label, Fields, IsActive, ExecutionOrder) — never rename them to Type, Name, Operation, etc. Never emit an entry that still contains a <…> placeholder; if you cannot fill a slot, skip the entry (see Rules).

  1. Validate against the schema — load assets/json_schema.json. Every

entry must conform: ConfigurationName is one of the catalog values, Fields is an object, IsActive is boolean, ExecutionOrder is a positive integer.

  1. Group entries by phase, then assign `ExecutionOrder`

ExecutionOrder is a phase number, not a per-row counter. Entries that can run in parallel (no dependency between them) share the same value. Different ConfigurationName types typically get different phases; all entries within one phase share its number. See the ordering heuristic in references/sop_parsing_patterns.md.

  1. Compare against the example — verify the output shape against

examples/sample_sop_to_config.json before writing.

  1. Write the JSON file — emit pretty-printed JSON (2-space indent).

Rules / Constraints

ConstraintRationale
Output is a JSON array at the top level (not an object with a wrapper key)The post-copy tool consumes an array directly
Every entry has all five required keys: ConfigurationName, Label, Fields, IsActive, ExecutionOrderThe tool fails fast on missing keys; partial entries are not silently accepted
ConfigurationName is one of the catalog valuesUnknown values cause the runtime mapper to error out — never invent a new type without updating the catalog
Fields keys are the actual API field names on the target metadataWrong key names mean the tool can't locate the field at runtime
Fields values are the concrete values from the SOP (literal URLs, names, etc.)The post-copy tool applies the value as-is; placeholders are not resolved at runtime
If the SOP names an action but no concrete value (URL, etc.) is provided, skip the entry entirely and list it in the responseGenerating an entry without a real value would produce a silent no-op or a deployment error at runtime
Every Field in every emitted entry must be a real value sourced from the customer's SOP or a supplemental sheet they provided. Never emit "", null, or placeholder markers like <from-backup> / TBD / TODOCustomers consume the JSON directly — empty / placeholder fields surface to them as broken output and would also fail at runtime
Before skipping an OBM / RemoteSite for missing values, search every tab / sheet of the supplied workbook (and every supplied file) for an endpoint table keyed by that nameCustomer SOPs frequently split the action list and the URL table across different sheets (e.g., the Michelin UAT Refresh Planner lists OBMs in the Integration tab but the URL table lives in the Evolution SFA tab)
Information already captured by another field is not repeated in Fields (e.g., RemoteSiteName lives in Label, IsActive lives at the top level — neither belongs in Fields)Duplicate keys make the entry ambiguous and waste bytes the tool then has to reconcile
For OutboundMessages, Fields MUST include both EndpointUrl and Object (the target SObject — Account, Contact, Asset, Lead, etc.)Same Label can apply to multiple OBMs differing only by entity; Object disambiguates them at runtime
For RemoteSiteSettings, the URL key MUST be spelled exactly RemoteSiteUrl — never Url, RemoteSiteURL, SiteUrl, or EndpointUrlThe post-copy tool matches the field by exact API name; any other spelling means it can't locate the field and the entry silently no-ops at runtime
ExecutionOrder is a phase number — entries with no dependency on each other share the same valueThe post-copy tool runs all entries with the same ExecutionOrder in parallel; sequencing is only needed where one action depends on another
IsActive: false entries remain in the output (do not delete them)The customer toggles them on per-environment; deleting loses traceability
Default IsActive to true when the SOP marks an action as requiredMost SOP steps are required; explicit opt-out is the exception

Canonical entry shape

See the entry shapes shown in the STOP section above, or copy directly from assets/config_template.json. Do not rename the five top-level keys (ConfigurationName, Label, Fields, IsActive, ExecutionOrder) to Type, Name, Operation, apiName, etc., and do not wrap the array in an object with a steps / actions / records key.


Gotchas

IssueResolution
SOP step says "delete all endpoints" rather than "update X to Y"Emit an entry with ConfigurationName: "OutboundMessages", Label describing the deletion target, and a note in Fields ({"Action": "Delete"}); the catalog documents the Delete pattern
Same Label appears for multiple environments (fcQA + fcUAT)Emit one entry per environment; suffix the Label or use the environment-specific Label as it appears in the SOP
For OutboundMessages, the same Label can legitimately apply to multiple entries when each targets a different Object (e.g., one OBM for Account, one for Contact).Do not collapse them — emit one entry per Object. The Object value (inferred from the OBM name like IR_Account_OBM_PRODAccount) is what distinguishes them, not the Label.
SOP groups many Custom Labels together in a single tableOne entry per row of the table — do not collapse into a single bulk entry
Action targets a setting outside the catalog (CustomLabels, ConnectedApps, NamedCredentials, SSO, CustomSettings, etc.)Skip the action, do NOT invent a new ConfigurationName; list every skipped action in the response so the user knows what to add to the catalog later
SOP includes pre-refresh steps interleaved with post-refreshFilter out pre-refresh — only post-refresh / post-copy actions belong in the output
SOP names an outbound message / remote site to update but does not include the new URLSkip the entry. List the skipped item in the response so the user can supply the URL or amend the SOP
SOP includes secrets in URLs (e.g., https://USER:TOKEN@host/...)Embed them verbatim — the tool consumes the value as-is — but flag in the response so the user is aware the JSON now contains a secret and should be stored / shared accordingly
User's SOP is in a non-English language or has heavy formatting (tables, callouts)Extract the prose first, normalize whitespace, then parse — formatting artifacts do not need to survive into the JSON
The SOP includes screenshots / images. Some are illustrative (architecture diagrams, flow charts, "this is what the setup screen looks like" examples); others are data-bearing (a screenshot of a real Outbound Messages list, a captured Remote Site table).Treat illustrative images as out-of-scope — do NOT extract values from them. For data-bearing images (the surrounding text refers to "the values shown below" / "as captured in the screenshot above" / a real Endpoint URL is visible), OCR them and use the values. See references/source_format_handling.md for the heuristic.
The SOP is supplied as multiple files (e.g., a PDF + a companion xlsx + a screenshot folder), or values are split across tabs / pagesRead every supplied file end-to-end before skipping any entry. The action list and the URL table are frequently in different files — see the rule above about multi-sheet sources.

Output Expectations

Deliverables:

  • A single JSON file (default post-copy-config.json) containing a

top-level array of post-copy action entries.

  • A short summary in your response listing: total entries, count per

ConfigurationName, actions skipped because they did not map to the catalog, and actions skipped because the SOP did not include a concrete value.

The output file structure conforms to assets/json_schema.json.


Cross-Skill Integration

NeedDelegate to
Generate the actual Salesforce metadata XML for a Custom Label / Named Credential / Remote Site / etc.The matching generating-* skill
Deploy generated metadata or run the post-copy tool against an orgdeploying-metadata skill
Compare an SOP against entities defined in UDDudd:research-entities

Reference File Index

FileWhen to read
assets/config_template.jsonStep 4 — starting structure for the JSON output
assets/json_schema.jsonStep 5 — validate every emitted entry
references/configuration_catalog.mdStep 3 — to map an SOP action to a ConfigurationName and get the canonical Field keys
references/sop_parsing_patterns.mdStep 2 and step 6 — heuristics for extracting actions from prose and ordering them
references/source_format_handling.mdStep 1 — exact extraction recipe per input format (PDF / xlsx / csv / JSON / docx / image) and the data-bearing-vs-illustrative image heuristic
examples/sample_sop_to_config.jsonStep 7 — verify output shape matches expected format
examples/sample_sop_excerpt.mdStep 7 — see a representative SOP excerpt that produced the sample JSON
来自同一仓库

更多 Skills

全部 Skills
forcedotcom
社区

agentforce-d360-analyze

Data Cloud 360° view of a single Agentforce session. TRIGGER when user asks to trace, inspect, summarize, or describe a specific Agentforce session by session id (Agent Session UUID 019d… or MessagingSession id 0Mw…). Also triggers on session discovery — find/list/search sessions by time, agent, channel, outcome, or conversation text — when the user has no session id yet. DO NOT TRIGGER for design-time architecture questions (use agentforce-architecture-analyze instead) or for runtime perf/latency/SLO questions that require platform telemetry beyond Data Cloud.

安装量
1
GitHub Stars
972
最近更新
9月7日
forcedotcom
社区

agentforce-generate

Build, modify, audit, repair, optimize, debug, and deploy agents with Agentforce Agent Script. TRIGGER when: user creates, reviews, or changes .agent files or aiAuthoringBundle metadata; asks to fix AgentScript, audit an existing agent, run an AgentScript health check, common-pitfall review, or baseline-versus-candidate repair loop; changes a response, action, subagent, route, state flow, or Agent Spec; previews, debugs, deploys, publishes, or tests agents; uses sf agent generate/preview/publish/test; or manages Agentforce MCP servers, tools, assets, or authentication. DO NOT TRIGGER when: Apex, Flow, Prompt Template, Experience Cloud, or general Salesforce CLI work is unrelated to Agent Script; or the primary input is a production session or trace ID rather than an agent artifact.

安装量
1
GitHub Stars
972
最近更新
9月7日
forcedotcom
社区

platform-quick-deploy

Deploy validated metadata to a Production Salesforce org without re-running tests. TRIGGER when the user wants to deploy to production, says 'quick deploy', 'promote', 'ship to prod', or has just validated and wants to push the change live. REQUIRES a recent sf project deploy validate job ID (≤10 days old, ≤3 days for --use-most-recent). DO NOT TRIGGER for sandbox/scratch deploys (use platform-metadata-deploy) or unvalidated deploys (use platform-deploy-validate first).

安装量
1
GitHub Stars
972
最近更新
9月7日
forcedotcom
社区

agentforce-test

Write, run, and analyze structured test suites for Agentforce agents — functional AND security. TRIGGER when: user writes or modifies test spec YAML (AiEvaluationDefinition); runs sf agent test create, run, run-eval, or results commands; asks about test coverage strategy, metric selection, or custom evaluations; interprets test results or diagnoses test failures; asks about batch testing, regression suites, or CI/CD test integration; requests security testing, OWASP LLM Top 10, red-teaming, penetration testing, prompt-injection tests, a security grade, or a vulnerability assessment of an agent. DO NOT TRIGGER when: user creates, modifies, previews, or debugs .agent files (use agentforce-generate); deploys or publishes agents; writes Agent Script code; uses sf agent preview for development iteration; analyzes production session traces (use agentforce-observe); performs a static safety review of .agent file content (use agentforce-generate Section 15).

安装量
3
GitHub Stars
972
最近更新
9月7日