Compare commits

..

3 Commits

Author SHA1 Message Date
David Picksley
8f60dd27b0
Merge 054ac205b5 into 8ac5836022 2026-07-23 13:16:12 -04:00
Jim Jagielski
8ac5836022
Remove GUSINFO details from CODEOWNERS 2026-07-23 06:27:04 -04:00
Hemant Singh Bisht
c2428c6ff0
chore(W-23538245): remove stale manifest.json and DOCS_ONLY.md (#312)
chore: remove stale manifest.json and DOCS_ONLY.md @W-23538245@

manifest.json was a hand-curated skill registry last updated Feb 2026
that nothing consumes. DOCS_ONLY.md incorrectly states the repo contains
no code.
2026-07-22 21:34:18 +05:30
3 changed files with 1 additions and 426 deletions

View File

@ -1,3 +1,3 @@
# Comment line immediately above ownership line is reserved for related other information. Please be careful while editing. # Comment line immediately above ownership line is reserved for related other information. Please be careful while editing.
#ECCN:Open Source #ECCN:Open Source
#GUSINFO:Open Source,Open Source Workflow,Docs Only #GUSINFO:

View File

@ -1,4 +0,0 @@
## Docs Only
This repo contains docs only; No code is allowed and the content is not
licensed under any Open Source license.

View File

@ -1,421 +0,0 @@
{
"version": 1,
"generatedAt": "2026-02-17T21:01:05.349Z",
"branch": "main",
"prompts": [
{
"name": "PricingService Invocable Scaffold",
"path": "prompts/apex-development/scaffold-invocable-apex.md",
"description": "Create a PricingService Apex class with an invocable getPricing method and typed inputs/outputs for Flow.",
"category": "apex-development",
"tags": [
"apex",
"invocable",
"flow",
"scaffold"
]
},
{
"name": "Travel Plan Object Scaffold",
"path": "prompts/apex-development/scaffold-object.md",
"description": "Provision a Travel Plan custom object with fields, layout, tab, and permission set ready for deployment.",
"category": "apex-development",
"tags": [
"salesforce",
"custom-object",
"scaffold",
"deployment"
]
},
{
"name": "Trigger Refactor Helper",
"path": "prompts/apex-development/trigger-refactoring.md",
"description": "Refactor the Opportunity trigger into a handler pattern with tests",
"category": "apex-development",
"tags": [
"apex",
"refactor",
"testing"
]
},
{
"name": "Account Test Data Generator",
"path": "prompts/data-operations/create-fake-data.md",
"description": "Create an Apex script that generates 10 realistic Account records with complete business data including name, account number, type, industry, annual revenue, ticker symbol, and number of employees. Includes documentation on how to execute the script anonymously.",
"category": "data-operations",
"tags": [
"salesforce",
"apex",
"data-generation",
"test-data",
"developer",
"admin"
]
},
{
"name": "Account Layout Field Enhancement",
"path": "prompts/getting-started/add-fields-pagelayout.md",
"description": "Add Type and Industry fields to the Account page layout for better data organization and reporting.",
"category": "getting-started",
"tags": [
"salesforce",
"account",
"page-layout",
"admin",
"data-management"
]
},
{
"name": "Lead Source Picklist Enhancement",
"path": "prompts/getting-started/add-picklist-value.md",
"description": "Add a new 'Referral' value to the Lead Source picklist on the Lead object for better lead tracking.",
"category": "getting-started",
"tags": [
"salesforce",
"lead",
"picklist",
"data-management",
"admin"
]
},
{
"name": "High Priority Case Assignment Rule",
"path": "prompts/getting-started/create-assignment-rules.md",
"description": "Create an assignment rule that automatically routes high priority Cases to a specific queue or user for immediate attention.",
"category": "getting-started",
"tags": [
"salesforce",
"case-management",
"assignment-rules",
"automation",
"admin"
]
},
{
"name": "Project Object Quickstart",
"path": "prompts/getting-started/create-basic-custom-object.md",
"description": "Scaffold a Project__c custom object with core fields and deployable metadata.",
"category": "getting-started",
"tags": [
"salesforce",
"custom-object",
"beginner"
]
},
{
"name": "Opportunity Days Open Formula",
"path": "prompts/getting-started/create-opp-formula.md",
"description": "Create a formula field on Opportunity that calculates the number of days since the record was created.",
"category": "getting-started",
"tags": [
"salesforce",
"opportunity",
"formula-field",
"automation",
"admin"
]
},
{
"name": "Account Editor Permission Set",
"path": "prompts/getting-started/create-permission-set.md",
"description": "Create a permission set that grants edit access to Account records and assign it to the current user.",
"category": "getting-started",
"tags": [
"salesforce",
"permission-set",
"security",
"admin",
"user-management"
]
},
{
"name": "Account Opportunity Count Roll-Up",
"path": "prompts/getting-started/create-rollup-summary.md",
"description": "Create a roll-up summary field on Account that counts related Opportunities for better relationship tracking.",
"category": "getting-started",
"tags": [
"salesforce",
"account",
"opportunity",
"rollup-summary",
"automation",
"admin"
]
},
{
"name": "Hello World LWC Starter",
"path": "prompts/getting-started/first-lightning-web-component.md",
"description": "Generate a greeting Lightning Web Component and explain its HTML, JS, and metadata files.",
"category": "getting-started",
"tags": [
"lwc",
"ui",
"beginner"
]
},
{
"name": "Opportunity Days Till Close Formula",
"path": "prompts/getting-started/formula-field-days-till-close.md",
"description": "Build an Opportunity formula that calculates days between CreatedDate and CloseDate.",
"category": "getting-started",
"tags": [
"formula",
"opportunity",
"admin"
]
},
{
"name": "Opportunity Close Date Validation",
"path": "prompts/getting-started/opp-validation-rule.md",
"description": "Create a validation rule on Opportunity that prevents saving when the Close Date is in the past.",
"category": "getting-started",
"tags": [
"salesforce",
"opportunity",
"validation-rule",
"data-quality",
"admin"
]
},
{
"name": "StringUtils Utility Scaffold",
"path": "prompts/getting-started/reusable-apex-string-utility-class.md",
"description": "Create a foundational StringUtils Apex helper with core string methods and unit tests.",
"category": "getting-started",
"tags": [
"apex",
"utility",
"testing"
]
},
{
"name": "DateUtils Utility Primer",
"path": "prompts/getting-started/simple-apex-utility-class.md",
"description": "Generate a documented DateUtils Apex class with daysBetween and addDays helpers.",
"category": "getting-started",
"tags": [
"apex",
"utility",
"beginner"
]
},
{
"name": "Opportunity Stage Score Formula",
"path": "prompts/getting-started/stage-based-opportunity-scoring-formula.md",
"description": "Craft a readable Opportunity formula that assigns numeric scores per stage.",
"category": "getting-started",
"tags": [
"formula",
"opportunity",
"admin"
]
},
{
"name": "Test Data Factory Kickoff",
"path": "prompts/getting-started/test-data-factory-basics.md",
"description": "Build an Apex factory for Accounts, Contacts, and Opportunities with usage examples.",
"category": "getting-started",
"tags": [
"apex",
"testing",
"test-data"
]
},
{
"name": "Account Trigger Starter",
"path": "prompts/getting-started/trigger-and-handler-example.md",
"description": "Create a simple Account trigger and handler that sets default values before insert.",
"category": "getting-started",
"tags": [
"apex",
"trigger",
"beginner"
]
},
{
"name": "Account Employee Validation Rule",
"path": "prompts/getting-started/validation-rule-on-account.md",
"description": "Draft a rule that blocks Account save when NumberOfEmployees is blank.",
"category": "getting-started",
"tags": [
"validation-rule",
"account",
"admin"
]
},
{
"name": "Opportunity Approval Investigation",
"path": "prompts/investigation-triage/fix-complex-approval-logic.md",
"description": "Diagnose inconsistent approval checkbox behavior on Opportunities and propose a remediation plan.",
"category": "investigation-triage",
"tags": [
"investigation",
"triage",
"opportunity",
"approval-process"
]
},
{
"name": "Asset Tracker Spec Build",
"path": "prompts/spec-driven-dev/asset-tracker.md",
"description": "Gather requirements and deliver a full Asset tracker app via a spec-driven workflow.",
"category": "spec-driven-dev",
"tags": [
"spec-driven",
"lwc",
"custom-object",
"app"
]
},
{
"name": "Apex Unit Test Generator",
"path": "prompts/testing-automation/create-unit-test.md",
"description": "Create a comprehensive test class for any Apex class with test data setup and result verification.",
"category": "testing-automation",
"tags": [
"salesforce",
"apex",
"testing",
"unit-test",
"automation",
"developer"
]
},
{
"name": "Run All Apex Tests",
"path": "prompts/testing-automation/run-all-test.md",
"description": "Execute all Apex tests in the org and display a comprehensive summary including total tests run, number passed, and overall code coverage percentage.",
"category": "testing-automation",
"tags": [
"salesforce",
"apex",
"testing",
"automation",
"test-coverage"
]
},
{
"name": "Compliment Mixer App",
"path": "prompts/vibe-coding/compliment-mixer.md",
"description": "Build a playful compliment generator with custom UI, persistence, and recent history.",
"category": "vibe-coding",
"tags": [
"vibe-coding",
"lwc",
"app",
"fun"
]
}
],
"rules": [
{
"name": "Apex Development Guardrails",
"path": "rules/apex-development/apex-requirements.md",
"description": "Enforce best practices for Apex architecture, performance, security, and testing.",
"category": "apex-development",
"tags": [
"apex",
"rules",
"guardrails",
"testing",
"security"
]
},
{
"name": "LWC Development Guardrails",
"path": "rules/lwc-development/lwc-requirements.md",
"description": "Standardize Lightning Web Component architecture, UX, and tooling practices.",
"category": "lwc-development",
"tags": [
"lwc",
"rules",
"ux",
"architecture"
]
},
{
"name": "Spec-Driven App Development Standards",
"path": "rules/spec-driven-dev/app-dev.md",
"description": "Apply architecture, integration, and governance requirements for specification-led Salesforce builds.",
"category": "spec-driven-dev",
"tags": [
"spec-driven",
"architecture",
"governance",
"rules"
]
}
],
"skills": [
{
"name": "apex-class",
"path": "skills/apex-development/apex-class/SKILL.md",
"folderPath": "skills/apex-development/apex-class",
"category": "apex-development",
"files": [
"SKILL.md",
"examples/AccountDeduplicationBatch.cls",
"examples/AccountSelector.cls",
"examples/AccountService.cls",
"templates/abstract.cls",
"templates/batch.cls",
"templates/domain.cls",
"templates/dto.cls",
"templates/exception.cls",
"templates/interface.cls",
"templates/queueable.cls",
"templates/schedulable.cls",
"templates/selector.cls",
"templates/service.cls",
"templates/utility.cls"
],
"description": "Generate production-ready Apex classes for Salesforce following enterprise best practices. Covers service classes, selectors, domain classes, batch/queueable/schedulable, DTOs, utilities, interfaces, abstract classes, and custom exceptions. Not for triggers or unit tests."
},
{
"name": "trigger-refactor-pipeline",
"path": "skills/apex-development/trigger-refactor-pipeline/SKILL.md",
"folderPath": "skills/apex-development/trigger-refactor-pipeline",
"category": "apex-development",
"files": [
"SKILL.md",
"assets/test_template.apex",
"references/handler_patterns.md",
"scripts/analyze_trigger.py"
],
"description": "Refactor Salesforce triggers into handler patterns with automated test generation and deployment. Use when modernizing legacy triggers with DML/SOQL in loops or inconsistent patterns.",
"license": "Apache-2.0",
"compatibility": "Requires Salesforce CLI, Python 3.9+",
"allowedTools": "Bash Read Write"
},
{
"name": "deployment-readiness-check",
"path": "skills/metadata-deployments/deployment-readiness-check/SKILL.md",
"folderPath": "skills/metadata-deployments/deployment-readiness-check",
"category": "metadata-deployments",
"files": [
"SKILL.md",
"assets/deployment_checklist.md",
"references/rollback_procedures.md",
"scripts/check_metadata.sh"
],
"description": "Comprehensive pre-deployment validation checklist for Salesforce releases. Use before deploying to production to catch metadata issues, test coverage gaps, and configuration errors.",
"license": "Apache-2.0",
"compatibility": "Requires Salesforce CLI, jq, bash",
"allowedTools": "Bash Read"
},
{
"name": "apex-test-class",
"path": "skills/testing-automation/apex-test-class/SKILL.md",
"folderPath": "skills/testing-automation/apex-test-class",
"category": "testing-automation",
"files": [
"SKILL.md",
"references/assertion-patterns.md",
"references/async-testing.md",
"references/mocking-patterns.md",
"references/test-data-factory.md"
],
"description": "Apex test class generation with TestDataFactory patterns, bulk testing (200+ records), mocking strategies for callouts and async operations, and assertion best practices. Use when creating new Apex test classes, improving test coverage, refactoring existing tests, or implementing proper testing patterns for triggers, services, controllers, batch jobs, queueables, and integrations."
}
]
}