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
chore: remove stale references and align plugin schema (#14)
* fix: remove stale references from docs and workflow examples
- docs/ARCHITECTURE.md: agent count 25 → 17
- docs/workflow-examples.md: replace 20+ /skill-name invocations with
natural language prompts (pattern skills are no longer user-invocable)
- docs/authoring-guide.md: update user-invocable skill examples
- CONTRIBUTING.md: update user-invocable skill list to current 17
- CHANGELOG.md: fix markdownlint errors from release-please
* chore: align plugin.schema.json with actual plugin.json structure
Update schema to match reality: author as string or object, agents as
string or array, repository as string or object. Add logo, mcpServers,
hooks fields. Relax required to name+version+description only.
@@ -22,7 +21,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
21
* pre-release consolidation for v0.1.0 ([a2dab5d](https://github.com/jiten-singh-shahi/salesforce-claude-code/commit/a2dab5d4d2b1e2f1f852030b7f7ccbfcf4e7d52f))
23
22
* upgrade CI validators with stricter agent and skill checks ([0b8b314](https://github.com/jiten-singh-shahi/salesforce-claude-code/commit/0b8b314dc7200b5c849b6efc16284ec60c9c1a1c))
24
23
25
-
26
24
### Bug Fixes
27
25
28
26
* align plugin manifests, author metadata, and documentation URL ([e29fa78](https://github.com/jiten-singh-shahi/salesforce-claude-code/commit/e29fa782bfc9f82bb27d90bc6d51685aefc9dd10))
Copy file name to clipboardExpand all lines: docs/authoring-guide.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -198,7 +198,7 @@ Platform skills are Salesforce-adapted patterns for AI-assisted development work
198
198
199
199
## User-Invocable Skill Authoring
200
200
201
-
User-invocable skills are skills that users can invoke directly as slash commands (e.g., `/sf-tdd-workflow`, `/sf-security`). They live in `skills/<skill-name>/SKILL.md` alongside standard skills, but include `user-invocable: true` in their frontmatter.
201
+
User-invocable skills are skills that users can invoke directly as slash commands (e.g., `/sf-help`, `/sf-quickstart`, `/checkpoint`). They live in `skills/<skill-name>/SKILL.md` alongside standard skills, but include `user-invocable: true` in their frontmatter.
202
202
203
203
All commands have been migrated to user-invocable skills. There is no separate `commands/` directory.
204
204
@@ -284,7 +284,7 @@ sf apex run test --class-names MyTest --target-org <alias>
284
284
- Skills use descriptive names like `sf-apex-best-practices`, `sf-security`, `sf-deployment`.
285
285
- Salesforce-specific skills use the `sf-` prefix: `sf-tdd-workflow`, `sf-deployment`, `sf-security`.
286
286
- Platform skills omit the prefix: `checkpoint`, `strategic-compact`, `save-session`.
287
-
- Users invoke them via `/skill-name` (e.g., `/sf-tdd-workflow`, `/sf-security`, `/checkpoint`).
0 commit comments