{"id":3131,"date":"2025-05-08T03:27:01","date_gmt":"2025-05-08T03:27:01","guid":{"rendered":"https:\/\/www.winklix.com\/blog\/?p=3131"},"modified":"2025-05-08T03:27:03","modified_gmt":"2025-05-08T03:27:03","slug":"supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org","status":"publish","type":"post","link":"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/","title":{"rendered":"Supercharge Your Service Console: Creating an Agentforce-Enabled Scratch Org"},"content":{"rendered":"\n<p>Ready to dive into the powerful world of <a href=\"https:\/\/www.winklix.com\/salesforce-consultant-india\">Salesforce Service Cloud <\/a>and its agent productivity tools? Want a clean, isolated environment to experiment with features like Omni-Channel, Service Cloud Voice, and more? Then you&#8217;ll need an Agentforce-enabled scratch org!<\/p>\n\n\n\n<p>For those unfamiliar, a scratch org is a temporary, disposable Salesforce environment that you can quickly spin up for development, testing, and experimentation. Enabling the &#8220;Agentforce&#8221; feature within a scratch org unlocks a suite of functionalities designed to empower your service agents.<\/p>\n\n\n\n<p>So, how do you create one of these magical environments? It&#8217;s simpler than you might think! Here&#8217;s your step-by-step guide:<\/p>\n\n\n\n<p><strong>Prerequisites:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Salesforce CLI (Command Line Interface) installed and configured:<\/strong>\u00a0If you haven&#8217;t already, head over to the Salesforce Developer documentation and get the CLI set up. It&#8217;s your key to interacting with Salesforce DX.<\/li>\n\n\n\n<li><strong>Dev Hub enabled in your production org:<\/strong>\u00a0Your Dev Hub is the central org you use to create and manage scratch orgs. Make sure it&#8217;s enabled.<\/li>\n\n\n\n<li><strong>Salesforce DX project:<\/strong>\u00a0You should have an existing Salesforce DX project. If not, you can easily create one using the CLI command:\u00a0<code>sfdx force:project:create --projectname MyServiceProject<\/code><\/li>\n<\/ul>\n\n\n\n<p><strong>Steps to Create Your Agentforce-Enabled Scratch Org:<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Define Your Scratch Org Configuration File:<\/strong>\u00a0This file, typically named\u00a0<code>project-scratch-def.json<\/code>\u00a0in your project&#8217;s config directory, tells Salesforce what features and settings you want in your scratch org. To enable Agentforce, you need to include the\u00a0<code>ServiceCloudVoice<\/code>\u00a0and\u00a0<code>Agentforce<\/code>\u00a0features.Open your\u00a0<code>project-scratch-def.json<\/code>\u00a0file (or create one if it doesn&#8217;t exist) and add the following:<\/li>\n<\/ol>\n\n\n\n<p>JSON<\/p>\n\n\n\n<p>{<br>&#8220;orgName&#8221;: &#8220;My Agentforce Scratch Org&#8221;,<br>&#8220;edition&#8221;: &#8220;Enterprise&#8221;,<br>&#8220;features&#8221;: [&#8220;ServiceCloudVoice&#8221;, &#8220;Agentforce&#8221;],<br>&#8220;settings&#8221;: {<br>&#8220;lightningExperienceSettings&#8221;: {<br>&#8220;enableS1DesktopEnabled&#8221;: true<br>},<br>&#8220;omniChannelSettings&#8221;: {<br>&#8220;enableOmniChannel&#8221;: true<br>}<br>\/\/ Add any other settings you need here<br>}<br>}<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><code>orgName<\/code><\/strong>: Give your scratch org a descriptive name.<\/li>\n\n\n\n<li><strong><code>edition<\/code><\/strong>: Enterprise Edition is generally recommended for Service Cloud features.<\/li>\n\n\n\n<li><strong><code>features<\/code><\/strong>: This is the crucial part! Including\u00a0<code>\"ServiceCloudVoice\"<\/code>\u00a0automatically pulls in the necessary dependencies for Agentforce.<\/li>\n\n\n\n<li><strong><code>settings<\/code><\/strong>: Here, we&#8217;ve enabled Lightning Experience and Omni-Channel, which are often used in conjunction with Agentforce. You can customize this section further based on your specific needs.<\/li>\n<\/ul>\n\n\n\n<p>2. <strong>Create the Scratch Org Using the CLI:<\/strong>\u00a0Now that you&#8217;ve defined your configuration, it&#8217;s time to bring your scratch org to life using the Salesforce CLI. Open your terminal or command prompt, navigate to your Salesforce DX project directory, and run the following command:<\/p>\n\n\n\n<p>Bash :<\/p>\n\n\n\n<p>sfdx force:org:create -f config\/project-scratch-def.json -s -d 30<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><code>sfdx force:org:create<\/code><\/strong>: This is the command to create a new scratch org.<\/li>\n\n\n\n<li><strong><code>-f config\/project-scratch-def.json<\/code><\/strong>: This specifies the configuration file you just created. Adjust the path if your file is located elsewhere.<\/li>\n\n\n\n<li><strong><code>-s<\/code><\/strong>: This sets the newly created scratch org as your default org, making it easier to deploy and interact with.<\/li>\n\n\n\n<li><strong><code>-d 30<\/code><\/strong>: This sets the duration of the scratch org to 30 days (the maximum). You can adjust this as needed.<\/li>\n<\/ul>\n\n\n\n<p><strong>3<\/strong>. <strong>Authorize Your Dev Hub (If Prompted):<\/strong>\u00a0If this is your first time creating a scratch org or if your Dev Hub authorization has expired, the CLI will prompt you to authorize it by opening a web browser. Follow the on-screen instructions to log in to your Dev Hub org.<\/p>\n\n\n\n<p>4. <strong>Wait for Your Scratch Org to Be Created:<\/strong>\u00a0Salesforce will now work its magic and provision your new scratch org. This process might take a few minutes. Keep an eye on your terminal for confirmation messages.<\/p>\n\n\n\n<p>5. <strong>Open Your New Scratch Org:<\/strong>\u00a0Once the scratch org is successfully created, you can open it directly from the CLI using the following command:<\/p>\n\n\n\n<p>Bash :<\/p>\n\n\n\n<p>sfdx force:org:open<\/p>\n\n\n\n<p>This will open your new Agentforce-enabled scratch org in your default web browser.<\/p>\n\n\n\n<p><strong>Next Steps:<\/strong><\/p>\n\n\n\n<p>Congratulations! You now have a fresh scratch org ready for you to explore the power of Agentforce. Here are some things you can do next:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Explore Service Cloud Setup:<\/strong>\u00a0Navigate to Setup and explore the Service Cloud features.<\/li>\n\n\n\n<li><strong>Set up Omni-Channel:<\/strong>\u00a0Configure routing rules, queues, and presence statuses.<\/li>\n\n\n\n<li><strong>Investigate Service Cloud Voice:<\/strong>\u00a0If you have the necessary licenses, start setting up your call center.<\/li>\n\n\n\n<li><strong>Deploy Metadata:<\/strong>\u00a0If you have existing Service Cloud configurations, use the CLI to deploy them to your new scratch org.<\/li>\n\n\n\n<li><strong>Develop and Test:<\/strong>\u00a0Build and test your custom Service Cloud solutions in this isolated environment.<\/li>\n<\/ul>\n\n\n\n<p>Creating an Salesforce Agentforce-enabled scratch org is a fantastic way to get hands-on experience with <a href=\"https:\/\/www.winklix.com\/salesforce-consultant-india\">Salesforce&#8217;s<\/a> robust service agent tools without impacting your production environment. So go ahead, spin up a new org, and unlock the full potential of your Service Cloud! Happy developing!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Ready to dive into the powerful world of Salesforce Service Cloud and its agent productivity tools? Want a clean, isolated environment to experiment with features like Omni-Channel, Service Cloud Voice, and more? Then you&#8217;ll need an Agentforce-enabled scratch org! For those unfamiliar, a scratch org is a temporary, disposable Salesforce environment that you can quickly &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Supercharge Your Service Console: Creating an Agentforce-Enabled Scratch Org&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":3132,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"categories":[300],"tags":[303,1410,1408,1409,306],"class_list":["post-3131","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-salesforce","tag-salesforce-consultant-in-india","tag-salesforce-consultants-in-india","tag-salesforce-consulting-in-india","tag-salesforce-consulting-partner-in-india","tag-salesforce-developer-in-india"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Creating an Agentforce-Enabled Scratch Org<\/title>\n<meta name=\"description\" content=\"Supercharge Your Service Console: Creating an Agentforce-Enabled Scratch Org\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating an Agentforce-Enabled Scratch Org\" \/>\n<meta property=\"og:description\" content=\"Supercharge Your Service Console: Creating an Agentforce-Enabled Scratch Org\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/\" \/>\n<meta property=\"og:site_name\" content=\"The Winklix Insights Hub\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Winklix\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-08T03:27:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-08T03:27:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.winklix.com\/blog\/wp-content\/uploads\/2025\/05\/Salesforce-Redefines-Enterprise-Operations-with-Agentforce_-Agentic-AI-Integrated-into-Every-Workflow-Automation-and-App.-2.png.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/#\\\/schema\\\/person\\\/8e4d9d1eaab8f196af487e5aa9573ad9\"},\"headline\":\"Supercharge Your Service Console: Creating an Agentforce-Enabled Scratch Org\",\"datePublished\":\"2025-05-08T03:27:01+00:00\",\"dateModified\":\"2025-05-08T03:27:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\\\/\"},\"wordCount\":735,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Salesforce-Redefines-Enterprise-Operations-with-Agentforce_-Agentic-AI-Integrated-into-Every-Workflow-Automation-and-App.-2.png.webp\",\"keywords\":[\"salesforce consultant in india\",\"salesforce consultants in india\",\"salesforce consulting in India\",\"salesforce consulting partner in india\",\"salesforce developer in india\"],\"articleSection\":[\"SalesForce\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.winklix.com\\\/blog\\\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\\\/\",\"url\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\\\/\",\"name\":\"Creating an Agentforce-Enabled Scratch Org\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Salesforce-Redefines-Enterprise-Operations-with-Agentforce_-Agentic-AI-Integrated-into-Every-Workflow-Automation-and-App.-2.png.webp\",\"datePublished\":\"2025-05-08T03:27:01+00:00\",\"dateModified\":\"2025-05-08T03:27:03+00:00\",\"description\":\"Supercharge Your Service Console: Creating an Agentforce-Enabled Scratch Org\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.winklix.com\\\/blog\\\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Salesforce-Redefines-Enterprise-Operations-with-Agentforce_-Agentic-AI-Integrated-into-Every-Workflow-Automation-and-App.-2.png.webp\",\"contentUrl\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Salesforce-Redefines-Enterprise-Operations-with-Agentforce_-Agentic-AI-Integrated-into-Every-Workflow-Automation-and-App.-2.png.webp\",\"width\":1200,\"height\":675,\"caption\":\"Supercharge Your Service Console: Creating an Agentforce-Enabled Scratch Org\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SalesForce\",\"item\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/category\\\/salesforce\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Supercharge Your Service Console: Creating an Agentforce-Enabled Scratch Org\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/\",\"name\":\"Winklix - Digitla Transformation Consultant\",\"description\":\"Expert perspectives on building smarter digital businesses\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/#organization\",\"name\":\"winklix\",\"url\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/03\\\/18011101_1913606148921801_758983040460375898_n.png\",\"contentUrl\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/03\\\/18011101_1913606148921801_758983040460375898_n.png\",\"width\":500,\"height\":500,\"caption\":\"winklix\"},\"image\":{\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/Winklix\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/winklix\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/#\\\/schema\\\/person\\\/8e4d9d1eaab8f196af487e5aa9573ad9\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ffbcecbad365e7e2ca9fff83ab0af04c33e41092e285f59f46ac3ea9e6a7c6d0?s=96&d=color&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ffbcecbad365e7e2ca9fff83ab0af04c33e41092e285f59f46ac3ea9e6a7c6d0?s=96&d=color&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ffbcecbad365e7e2ca9fff83ab0af04c33e41092e285f59f46ac3ea9e6a7c6d0?s=96&d=color&r=g\",\"caption\":\"admin\"},\"description\":\"I am a freelancer blogger expert ready to write some classy content.\",\"sameAs\":[\"http:\\\/\\\/www.winklix.com\"],\"url\":\"https:\\\/\\\/www.winklix.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Creating an Agentforce-Enabled Scratch Org","description":"Supercharge Your Service Console: Creating an Agentforce-Enabled Scratch Org","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/","og_locale":"en_US","og_type":"article","og_title":"Creating an Agentforce-Enabled Scratch Org","og_description":"Supercharge Your Service Console: Creating an Agentforce-Enabled Scratch Org","og_url":"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/","og_site_name":"The Winklix Insights Hub","article_publisher":"https:\/\/www.facebook.com\/Winklix\/","article_published_time":"2025-05-08T03:27:01+00:00","article_modified_time":"2025-05-08T03:27:03+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/www.winklix.com\/blog\/wp-content\/uploads\/2025\/05\/Salesforce-Redefines-Enterprise-Operations-with-Agentforce_-Agentic-AI-Integrated-into-Every-Workflow-Automation-and-App.-2.png.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/#article","isPartOf":{"@id":"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/"},"author":{"name":"admin","@id":"https:\/\/www.winklix.com\/blog\/#\/schema\/person\/8e4d9d1eaab8f196af487e5aa9573ad9"},"headline":"Supercharge Your Service Console: Creating an Agentforce-Enabled Scratch Org","datePublished":"2025-05-08T03:27:01+00:00","dateModified":"2025-05-08T03:27:03+00:00","mainEntityOfPage":{"@id":"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/"},"wordCount":735,"commentCount":0,"publisher":{"@id":"https:\/\/www.winklix.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/#primaryimage"},"thumbnailUrl":"https:\/\/www.winklix.com\/blog\/wp-content\/uploads\/2025\/05\/Salesforce-Redefines-Enterprise-Operations-with-Agentforce_-Agentic-AI-Integrated-into-Every-Workflow-Automation-and-App.-2.png.webp","keywords":["salesforce consultant in india","salesforce consultants in india","salesforce consulting in India","salesforce consulting partner in india","salesforce developer in india"],"articleSection":["SalesForce"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/","url":"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/","name":"Creating an Agentforce-Enabled Scratch Org","isPartOf":{"@id":"https:\/\/www.winklix.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/#primaryimage"},"image":{"@id":"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/#primaryimage"},"thumbnailUrl":"https:\/\/www.winklix.com\/blog\/wp-content\/uploads\/2025\/05\/Salesforce-Redefines-Enterprise-Operations-with-Agentforce_-Agentic-AI-Integrated-into-Every-Workflow-Automation-and-App.-2.png.webp","datePublished":"2025-05-08T03:27:01+00:00","dateModified":"2025-05-08T03:27:03+00:00","description":"Supercharge Your Service Console: Creating an Agentforce-Enabled Scratch Org","breadcrumb":{"@id":"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/#primaryimage","url":"https:\/\/www.winklix.com\/blog\/wp-content\/uploads\/2025\/05\/Salesforce-Redefines-Enterprise-Operations-with-Agentforce_-Agentic-AI-Integrated-into-Every-Workflow-Automation-and-App.-2.png.webp","contentUrl":"https:\/\/www.winklix.com\/blog\/wp-content\/uploads\/2025\/05\/Salesforce-Redefines-Enterprise-Operations-with-Agentforce_-Agentic-AI-Integrated-into-Every-Workflow-Automation-and-App.-2.png.webp","width":1200,"height":675,"caption":"Supercharge Your Service Console: Creating an Agentforce-Enabled Scratch Org"},{"@type":"BreadcrumbList","@id":"https:\/\/www.winklix.com\/blog\/supercharge-your-service-console-creating-an-agentforce-enabled-scratch-org\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.winklix.com\/blog\/"},{"@type":"ListItem","position":2,"name":"SalesForce","item":"https:\/\/www.winklix.com\/blog\/category\/salesforce\/"},{"@type":"ListItem","position":3,"name":"Supercharge Your Service Console: Creating an Agentforce-Enabled Scratch Org"}]},{"@type":"WebSite","@id":"https:\/\/www.winklix.com\/blog\/#website","url":"https:\/\/www.winklix.com\/blog\/","name":"Winklix - Digitla Transformation Consultant","description":"Expert perspectives on building smarter digital businesses","publisher":{"@id":"https:\/\/www.winklix.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.winklix.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.winklix.com\/blog\/#organization","name":"winklix","url":"https:\/\/www.winklix.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.winklix.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.winklix.com\/blog\/wp-content\/uploads\/2018\/03\/18011101_1913606148921801_758983040460375898_n.png","contentUrl":"https:\/\/www.winklix.com\/blog\/wp-content\/uploads\/2018\/03\/18011101_1913606148921801_758983040460375898_n.png","width":500,"height":500,"caption":"winklix"},"image":{"@id":"https:\/\/www.winklix.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Winklix\/","https:\/\/www.linkedin.com\/company\/winklix"]},{"@type":"Person","@id":"https:\/\/www.winklix.com\/blog\/#\/schema\/person\/8e4d9d1eaab8f196af487e5aa9573ad9","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ffbcecbad365e7e2ca9fff83ab0af04c33e41092e285f59f46ac3ea9e6a7c6d0?s=96&d=color&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ffbcecbad365e7e2ca9fff83ab0af04c33e41092e285f59f46ac3ea9e6a7c6d0?s=96&d=color&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ffbcecbad365e7e2ca9fff83ab0af04c33e41092e285f59f46ac3ea9e6a7c6d0?s=96&d=color&r=g","caption":"admin"},"description":"I am a freelancer blogger expert ready to write some classy content.","sameAs":["http:\/\/www.winklix.com"],"url":"https:\/\/www.winklix.com\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.winklix.com\/blog\/wp-json\/wp\/v2\/posts\/3131","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.winklix.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.winklix.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.winklix.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.winklix.com\/blog\/wp-json\/wp\/v2\/comments?post=3131"}],"version-history":[{"count":1,"href":"https:\/\/www.winklix.com\/blog\/wp-json\/wp\/v2\/posts\/3131\/revisions"}],"predecessor-version":[{"id":3133,"href":"https:\/\/www.winklix.com\/blog\/wp-json\/wp\/v2\/posts\/3131\/revisions\/3133"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.winklix.com\/blog\/wp-json\/wp\/v2\/media\/3132"}],"wp:attachment":[{"href":"https:\/\/www.winklix.com\/blog\/wp-json\/wp\/v2\/media?parent=3131"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.winklix.com\/blog\/wp-json\/wp\/v2\/categories?post=3131"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.winklix.com\/blog\/wp-json\/wp\/v2\/tags?post=3131"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}