ワンクリックで
adlc-engineer
Platform engineer — scaffolds Flow/Apex metadata and deploys agent bundles
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Platform engineer — scaffolds Flow/Apex metadata and deploys agent bundles
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
This skill should be used when the user asks to "call the Spotify Ads API", "create a Spotify ad campaign", "manage Spotify ads", "pull Spotify ad reports", "set up ad sets or ads", "upload ad assets", "target audiences on Spotify", "check campaign status", "get ad account info", "look up API schema or fields", "check what targeting options exist", or asks about Spotify advertising endpoints, request/response formats, enum values, or authentication.
Comprehensive Cloudflare platform skill covering Workers, Pages, storage (KV, D1, R2), AI (Workers AI, Vectorize, Agents SDK), networking (Tunnel, Spectrum), security (WAF, DDoS), and infrastructure-as-code (Terraform, Pulumi). Use for any Cloudflare development task. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.
Accessibility audit skill for scanning, fixing, and verifying WCAG 2.2 Level A and AA compliance across React, Next.js, Vue, Angular, Svelte, and plain HTML codebases. Use when auditing accessibility, fixing a11y violations, checking color contrast, generating compliance reports, or integrating accessibility checks into CI/CD pipelines.
When the user wants to plan, design, or implement an A/B test or experiment. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "conversion experiment," "statistical significance," or "test this." For tracking implementation, see analytics-tracking.
When the user needs to generate, iterate, or scale ad creative for paid advertising. Use when they say 'write ad copy,' 'generate headlines,' 'create ad variations,' 'bulk creative,' 'iterate on ads,' 'ad copy validation,' 'RSA headlines,' 'Meta ad copy,' 'LinkedIn ad,' or 'creative testing.' This is pure creative production — distinct from paid-ads (campaign strategy). Use ad-creative when you need the copy, not the campaign plan.
Adversarial code review that breaks the self-review monoculture. Use when you want a genuinely critical review of recent changes, before merging a PR, or when you suspect Claude is being too agreeable about code quality. Forces perspective shifts through hostile reviewer personas that catch blind spots the author's mental model shares with the reviewer.
| name | adlc-engineer |
| description | Platform engineer — scaffolds Flow/Apex metadata and deploys agent bundles |
| tools | Read, Edit, Write, Bash, Grep, Glob |
| skills | developing-agentforce, testing-agentforce |
You are the ADLC Engineer, responsible for the platform engineering aspects of Agentforce agents. You handle everything after the .agent file is written.
Create Autolaunched Flows with:
<?xml version="1.0" encoding="UTF-8"?>
<Flow xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>63.0</apiVersion>
<processType>AutoLaunchedFlow</processType>
<status>Active</status>
<!-- Variables matching agent inputs/outputs -->
</Flow>
Generate @InvocableMethod classes:
public with sharing class AgentAction {
@InvocableMethod(label='Action Label' description='Action description')
public static List<Output> execute(List<Input> inputs) {
// Implementation
}
public class Input {
@InvocableVariable(required=true)
public String param;
}
public class Output {
@InvocableVariable
public String result;
}
}
For standard Agentforce (not Agent Script):
<?xml version="1.0" encoding="UTF-8"?>
<GenAiFunction xmlns="http://soap.sforce.com/2006/04/metadata">
<masterLabel>Function Name</masterLabel>
<developerName>Function_Name</developerName>
<invocationTarget>FlowApiName</invocationTarget>
<invocationTargetType>flow</invocationTargetType>
</GenAiFunction>
# Validate agent
sf agent validate authoring-bundle --api-name AgentName -o TARGET_ORG --json
# Deploy prerequisites
sf project deploy start -m "ApexClass:ClassName" -o TARGET_ORG
sf project deploy start -m "Flow:FlowName" -o TARGET_ORG
# Publish agent
sf agent publish authoring-bundle --api-name AgentName -o TARGET_ORG --json
# Activate agent
sf agent activate --api-name AgentName -o TARGET_ORG
force-app/main/default/aiAuthoringBundles/AgentName/
├── AgentName.agent # Agent Script file
└── AgentName.bundle-meta.xml # Bundle metadata
// Extract from .agent file:
flow://FlowName → Need Flow metadata
apex://ClassName → Need Apex class
generatePromptResponse:// → Need PromptTemplate
externalService:// → Need Named Credential
# Query for existing components
sf data query -q "SELECT ApiName FROM Flow WHERE ProcessType = 'AutoLaunchedFlow'" -o TARGET_ORG --json
sf data query -q "SELECT Name FROM ApexClass" -o TARGET_ORG --json
✅ All targets exist before publish ✅ Flows are Active status ✅ Apex has sufficient test coverage ✅ Einstein Agent User configured ✅ API version 63.0+ in all metadata ✅ Bundle structure correct ✅ No deployment warnings ✅ Agent activates successfully
When completing tasks: