Skip to content

Commit a07c242

Browse files
authored
Merge branch 'main' into pozil/flow-fixes
2 parents 377fce7 + eb7c57d commit a07c242

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

README.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,44 +29,48 @@ If you need to [update the Salesforce CLI](https://developer.salesforce.com/docs
2929
## Installing the app using a Developer Edition Org
3030

3131
Follow this set of instructions if you want to deploy the app to a more permanent environment than a Scratch org.
32-
This includes non source-tracked orgs such as a free [Developer Edition Org](https://developer.salesforce.com/signup) or a [Trailhead Playground](https://trailhead.salesforce.com/).
32+
This includes non source-tracked orgs such as a free [Developer Edition Org](https://developer.salesforce.com/signup).
3333

3434
> [!IMPORTANT]
3535
> Make sure to start from a brand-new environment to avoid conflicts with previous work you may have done.
3636
37-
1. Clone this repository:
37+
1. Enable Einstein in your org. Do this via **Setup**, then search for **Einstein Setup** in Quick Find. Click on that entry and turn on the **Einstein** toggle.
38+
39+
2. Enable Agentforce in your org. In Quick Find search for **Agentforce**, click on **Agentforce Agents**, and turn on the **Agentforce** toggle.
40+
41+
3. Clone this repository:
3842

3943
```bash
4044
git clone https://github.com/trailheadapps/agent-script-recipes
4145
cd agent-script-recipes
4246
```
4347

44-
1. Authorize your Trailhead Playground or Developer Edition org and provide it with an alias (**agent-script-recipes** in the command below):
48+
4. Authorize your Developer Edition org and provide it with an alias (**agent-script-recipes** in the command below):
4549

4650
```bash
4751
sf org login web -s -a agent-script-recipes
4852
```
4953

50-
1. Deploy the app to your org:
54+
5. Deploy the app to your org:
5155

5256
```bash
5357
sf project deploy start -d force-app
5458
```
5559

56-
1. Assign the `Agent_Script_Recipes_Data` and `Agent_Script_Recipes_App` permission sets to the default user:
60+
6. Assign the `Agent_Script_Recipes_Data` and `Agent_Script_Recipes_App` permission sets to the default user:
5761

5862
```bash
5963
sf org assign permset -n Agent_Script_Recipes_Data
6064
sf org assign permset -n Agent_Script_Recipes_App
6165
```
6266

63-
1. Import some sample data:
67+
7. Import some sample data:
6468

6569
```bash
6670
sf data import tree --plan data/data-plan.json
6771
```
6872

69-
1. Open your org with the **Agentforce Studio** app displayed:
73+
8. Open your org with the **Agentforce Studio** app displayed:
7074

7175
```bash
7276
sf org open -p "/lightning/n/standard-AgentforceStudio?c__nav=agents"
@@ -78,7 +82,7 @@ This includes non source-tracked orgs such as a free [Developer Edition Org](htt
7882
## Installing the app using a Scratch Org
7983

8084
1. Follow these steps if you haven't configured a Dev Hub org:
81-
1. [Select and enable a Dev Hub org](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_setup_enable_devhub.htm). You can use a free [Developer Edition Org](https://developer.salesforce.com/signup) or a [Trailhead Playground](https://trailhead.salesforce.com/).
85+
1. [Select and enable a Dev Hub org](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_setup_enable_devhub.htm). You can use a free [Developer Edition Org](https://developer.salesforce.com/signup).
8286
8387
1. Authorize your Dev Hub org and provide it with an alias (**myhuborg** in the command below):
8488

0 commit comments

Comments
 (0)