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>
24 lines
808 B
XML
24 lines
808 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
AUTHORING BUNDLE METADATA FILE
|
|
==============================
|
|
|
|
CRITICAL NAMING CONVENTION:
|
|
- File MUST be named: AgentName.bundle-meta.xml
|
|
- NOT: AgentName.aiAuthoringBundle-meta.xml
|
|
|
|
DIRECTORY STRUCTURE:
|
|
force-app/main/default/aiAuthoringBundles/
|
|
└── MyAgent/
|
|
├── MyAgent.agent <- Agent Script file
|
|
└── MyAgent.bundle-meta.xml <- This file (rename to match agent)
|
|
|
|
DEPLOYMENT COMMAND:
|
|
sf agent publish authoring-bundle --json --api-name MyAgent --target-org TARGET_ORG
|
|
|
|
DO NOT USE: sf project deploy start (will fail with "Required fields are missing: [BundleType]")
|
|
-->
|
|
<AiAuthoringBundle xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
<bundleType>AGENT</bundleType>
|
|
</AiAuthoringBundle>
|