mirror of
https://github.com/forcedotcom/afv-library.git
synced 2026-07-30 19:50:42 +08:00
feat: replace agentforce-development skill with three specialized skills Replace the monolithic agentforce-development skill with three focused skills: - developing-agentforce: For creating and authoring Agentforce agents - observing-agentforce: For monitoring and debugging agents - testing-agentforce: For validating agent behavior Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
2.3 KiB
2.3 KiB
Minimal Working Examples
Complete, deployable agent examples with single topics, actions, and conditional logic.
Hello-World Agent Script
A complete, deployable agent with one topic, one action, and conditional logic:
system:
messages:
welcome: "Hello! How can I help you today?"
error: "Sorry, something went wrong."
instructions: "You are a helpful customer service agent."
config:
developer_name: "simple_agent"
description: "A minimal working agent example"
agent_type: "AgentforceServiceAgent"
default_agent_user: "agent_user@yourorg.com"
variables:
customer_verified: mutable boolean = False
start_agent entry:
description: "Entry point for all conversations"
reasoning:
instructions: |
Greet the customer and route to the main topic.
actions:
go_main: @utils.transition to @topic.main
description: "Navigate to main conversation"
topic main:
description: "Main conversation handler"
reasoning:
instructions: ->
if @variables.customer_verified == True:
| You are speaking with a verified customer.
| Help them with their request.
else:
| Please verify the customer's identity first.
actions:
verify: @actions.verify_customer
description: "Verify customer identity"
set @variables.customer_verified = @outputs.verified
actions:
verify_customer: apex://VerifyCustomerAction
description: "Verify customer identity"
inputs:
customer_id: string
label: "Customer ID"
outputs:
verified: boolean
label: "Verified"
Key Points
configblock:developer_namemust match the folder name (case-sensitive)default_agent_user: Must be a valid Einstein Agent User in the target org — query withsf data queryinstructions: ->: Procedural mode enablesif/elseandrundirectivesinstructions: |: Literal mode for static text passed to the LLMset @variables.X = @outputs.Y: Captures action output into mutable state@utils.transition: Permanent handoff (does not return to calling topic)