Life Sciences Territory Setup
Creates and activates a Territory Type, Territory Model, and a 3-level Territory hierarchy for Life Sciences Cloud using the sf CLI.
Scope
- In scope: Creating territory type, territory model, and territories; activating the territory model
- Out of scope: Assigning users to territories, creating territory assignment rules, validating prerequisites
Off-topic requests
If the user asks for something unrelated to this skill (either at the start or mid-execution), do not attempt it. Tell the user you did not understand the request, then show what you can help with: setting up Life Sciences Cloud territories (this skill), and — if relevant — point them to life-sciences-prerequisites-validate for prerequisite checks or life-sciences-fieldsalesrep-coordinate for the full end-to-end setup. Then stop and wait.
Required Inputs
Gather before proceeding:
- Target org: The org alias or username to deploy to (from
sf config get target-org or user-specified)
Workflow
Phase 1 — Present Default Names and Get Confirmation
- Show the user the default names that will be used for the territory components. Read
references/territory-metadata.md for the exact XML templates and default names.
Present the names in a table:
| Component | Default Name |
|-----------|-------------|
| Territory Type | Geographical |
| Territory Model | LSC Territory Model |
| Territory (Level 1 - Region) | RD - West 20D |
| Territory (Level 2 - District) | DM - San Francisco 20D02 |
| Territory (Level 3 - Territory) | TM - SPC - San Francisco North 20D02T11 |
Ask the user if they are fine with these names or want to change any of them. Ask for each component individually:
- "Are you fine with the Territory Type name 'Geographical' or would you like to change it?"
- "Are you fine with the Territory Model name 'LSC Territory Model' or would you like to change it?"
- "Are you fine with the Region territory name 'RD - West 20D' or would you like to change it?"
- "Are you fine with the District territory name 'DM - San Francisco 20D02' or would you like to change it?"
- "Are you fine with the Territory name 'TM - SPC - San Francisco North 20D02T11' or would you like to change it?"
If the user wants to change a name, ask them for the new name they'd like to use. Record the updated name.
Phase 2 — Preview and Confirm
- Display a complete preview of what will be created, showing the final XML for each component with the confirmed names. Use the templates from
references/territory-metadata.md and substitute any user-provided names.
Show the preview in this format:
=== Territory Type ===
Name: <confirmed name>
Priority: 1
=== Territory Model ===
Name: <confirmed model name>
=== Territory Hierarchy ===
Level 1 (Region): <confirmed region name>
└── Level 2 (District): <confirmed district name>
└── Level 3 (Territory): <confirmed territory name>
Access Levels (all territories):
- Account: Read
- Contact: Edit
- Case: None
- Opportunity: None
- Ask for final confirmation: "Ready to create and deploy these territory components? (yes/no)"
If user says no, go back to Phase 1.
Phase 3 — Create and Deploy
- Create a temporary SFDX project structure for deployment. Read
references/territory-metadata.md for the exact file structure and XML content.
The directory structure must be:
territory-deploy/
├── sfdx-project.json
└── force-app/
└── main/
└── default/
└── territory2Models/
├── <ModelApiName>.territory2Model-meta.xml
└── <ModelApiName>/
├── territory2Types/
│ └── <TypeApiName>.territory2Type-meta.xml
└── territories/
├── <Level1ApiName>.territory2-meta.xml
├── <Level2ApiName>.territory2-meta.xml
└── <Level3ApiName>.territory2-meta.xml
Generate API names from user-confirmed display names:
- Remove special characters, spaces, and hyphens
- Use PascalCase for the API name
- Territory type API name is derived from the type display name
- Territory model API name is derived from the model display name (remove spaces)
- Territory API names are derived from territory display names (remove spaces, hyphens, special chars)
Write the metadata files using the templates from references/territory-metadata.md with confirmed names.
Deploy the metadata using:
sf project deploy start --source-dir territory-deploy/force-app --target-org <org>
Check deployment status — if it fails, show the error and suggest remediation.
STOP-GATE (component count). The single deploy package must land the complete hierarchy: 1 Territory2Type + 1 Territory2Model + 3 Territory2 records (one Region, one District, one Territory). Confirm the deploy result reports 0 component failures AND verify the territories exist before activating:
sf data query --query "SELECT COUNT(Id) c FROM Territory2 WHERE Territory2Model.DeveloperName = '<ModelApiName>'" --target-org <org> --json
The count MUST be 3. A parent-reference failure (e.g. the District deploying before its Region) can land a partial hierarchy — a Level-3 territory with no path to its Region silently breaks downstream user/visit territory assignment. Do NOT activate the model (Phase 4) until all 3 territories are present with 0 deploy failures.
Phase 4 — Activate Territory Model
Report that the model deployed in Planning state and ask the user if they want to activate it. Include this warning:
Note: Once a Territory Model is activated, it can be deactivated but cannot be deleted. Do you want to proceed with activation?
If the user confirms activation, activate the model by querying its record ID then updating its State to 'Activating' (not 'Active' — the platform transitions asynchronously from Activating → Active):
# Query the model ID and current state
sf data query --query "SELECT Id, State FROM Territory2Model WHERE DeveloperName = '<ModelApiName>' LIMIT 1" --target-org <org> --json
If the model is in Planning state, update it:
sf data update record --sobject Territory2Model --record-id <ModelId> --values "State='Activating'" --target-org <org>
See references/territory-metadata.md for the full activation logic including error handling.
Verify activation — the platform transitions asynchronously from Activating → Active. Query to confirm:
sf data query --query "SELECT Id, DeveloperName, State FROM Territory2Model WHERE DeveloperName='<ModelApiName>'" --target-org <org>
If still Activating, wait a moment and query again until it reaches Active.
If the user declines activation, report that the model is in Planning state and can be activated later from Setup.
Report success — confirm to the user that all components are created, and report the model's current state (Planning, Activating, or Active).
Rules / Constraints
| Constraint |
Rationale |
| Create exactly one territory per level — one Level-1 Region, one Level-2 District, one Level-3 Territory (3 territories total) |
Skill produces a single representative hierarchy branch, not a fully populated multi-child tree |
| Always confirm names before creating |
User may want to customize territory names for their org |
| Show preview before deploying |
User should see exactly what will be created |
| Deploy all components together |
Territory hierarchy has dependencies (parent references) |
| Warn user before activation that model cannot be deleted once active |
Irreversible action — user must explicitly consent |
Set State to 'Activating' (not 'Active') when updating the record |
The platform handles the async transition from Activating → Active |
Target the update by --record-id <ModelId> or --where "DeveloperName='<ModelApiName>'" |
Both forms work for sf data update record; use whichever is convenient |
| Clean up temp directory after deploy |
Don't leave deployment artifacts behind |
Gotchas
| Issue |
Resolution |
| Territory model already exists with same name |
Check first with a query; ask user if they want a different name |
| Territory type already exists |
Check first; reuse existing type if it matches |
| Deploy fails due to parent territory not found |
Ensure all territories are in the same deployment package |
Setting State to 'Active' directly fails with INVALID_STATUS |
Always set State to 'Activating' — the platform transitions to Active asynchronously |
Model state shows Activating after update |
This is normal — activation is async. Wait and re-query until Active |
| API name conflicts |
Ensure generated API names don't conflict with existing metadata |
Output Expectations
Deliverables:
- Created Territory Type with confirmed name
- Created Territory Model with confirmed name
- Created 3-level territory hierarchy with confirmed names
- Territory Model activated (or manual activation steps if programmatic activation fails)
- Confirmation message showing all created components and their status
Reference File Index
| File |
When to read |
references/territory-metadata.md |
During all phases — contains XML templates, file structure, and default values for territory components |
1---2name: life-sciences-territory-configure3description: Use this skill to create and activate a Territory Type, Territory Model, and Territories for Life Sciences Cloud. Trigger when the user says 'set up territories', 'create territory model', 'configure territory hierarchy for Life Sciences', 'territory setup for LSC', or 'create territories for Life Sciences Cloud'. Creates a Geographical territory type, an LSC Territory Model, and a 3-level territory hierarchy (Region, District, Territory). Confirms names with the user, shows a preview, then deploys and activates the model. DO NOT TRIGGER when: user wants to validate prerequisites, assign users to territories, create territory assignment rules, or run the full end-to-end Life Sciences Cloud setup / orchestration (that is the `life-sciences-fieldsalesrep-coordinate` orchestrator's job — this skill runs only as a standalone territory setup).4---5
6# Life Sciences Territory Setup
7
8Creates and activates a Territory Type, Territory Model, and a 3-level Territory hierarchy for Life Sciences Cloud using the `sf` CLI.
9
10## Scope
11
12- **In scope**: Creating territory type, territory model, and territories; activating the territory model
13- **Out of scope**: Assigning users to territories, creating territory assignment rules, validating prerequisites
14
15### Off-topic requests
16
17If the user asks for something unrelated to this skill (either at the start or mid-execution), do not attempt it. Tell the user you did not understand the request, then show what you *can* help with: setting up Life Sciences Cloud territories (this skill), and — if relevant — point them to `life-sciences-prerequisites-validate` for prerequisite checks or `life-sciences-fieldsalesrep-coordinate` for the full end-to-end setup. Then stop and wait.
18
19---
20
21## Required Inputs
22
23Gather before proceeding:
24
25- **Target org**: The org alias or username to deploy to (from `sf config get target-org` or user-specified)
26
27---
28
29## Workflow
30
31### Phase 1 — Present Default Names and Get Confirmation
32
331. **Show the user the default names** that will be used for the territory components. Read `references/territory-metadata.md` for the exact XML templates and default names.
34
35Present the names in a table:
36
37```markdown
38| Component | Default Name |
39|-----------|-------------|
40| Territory Type | Geographical |
41| Territory Model | LSC Territory Model |
42| Territory (Level 1 - Region) | RD - West 20D |
43| Territory (Level 2 - District) | DM - San Francisco 20D02 |
44| Territory (Level 3 - Territory) | TM - SPC - San Francisco North 20D02T11 |
45```
46
472. **Ask the user** if they are fine with these names or want to change any of them. Ask for each component individually:
48 - "Are you fine with the Territory Type name **'Geographical'** or would you like to change it?"
49 - "Are you fine with the Territory Model name **'LSC Territory Model'** or would you like to change it?"
50 - "Are you fine with the Region territory name **'RD - West 20D'** or would you like to change it?"
51 - "Are you fine with the District territory name **'DM - San Francisco 20D02'** or would you like to change it?"
52 - "Are you fine with the Territory name **'TM - SPC - San Francisco North 20D02T11'** or would you like to change it?"
53
543. **If the user wants to change a name**, ask them for the new name they'd like to use. Record the updated name.
55
56### Phase 2 — Preview and Confirm
57
584. **Display a complete preview** of what will be created, showing the final XML for each component with the confirmed names. Use the templates from `references/territory-metadata.md` and substitute any user-provided names.
59
60Show the preview in this format:
61
62```text
63=== Territory Type ===
64Name: <confirmed name>
65Priority: 1
66
67=== Territory Model ===
68Name: <confirmed model name>
69
70=== Territory Hierarchy ===
71Level 1 (Region): <confirmed region name>
72 └── Level 2 (District): <confirmed district name>
73 └── Level 3 (Territory): <confirmed territory name>
74
75Access Levels (all territories):
76- Account: Read
77- Contact: Edit
78- Case: None
79- Opportunity: None
80```
81
825. **Ask for final confirmation**: "Ready to create and deploy these territory components? (yes/no)"
83
84If user says no, go back to Phase 1.
85
86### Phase 3 — Create and Deploy
87
886. **Create a temporary SFDX project structure** for deployment. Read `references/territory-metadata.md` for the exact file structure and XML content.
89
90The directory structure must be:
91
92```text
93territory-deploy/
94├── sfdx-project.json
95└── force-app/
96 └── main/
97 └── default/
98 └── territory2Models/
99 ├── <ModelApiName>.territory2Model-meta.xml
100 └── <ModelApiName>/
101 ├── territory2Types/
102 │ └── <TypeApiName>.territory2Type-meta.xml
103 └── territories/
104 ├── <Level1ApiName>.territory2-meta.xml
105 ├── <Level2ApiName>.territory2-meta.xml
106 └── <Level3ApiName>.territory2-meta.xml
107```
108
1097. **Generate API names** from user-confirmed display names:
110 - Remove special characters, spaces, and hyphens
111 - Use PascalCase for the API name
112 - Territory type API name is derived from the type display name
113 - Territory model API name is derived from the model display name (remove spaces)
114 - Territory API names are derived from territory display names (remove spaces, hyphens, special chars)
115
1168. **Write the metadata files** using the templates from `references/territory-metadata.md` with confirmed names.
117
1189. **Deploy the metadata** using:
119 ```bash
120 sf project deploy start --source-dir territory-deploy/force-app --target-org <org>
121 ```
122
12310. **Check deployment status** — if it fails, show the error and suggest remediation.
124
125 > **STOP-GATE (component count).** The single deploy package must land the **complete** hierarchy: 1 Territory2Type + 1 Territory2Model + 3 Territory2 records (one Region, one District, one Territory). Confirm the deploy result reports **0 component failures** AND verify the territories exist before activating:
126 > ```bash
127 > sf data query --query "SELECT COUNT(Id) c FROM Territory2 WHERE Territory2Model.DeveloperName = '<ModelApiName>'" --target-org <org> --json
128 > ```
129 > The count MUST be 3. A parent-reference failure (e.g. the District deploying before its Region) can land a partial hierarchy — a Level-3 territory with no path to its Region silently breaks downstream user/visit territory assignment. Do NOT activate the model (Phase 4) until all 3 territories are present with 0 deploy failures.
130
131### Phase 4 — Activate Territory Model
132
13311. **Report that the model deployed in Planning state** and ask the user if they want to activate it. Include this warning:
134
135 > **Note:** Once a Territory Model is activated, it can be deactivated but **cannot be deleted**. Do you want to proceed with activation?
136
13712. **If the user confirms activation**, activate the model by querying its record ID then updating its State to `'Activating'` (not `'Active'` — the platform transitions asynchronously from Activating → Active):
138
139 ```bash
140 # Query the model ID and current state
141 sf data query --query "SELECT Id, State FROM Territory2Model WHERE DeveloperName = '<ModelApiName>' LIMIT 1" --target-org <org> --json
142 ```
143
144 If the model is in `Planning` state, update it:
145
146 ```bash
147 sf data update record --sobject Territory2Model --record-id <ModelId> --values "State='Activating'" --target-org <org>
148 ```
149
150 See `references/territory-metadata.md` for the full activation logic including error handling.
151
15213. **Verify activation** — the platform transitions asynchronously from `Activating` → `Active`. Query to confirm:
153 ```bash
154 sf data query --query "SELECT Id, DeveloperName, State FROM Territory2Model WHERE DeveloperName='<ModelApiName>'" --target-org <org>
155 ```
156 If still `Activating`, wait a moment and query again until it reaches `Active`.
157
15814. **If the user declines activation**, report that the model is in Planning state and can be activated later from Setup.
159
16015. **Report success** — confirm to the user that all components are created, and report the model's current state (`Planning`, `Activating`, or `Active`).
161
162---
163
164## Rules / Constraints
165
166| Constraint | Rationale |
167|-----------|-----------|
168| Create exactly one territory per level — one Level-1 Region, one Level-2 District, one Level-3 Territory (3 territories total) | Skill produces a single representative hierarchy branch, not a fully populated multi-child tree |
169| Always confirm names before creating | User may want to customize territory names for their org |
170| Show preview before deploying | User should see exactly what will be created |
171| Deploy all components together | Territory hierarchy has dependencies (parent references) |
172| Warn user before activation that model cannot be deleted once active | Irreversible action — user must explicitly consent |
173| Set State to `'Activating'` (not `'Active'`) when updating the record | The platform handles the async transition from Activating → Active |
174| Target the update by `--record-id <ModelId>` or `--where "DeveloperName='<ModelApiName>'"` | Both forms work for `sf data update record`; use whichever is convenient |
175| Clean up temp directory after deploy | Don't leave deployment artifacts behind |
176
177---
178
179## Gotchas
180
181| Issue | Resolution |
182|-------|------------|
183| Territory model already exists with same name | Check first with a query; ask user if they want a different name |
184| Territory type already exists | Check first; reuse existing type if it matches |
185| Deploy fails due to parent territory not found | Ensure all territories are in the same deployment package |
186| Setting State to `'Active'` directly fails with `INVALID_STATUS` | Always set State to `'Activating'` — the platform transitions to Active asynchronously |
187| Model state shows `Activating` after update | This is normal — activation is async. Wait and re-query until `Active` |
188| API name conflicts | Ensure generated API names don't conflict with existing metadata |
189
190---
191
192## Output Expectations
193
194Deliverables:
195- Created Territory Type with confirmed name
196- Created Territory Model with confirmed name
197- Created 3-level territory hierarchy with confirmed names
198- Territory Model activated (or manual activation steps if programmatic activation fails)
199- Confirmation message showing all created components and their status
200
201---
202
203## Reference File Index
204
205| File | When to read |
206|------|-------------|
207| `references/territory-metadata.md` | During all phases — contains XML templates, file structure, and default values for territory components |