You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: remove stale /skill-name invocations for pattern skills (#21)
Pattern skills are not user-invocable β they're consulted by agents
automatically. Replaced /sf-skill-name with sf-skill-name (backtick)
across examples, skills, and README. Rewrote Tips section to describe
natural agent triggering instead of slash commands.
Copy file name to clipboardExpand all lines: README.md
+6-37Lines changed: 6 additions & 37 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -420,52 +420,21 @@ Control which hooks run via the `SCC_HOOK_PROFILE` environment variable:
420
420
421
421
## Tips and Best Practices
422
422
423
-
### Salesforce-Specific Workflows
423
+
### Typical Workflows
424
424
425
-
**New Feature Development:**
425
+
**New Feature:** Describe what you want to build β sf-architect activates automatically, designs the solution, and delegates to domain agents (sf-apex-agent, sf-lwc-agent, sf-flow-agent) with TDD.
426
426
427
-
1.`/blueprint` - Plan the implementation (metadata types, governor limits)
428
-
2.`/sf-tdd-workflow` - Write tests first, then implement
- Use specific prompts: "Review AccountTrigger.cls" not "review everything"
448
-
- Use `/compact` when context gets large
449
-
450
-
### Parallel Workflows
451
-
452
-
- Use `/fork` for non-overlapping tasks
453
-
- Use git worktrees for parallel scratch org work:
454
-
455
-
```bash
456
-
git worktree add ../feature-branch feature-branch
457
-
cd ../feature-branch
458
-
sf org create scratch --alias feature-scratch
459
-
```
429
+
**Code Review:** Ask to review before deploy β sf-review-agent runs a full quality gate (security, governor limits, test coverage, deploy readiness).
460
430
461
431
### Key Principles
462
432
463
433
1.**Governor limits are king** β Every agent checks for limit violations
464
434
2.**Test-first approach** β 75% is the SF minimum, aim for 85%+
465
-
3.**Use the right agent** β Specialized agents give better results than generic prompts
435
+
3.**Be specific** β "Review AccountTrigger.cls" not "review everything"
466
436
4.**Hook profiles matter** β Start with `standard`, move to `strict` for CI
467
-
5.**Context is precious** β Be specific in prompts, disable unused MCPs
468
-
6.**Security baked in** β CRUD/FLS and sharing model from the start
437
+
5.**Security baked in** β CRUD/FLS and sharing model from the start
0 commit comments