Sharing Rules Generator
Get, create, edit, and delete Salesforce Sharing Rules metadata to control record-level access beyond org-wide defaults. Supports criteria-based rules, role/group-based owner rules, and guest user rules for Experience Sites.
Scope
- In scope: Creating, editing, deleting, and retrieving (getting)
sharingCriteriaRules, sharingOwnerRules, and sharingGuestRules metadata; retrieving existing sharing rules from an org using the Metadata API Retrieve pattern; appending new rules to existing files; modifying rule criteria or access levels; removing rules from metadata files; configuring rules for Guest and Portal profiles.
- Out of scope: Changing org-wide defaults (OWD/sharing model), creating Experience Sites, configuring permission sets or profiles (use
platform-permission-set-generate), territory-based sharing rules.
Clarifying Questions
Before proceeding, confirm with the user if not already clear:
For Get operations:
- Which object's sharing rules should be retrieved? (standard or custom object API name, or all objects)
- Which target org should the rules be retrieved from? (org alias or default)
For Create operations:
- Which object should the sharing rule apply to? (standard or custom object API name)
- What type of rule? (criteria-based, role/group-based owner rule, or guest user rule)
- Who should records be shared with? (role name, group, portal role, or guest user nickname)
- What access level? (Read or Read/Write)
- For criteria-based rules: what field conditions should match?
For Edit operations:
- Which existing rule should be modified? (rule fullName or label)
- What should change? (access level, criteria, label — note:
sharedTo and sharedFrom cannot be edited in place)
For Delete operations:
- Which rule(s) should be removed? (rule fullName or label)
- Confirm the object the rule belongs to
Required Inputs
Gather or infer before proceeding:
- Object API name: The sObject the rule targets (e.g.,
Account, Property__c)
- Rule type: One of
sharingCriteriaRules, sharingOwnerRules, or sharingGuestRules
- Shared-to target: Role, group, portal role, or guest user community nickname
- Access level:
Read or Edit (maps to Read-Only or Read/Write)
- Criteria (for criteria/guest rules): Field name, operation, and value for each filter item
Defaults unless specified:
- Access level:
Read
includeRecordsOwnedByAll: true for criteria rules
includeHVUOwnedRecords: false for guest rules
- Account sharing rules include
accountSettings with all sub-access levels set to None
Workflow
Steps are sequential within each phase. Phase 3 branches by operation type — execute only the matching branch. Phase 4 applies to create, edit, and delete only (get operations end at Phase 3).
Phase 1 — Discover
Resolve the SFDX project path — find the project's sfdx-project.json and identify the package directory for sharingRules/.
Always retrieve the latest sharing rules from the org using the Metadata API Retrieve pattern:
sf project retrieve start --metadata "SharingRules:<ObjectName>" --target-org <org>
This ensures the local file reflects the current org state. Never trust a local file that may be stale — edits or deletes against a stale file can recreate rules that were already removed in the org or overwrite changes made by other users.
Read the retrieved file — parse <packageDir>/sharingRules/<ObjectName>.sharingRules-meta.xml to understand existing rules and avoid duplicates.
Phase 2 — Determine Operation and Rule Type
Identify the operation — determine whether the user wants to get, create, edit, or delete a sharing rule.
Select the rule type based on user intent. Read references/rule-types.md for the complete schema of each type and its required elements.
For Account sharing rules: the accountSettings element is required. Default sub-access levels to None unless the user specifies otherwise.
For Guest rules: the sharedTo must use <guestUser> with the site guest user's community nickname. Never use <role> or <group> for guest rules.
Phase 3 — Execute Operation
For Get:
8a. Use the file already retrieved in Phase 1 — the retrieve in step 2 already pulled the latest <ObjectName>.sharingRules-meta.xml from the org. No additional retrieve is needed.
8b. Read and present the retrieved rules — parse the .sharingRules-meta.xml file and present the rules to the user in a readable format showing:
- Rule name (fullName) and label
- Rule type (criteria-based, owner-based, or guest)
- Access level
- Shared-to target
- Criteria (if applicable)
For get operations, skip Phase 4 (no write needed). The retrieve itself writes the metadata file to the local project.
For Create:
8a. Construct the XML following the schema in references/rule-types.md. Key structure:
- One .sharingRules-meta.xml file per object
- All rules for the same object go in the same file
- If appending to an existing file, add the new rule element inside the existing <SharingRules> root
8b. Name the rule — derive <fullName> from the intent (PascalCase, no spaces, descriptive). Generate a matching <label> in Title Case with spaces.
For Edit:
8a. Locate the target rule — find the rule by <fullName> or <label> in the existing .sharingRules-meta.xml file.
8b. Gate unsupported edits — the platform does NOT support in-place modification of <sharedTo> or <sharedFrom> elements. If the user requests a change to the sharing target or source, refuse the edit and instruct them to delete the existing rule and create a new one with the desired target. This is the same pattern used for rule-type changes (see TC-16).
8c. Determine modifications based on rule type:
- Owner-based rules (sharingOwnerRules): only <accessLevel> can be edited. The platform does not support modifying any other element (sharedTo, sharedFrom, label) on owner rules. If the user requests changes beyond access level, refuse and instruct them to delete + create.
- Criteria-based rules (sharingCriteriaRules): supported editable elements are <accessLevel>, <criteriaItems>, <label>, and <booleanFilter>.
- Guest rules (sharingGuestRules): supported editable elements are <accessLevel>, <criteriaItems>, <label>, and <includeHVUOwnedRecords>.
For Delete:
8a. Locate the target rule — find the rule by <fullName> or <label> in the existing .sharingRules-meta.xml file.
8b. Count remaining rules — run scripts/count-remaining-rules.sh <file> to get the total rule count. If the count is 1 (only the rule being deleted), the file must be removed entirely in Phase 4.
8c. Delegate destructive deployment to platform-destructive-deploy — a normal sf project deploy start is additive and will NOT remove a rule from the org. Delegate to the platform-destructive-deploy skill with the following context:
- Metadata type: SharingCriteriaRule, SharingOwnerRule, or SharingGuestRule (depending on the rule type)
- Member: <ObjectName>.<RuleFullName>
- Target org: the user's specified org
Phase 4 — Write and Verify
Apply the change:
- Create: Write the file to
<packageDir>/sharingRules/<ObjectName>.sharingRules-meta.xml.
- Edit: Update only the elements identified in step 8b; preserve all other elements exactly as they were.
- Delete (rules remain): Write the updated file with the target rule removed.
- Delete (last rule): Remove the file
<packageDir>/sharingRules/<ObjectName>.sharingRules-meta.xml entirely.
Run the verification checklist below and consult the examples files (examples/create-cases.md, examples/edit-cases.md, examples/delete-cases.md) for scenario-specific expected behaviors before presenting output.
Verification Checklist
Universal Checks
Criteria Rule Checks
Guest Rule Checks CRITICAL
Owner Rule Checks
Edit Operation Checks
Delete Operation Checks
Account-Specific Checks CRITICAL
Rules / Constraints
| Constraint |
Rationale |
One .sharingRules-meta.xml file per object |
Platform requirement — multiple files cause deployment errors |
Guest rules must use <guestUser> in sharedTo |
Using <role> or <group> causes: "Specify a guest user's nickname for the guestUser field" |
Account rules require <accountSettings> |
Without it: "AccountSettings is required for account sharing rules" |
includeRecordsOwnedByAll is required on criteria rules |
Missing it causes: "Required field is missing: sharingCriteriaRules" |
includeHVUOwnedRecords is required on guest rules |
Missing it causes deployment failure |
| Criteria field values must exist as picklist values on the org |
Invalid values cause: "Picklist value does not exist" |
Never hardcode file paths — resolve from sfdx-project.json |
Customer projects use custom package directories |
For managed package custom objects, use the full API name including namespace prefix (e.g., ns__Object__c) |
Namespace-prefixed objects store sharing rules under the prefixed name |
sharedTo and sharedFrom cannot be edited in place |
Platform does not support modifying sharing targets — deploy will fail. Delete the rule and create a new one instead |
Owner-based rules only support editing accessLevel |
No other field (label, sharedTo, sharedFrom) can be modified on owner rules — delete and recreate instead |
| Always retrieve from the org before edit or delete |
Local files may be stale; editing a stale file can recreate deleted rules or overwrite concurrent changes |
| Deleting a rule requires a destructive deployment |
A normal deploy is additive — it will not remove rules from the org. Delegate to platform-destructive-deploy |
| Edit must preserve unmodified elements |
Changing only accessLevel must not alter criteriaItems or other fields |
| Delete must remove the entire rule block |
Partial deletion leaves invalid XML and causes deployment failures |
| Delete last rule removes the file |
An empty <SharingRules> root with no children is invalid metadata |
Gotchas
| Issue |
Resolution |
Guest rule uses <role> instead of <guestUser> |
Replace with <guestUser>CommunityNickname</guestUser> |
Account rule missing accountSettings |
Add <accountSettings> with all three access level sub-elements set to None |
Criteria rule missing includeRecordsOwnedByAll |
Add <includeRecordsOwnedByAll>true</includeRecordsOwnedByAll> |
| Picklist value mismatch |
Query the org for valid values before generating criteria |
| Appending duplicates existing rule name |
Check existing <fullName> values before writing |
| Guest user nickname not found |
Query: SELECT CommunityNickname FROM User WHERE UserType='Guest' AND IsActive=true |
User requests edit to sharedTo or sharedFrom |
Not supported — refuse the edit and instruct user to delete + create a new rule |
User requests edit to owner rule beyond accessLevel |
Not supported — owner rules only allow accessLevel edits. Refuse and instruct user to delete + create |
| Editing changes rule type (e.g., criteria → owner) |
Not supported — delete the old rule and create a new one instead |
| Local file is stale (rule deleted/changed in org) |
Always retrieve fresh from org before edit or delete to avoid recreating removed rules |
| Delete deployed with normal deploy (no destructive manifest) |
Rule remains in the org — delegate to platform-destructive-deploy for proper removal |
| Deleting a rule referenced by other automation |
Warn the user about potential downstream impact |
| Delete leaves malformed XML |
Ensure proper XML structure after removal; validate the file is well-formed |
Output Expectations
Deliverables:
- For get operations:
<packageDir>/sharingRules/<ObjectName>.sharingRules-meta.xml — retrieved sharing rules file from the org, plus a formatted summary of all rules found
- For create/edit/delete operations:
<packageDir>/sharingRules/<ObjectName>.sharingRules-meta.xml — complete sharing rules file for the target object
Cross-Skill Integration
| Need |
Delegate to |
| Permission set configuration |
platform-permission-set-generate skill |
| Custom object creation (if target object doesn't exist) |
platform-custom-object-generate skill |
| Destructive deployment (rule deletion from org) |
platform-destructive-deploy skill |
Reference File Index
| File |
When to read |
references/rule-types.md |
Phase 2 — before generating any rule, to get the complete XML schema for each rule type |
scripts/count-remaining-rules.sh |
Phase 3, step 8b (Delete) — count sharing rule elements to determine if file should be removed |
examples/create-cases.md |
Phase 4, step 10 — expected behavior for create and append scenarios |
examples/edit-cases.md |
Phase 4, step 10 — expected behavior for edit scenarios |
examples/delete-cases.md |
Phase 4, step 10 — expected behavior for delete scenarios |
1---2name: platform-sharing-rules-generate3description: Use this skill when users need to get, create, edit, delete, or manage Salesforce Sharing Rules metadata. TRIGGER when: users mention sharing rules, record sharing, criteria-based sharing, role-based sharing, guest user sharing, sharingRules, sharingCriteriaRules, sharingGuestRules, sharingOwnerRules, .sharingRules-meta.xml files, or ask to share records with specific roles or groups. Also trigger when users want to retrieve or view existing sharing rules from an org, modify or remove existing sharing rules, or update sharing rule criteria or access levels. DO NOT TRIGGER when user needs permission sets or profiles (use platform-permission-set-generate), or needs object-level security rather than record-level sharing (use platform-permission-set-generate).4---5
6# Sharing Rules Generator
7
8Get, create, edit, and delete Salesforce Sharing Rules metadata to control record-level access beyond org-wide defaults. Supports criteria-based rules, role/group-based owner rules, and guest user rules for Experience Sites.
9
10## Scope
11
12- **In scope**: Creating, editing, deleting, and retrieving (getting) `sharingCriteriaRules`, `sharingOwnerRules`, and `sharingGuestRules` metadata; retrieving existing sharing rules from an org using the Metadata API Retrieve pattern; appending new rules to existing files; modifying rule criteria or access levels; removing rules from metadata files; configuring rules for Guest and Portal profiles.
13- **Out of scope**: Changing org-wide defaults (OWD/sharing model), creating Experience Sites, configuring permission sets or profiles (use `platform-permission-set-generate`), territory-based sharing rules.
14
15---
16
17## Clarifying Questions
18
19Before proceeding, confirm with the user if not already clear:
20
21### For Get operations:
22- Which object's sharing rules should be retrieved? (standard or custom object API name, or all objects)
23- Which target org should the rules be retrieved from? (org alias or default)
24
25### For Create operations:
26- Which object should the sharing rule apply to? (standard or custom object API name)
27- What type of rule? (criteria-based, role/group-based owner rule, or guest user rule)
28- Who should records be shared with? (role name, group, portal role, or guest user nickname)
29- What access level? (Read or Read/Write)
30- For criteria-based rules: what field conditions should match?
31
32### For Edit operations:
33- Which existing rule should be modified? (rule fullName or label)
34- What should change? (access level, criteria, label — note: `sharedTo` and `sharedFrom` cannot be edited in place)
35
36### For Delete operations:
37- Which rule(s) should be removed? (rule fullName or label)
38- Confirm the object the rule belongs to
39
40---
41
42## Required Inputs
43
44Gather or infer before proceeding:
45
46- **Object API name**: The sObject the rule targets (e.g., `Account`, `Property__c`)
47- **Rule type**: One of `sharingCriteriaRules`, `sharingOwnerRules`, or `sharingGuestRules`
48- **Shared-to target**: Role, group, portal role, or guest user community nickname
49- **Access level**: `Read` or `Edit` (maps to Read-Only or Read/Write)
50- **Criteria** (for criteria/guest rules): Field name, operation, and value for each filter item
51
52Defaults unless specified:
53- Access level: `Read`
54- `includeRecordsOwnedByAll`: `true` for criteria rules
55- `includeHVUOwnedRecords`: `false` for guest rules
56- Account sharing rules include `accountSettings` with all sub-access levels set to `None`
57
58---
59
60## Workflow
61
62Steps are sequential within each phase. Phase 3 branches by operation type — execute only the matching branch. Phase 4 applies to create, edit, and delete only (get operations end at Phase 3).
63
64### Phase 1 — Discover
65
661. **Resolve the SFDX project path** — find the project's `sfdx-project.json` and identify the package directory for `sharingRules/`.
67
682. **Always retrieve the latest sharing rules from the org** using the Metadata API Retrieve pattern:
69 ```bash
70 sf project retrieve start --metadata "SharingRules:<ObjectName>" --target-org <org>
71 ```
72 This ensures the local file reflects the current org state. Never trust a local file that may be stale — edits or deletes against a stale file can recreate rules that were already removed in the org or overwrite changes made by other users.
73
743. **Read the retrieved file** — parse `<packageDir>/sharingRules/<ObjectName>.sharingRules-meta.xml` to understand existing rules and avoid duplicates.
75
76### Phase 2 — Determine Operation and Rule Type
77
784. **Identify the operation** — determine whether the user wants to **get**, **create**, **edit**, or **delete** a sharing rule.
79
805. **Select the rule type** based on user intent. Read `references/rule-types.md` for the complete schema of each type and its required elements.
81
826. **For Account sharing rules**: the `accountSettings` element is required. Default sub-access levels to `None` unless the user specifies otherwise.
83
847. **For Guest rules**: the `sharedTo` must use `<guestUser>` with the site guest user's community nickname. Never use `<role>` or `<group>` for guest rules.
85
86### Phase 3 — Execute Operation
87
88#### For Get:
89
908a. **Use the file already retrieved in Phase 1** — the retrieve in step 2 already pulled the latest `<ObjectName>.sharingRules-meta.xml` from the org. No additional retrieve is needed.
91
928b. **Read and present the retrieved rules** — parse the `.sharingRules-meta.xml` file and present the rules to the user in a readable format showing:
93 - Rule name (`fullName`) and label
94 - Rule type (criteria-based, owner-based, or guest)
95 - Access level
96 - Shared-to target
97 - Criteria (if applicable)
98
99 For get operations, skip Phase 4 (no write needed). The retrieve itself writes the metadata file to the local project.
100
101#### For Create:
102
1038a. **Construct the XML** following the schema in `references/rule-types.md`. Key structure:
104 - One `.sharingRules-meta.xml` file per object
105 - All rules for the same object go in the same file
106 - If appending to an existing file, add the new rule element inside the existing `<SharingRules>` root
107
1088b. **Name the rule** — derive `<fullName>` from the intent (PascalCase, no spaces, descriptive). Generate a matching `<label>` in Title Case with spaces.
109
110#### For Edit:
111
1128a. **Locate the target rule** — find the rule by `<fullName>` or `<label>` in the existing `.sharingRules-meta.xml` file.
113
1148b. **Gate unsupported edits** — the platform does NOT support in-place modification of `<sharedTo>` or `<sharedFrom>` elements. If the user requests a change to the sharing target or source, refuse the edit and instruct them to delete the existing rule and create a new one with the desired target. This is the same pattern used for rule-type changes (see TC-16).
115
1168c. **Determine modifications based on rule type**:
117 - **Owner-based rules (`sharingOwnerRules`)**: only `<accessLevel>` can be edited. The platform does not support modifying any other element (`sharedTo`, `sharedFrom`, `label`) on owner rules. If the user requests changes beyond access level, refuse and instruct them to delete + create.
118 - **Criteria-based rules (`sharingCriteriaRules`)**: supported editable elements are `<accessLevel>`, `<criteriaItems>`, `<label>`, and `<booleanFilter>`.
119 - **Guest rules (`sharingGuestRules`)**: supported editable elements are `<accessLevel>`, `<criteriaItems>`, `<label>`, and `<includeHVUOwnedRecords>`.
120
121#### For Delete:
122
1238a. **Locate the target rule** — find the rule by `<fullName>` or `<label>` in the existing `.sharingRules-meta.xml` file.
124
1258b. **Count remaining rules** — run `scripts/count-remaining-rules.sh <file>` to get the total rule count. If the count is 1 (only the rule being deleted), the file must be removed entirely in Phase 4.
126
1278c. **Delegate destructive deployment to `platform-destructive-deploy`** — a normal `sf project deploy start` is additive and will NOT remove a rule from the org. Delegate to the `platform-destructive-deploy` skill with the following context:
128 - Metadata type: `SharingCriteriaRule`, `SharingOwnerRule`, or `SharingGuestRule` (depending on the rule type)
129 - Member: `<ObjectName>.<RuleFullName>`
130 - Target org: the user's specified org
131
132### Phase 4 — Write and Verify
133
1349. **Apply the change**:
135 - **Create**: Write the file to `<packageDir>/sharingRules/<ObjectName>.sharingRules-meta.xml`.
136 - **Edit**: Update only the elements identified in step 8b; preserve all other elements exactly as they were.
137 - **Delete (rules remain)**: Write the updated file with the target rule removed.
138 - **Delete (last rule)**: Remove the file `<packageDir>/sharingRules/<ObjectName>.sharingRules-meta.xml` entirely.
139
14010. **Run the verification checklist** below and consult the examples files (`examples/create-cases.md`, `examples/edit-cases.md`, `examples/delete-cases.md`) for scenario-specific expected behaviors before presenting output.
141
142---
143
144## Verification Checklist
145
146### Universal Checks
147- [ ] Does the file have the XML declaration and `<SharingRules xmlns="http://soap.sforce.com/2006/04/metadata">` root?
148- [ ] Is there exactly one file per object with all rules inside it?
149- [ ] Does `<fullName>` use PascalCase with no spaces?
150- [ ] Is `<label>` present and human-readable?
151- [ ] Is `<accessLevel>` one of `Read` or `Edit`?
152
153### Criteria Rule Checks
154- [ ] Is `<includeRecordsOwnedByAll>` present (required boolean)?
155- [ ] Does each `<criteriaItems>` have `<field>`, `<operation>`, and `<value>`?
156- [ ] Are picklist values valid for the target org?
157
158### Guest Rule Checks CRITICAL
159- [ ] Does `<sharedTo>` use `<guestUser>` (NOT `<role>` or `<group>`)?
160- [ ] Is `<includeHVUOwnedRecords>` present (required boolean)?
161- [ ] Is `<includeRecordsOwnedByAll>` ABSENT (only for criteria rules, not guest rules)?
162
163### Owner Rule Checks
164- [ ] Does the rule have both `<sharedFrom>` and `<sharedTo>` elements?
165- [ ] Do both use valid `<role>`, `<roleAndSubordinates>`, or `<group>` targets?
166
167### Edit Operation Checks
168- [ ] Was the edit against a freshly retrieved file (not a stale local copy)?
169- [ ] Is the edit limited to supported fields for the rule type?
170 - Owner rules: only `accessLevel`
171 - Criteria rules: `accessLevel`, `criteriaItems`, `label`, `booleanFilter`
172 - Guest rules: `accessLevel`, `criteriaItems`, `label`, `includeHVUOwnedRecords`
173- [ ] Was `sharedTo`/`sharedFrom` left unchanged? (if user requested that change, refuse and advise delete + create)
174- [ ] Was only the intended element modified?
175- [ ] Are all required elements still present after the edit?
176- [ ] Does the modified rule still pass the universal checks above?
177
178### Delete Operation Checks
179- [ ] Was the correct rule removed (matched by `<fullName>`)?
180- [ ] Is the remaining XML well-formed with proper `<SharingRules>` root?
181- [ ] If no rules remain, was the file removed entirely?
182- [ ] Was `platform-destructive-deploy` delegated to with the correct metadata type (`SharingCriteriaRule`, `SharingOwnerRule`, or `SharingGuestRule`)?
183
184### Account-Specific Checks CRITICAL
185- [ ] If object is Account, is `<accountSettings>` present with all three sub-elements?
186- [ ] Are `<caseAccessLevel>`, `<contactAccessLevel>`, `<opportunityAccessLevel>` all set?
187
188---
189
190## Rules / Constraints
191
192| Constraint | Rationale |
193|-----------|-----------|
194| One `.sharingRules-meta.xml` file per object | Platform requirement — multiple files cause deployment errors |
195| Guest rules must use `<guestUser>` in `sharedTo` | Using `<role>` or `<group>` causes: "Specify a guest user's nickname for the guestUser field" |
196| Account rules require `<accountSettings>` | Without it: "AccountSettings is required for account sharing rules" |
197| `includeRecordsOwnedByAll` is required on criteria rules | Missing it causes: "Required field is missing: sharingCriteriaRules" |
198| `includeHVUOwnedRecords` is required on guest rules | Missing it causes deployment failure |
199| Criteria field values must exist as picklist values on the org | Invalid values cause: "Picklist value does not exist" |
200| Never hardcode file paths — resolve from `sfdx-project.json` | Customer projects use custom package directories |
201| For managed package custom objects, use the full API name including namespace prefix (e.g., `ns__Object__c`) | Namespace-prefixed objects store sharing rules under the prefixed name |
202| `sharedTo` and `sharedFrom` cannot be edited in place | Platform does not support modifying sharing targets — deploy will fail. Delete the rule and create a new one instead |
203| Owner-based rules only support editing `accessLevel` | No other field (`label`, `sharedTo`, `sharedFrom`) can be modified on owner rules — delete and recreate instead |
204| Always retrieve from the org before edit or delete | Local files may be stale; editing a stale file can recreate deleted rules or overwrite concurrent changes |
205| Deleting a rule requires a destructive deployment | A normal deploy is additive — it will not remove rules from the org. Delegate to `platform-destructive-deploy` |
206| Edit must preserve unmodified elements | Changing only `accessLevel` must not alter `criteriaItems` or other fields |
207| Delete must remove the entire rule block | Partial deletion leaves invalid XML and causes deployment failures |
208| Delete last rule removes the file | An empty `<SharingRules>` root with no children is invalid metadata |
209
210---
211
212## Gotchas
213
214| Issue | Resolution |
215|-------|------------|
216| Guest rule uses `<role>` instead of `<guestUser>` | Replace with `<guestUser>CommunityNickname</guestUser>` |
217| Account rule missing `accountSettings` | Add `<accountSettings>` with all three access level sub-elements set to `None` |
218| Criteria rule missing `includeRecordsOwnedByAll` | Add `<includeRecordsOwnedByAll>true</includeRecordsOwnedByAll>` |
219| Picklist value mismatch | Query the org for valid values before generating criteria |
220| Appending duplicates existing rule name | Check existing `<fullName>` values before writing |
221| Guest user nickname not found | Query: `SELECT CommunityNickname FROM User WHERE UserType='Guest' AND IsActive=true` |
222| User requests edit to `sharedTo` or `sharedFrom` | Not supported — refuse the edit and instruct user to delete + create a new rule |
223| User requests edit to owner rule beyond `accessLevel` | Not supported — owner rules only allow `accessLevel` edits. Refuse and instruct user to delete + create |
224| Editing changes rule type (e.g., criteria → owner) | Not supported — delete the old rule and create a new one instead |
225| Local file is stale (rule deleted/changed in org) | Always retrieve fresh from org before edit or delete to avoid recreating removed rules |
226| Delete deployed with normal deploy (no destructive manifest) | Rule remains in the org — delegate to `platform-destructive-deploy` for proper removal |
227| Deleting a rule referenced by other automation | Warn the user about potential downstream impact |
228| Delete leaves malformed XML | Ensure proper XML structure after removal; validate the file is well-formed |
229
230---
231
232## Output Expectations
233
234Deliverables:
235- **For get operations**: `<packageDir>/sharingRules/<ObjectName>.sharingRules-meta.xml` — retrieved sharing rules file from the org, plus a formatted summary of all rules found
236- **For create/edit/delete operations**: `<packageDir>/sharingRules/<ObjectName>.sharingRules-meta.xml` — complete sharing rules file for the target object
237
238---
239
240## Cross-Skill Integration
241
242| Need | Delegate to |
243|------|-------------|
244| Permission set configuration | `platform-permission-set-generate` skill |
245| Custom object creation (if target object doesn't exist) | `platform-custom-object-generate` skill |
246| Destructive deployment (rule deletion from org) | `platform-destructive-deploy` skill |
247
248---
249
250## Reference File Index
251
252| File | When to read |
253|------|-------------|
254| `references/rule-types.md` | Phase 2 — before generating any rule, to get the complete XML schema for each rule type |
255| `scripts/count-remaining-rules.sh` | Phase 3, step 8b (Delete) — count sharing rule elements to determine if file should be removed |
256| `examples/create-cases.md` | Phase 4, step 10 — expected behavior for create and append scenarios |
257| `examples/edit-cases.md` | Phase 4, step 10 — expected behavior for edit scenarios |
258| `examples/delete-cases.md` | Phase 4, step 10 — expected behavior for delete scenarios |