VincentChuWaiChow/vanguard-frontier-agentic/skills/salesforce/salesforce-soql-generator-skill/SKILL.md
salesforce-soql-generator-skill
Generates SOQL queries from natural-language requirements without executing them. T0 generation skill — emits ready-to-paste SOQL with selectivity analysis, governor-limit guidance, and a 100-point quality score. Pairs with salesforce-soql-explorer-skill for live execution. TRIGGER when: user describes a query in plain English, asks for SOQL syntax help, needs an aggregate or relationship query, wants a pipeline hygiene query, needs report-equivalent SOQL. Trigger phrases: "write SOQL for", "how
- Source repository stars
- 21
- Declared platforms
- 0
- Static risk flags
- 0
- Last source update
- 2026-08-27
- Source checked
- 2026-08-28
Decision brief
What it does: where it fits
Pure generation skill — plain English to production-ready SOQL. This skill is a translator, not an executor. It produces ready-to-paste queries with selectivity analysis and governor-limit guidance, then hands off to salesforce-soql-explorer-skill for live execution.
Not for
- SELECT pattern
- Missing LIMIT
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/VincentChuWaiChow/vanguard-frontier-agentic --skill "skills/salesforce/salesforce-soql-generator-skill"Inspect the Agent Skill "salesforce-soql-generator-skill" from https://github.com/VincentChuWaiChow/vanguard-frontier-agentic/blob/e01b936730332eca271896571d43cc2013c67f3f/skills/salesforce/salesforce-soql-generator-skill/SKILL.md at commit e01b936730332eca271896571d43cc2013c67f3f. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
Recommended Workflow
Identify the root sObject and clarify whether the query is for: - Record retrieval (display, export) - Aggregate analysis (GROUP BY, COUNT, SUM) - Relationship traversal (parent fields from child, child subquery from parent) - Anti-join / semi-join (NOT IN, EXISTS equivalent)
Record retrieval (display, export)Aggregate analysis (GROUP BY, COUNT, SUM)Relationship traversal (parent fields from child, child subquery from parent) - 02
Step 1 — Confirm target sObject and primary purpose
Identify the root sObject and clarify whether the query is for: - Record retrieval (display, export) - Aggregate analysis (GROUP BY, COUNT, SUM) - Relationship traversal (parent fields from child, child subquery from parent) - Anti-join / semi-join (NOT IN, EXISTS equivalent)
Record retrieval (display, export)Aggregate analysis (GROUP BY, COUNT, SUM)Relationship traversal (parent fields from child, child subquery from parent) - 03
Step 2 — Generate the simplest correct query
Apply these constraints from the start: - Only enumerate required fields — no SELECT - Use the most selective WHERE clause available (indexed fields first) - Apply LIMIT appropriate to the use case (default 200 for display, omit for aggregates that return few rows, use 50000-cei…
Only enumerate required fields — no SELECTUse the most selective WHERE clause available (indexed fields first)Apply LIMIT appropriate to the use case (default 200 for display, omit for - 04
Step 3 — Score selectivity
Evaluate the generated query against the selectivity rubric:
Does the WHERE clause use at least one indexed field? (Id, Name, OwnerId,Is a LIMIT present (where appropriate)?Is the field count ≤ 10? - 05
Step 4 — Add governor-limit guidance
For every generated query, provide: - Estimated row return range and relationship to the 50,000-row limit - Whether a LIMIT is essential or advisory - Whether the query is safe to embed in a transaction (≤ 100 SOQL queries per transaction ceiling awareness) - Whether USING SCOPE…
Estimated row return range and relationship to the 50,000-row limitWhether a LIMIT is essential or advisoryWhether the query is safe to embed in a transaction (≤ 100 SOQL queries per
Permission review
Static risk signals and limitations
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 93/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 21 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- VincentChuWaiChow/vanguard-frontier-agentic
- Skill path
- skills/salesforce/salesforce-soql-generator-skill/SKILL.md
- Commit
- e01b936730332eca271896571d43cc2013c67f3f
- License
- Apache-2.0
- Collected
- 2026-08-28
- Default branch
- master
View the original SKILL.md
salesforce-soql-generator-skill
Pure generation skill — plain English to production-ready SOQL. This skill
is a translator, not an executor. It produces ready-to-paste queries with
selectivity analysis and governor-limit guidance, then hands off to
salesforce-soql-explorer-skill for live execution.
When This Skill Owns the Task
Use salesforce-soql-generator-skill when the work requires query authoring
from a description, not live data retrieval:
- "Write SOQL to find all opportunities closing this quarter with no next step"
- "Give me a query to count contacts by account with no email"
- "How do I query stale leads not modified in 90 days?"
- "I need aggregate SOQL for pipeline by stage and owner"
- "Generate the SOQL equivalent of this report"
Delegate elsewhere when:
| Situation | Skill to use |
|---|---|
| Query must be executed against a live org | salesforce-soql-explorer-skill |
| User needs permission-set or profile diagnostic SOQL | salesforce-permission-model-review-skill |
| Query result will drive DML or automation | Review with salesforce-metadata-review-skill first |
| Apex selector pattern needed (not raw SOQL) | querying-soql (sf-skills) |
| Report or dashboard conversion | Assess whether SOQL truly maps to Report; flag gap |
Required Context to Gather First
Before generating any query, confirm or infer:
- Target sObject — API name (e.g.,
Opportunity,Lead,Contact,My_Custom_Object__c). Is this a single-object or multi-level relationship query? - Fields needed — enumerate explicitly, or accept 'minimal' and choose the fewest informative fields.
- Filter criteria — WHERE conditions, date literals, owner scope, record type, status values.
- Sort and pagination — ORDER BY field, ASC/DESC, LIMIT, OFFSET if needed.
- Intended use — display in UI, CSV export, automation trigger, Apex selector, or report equivalent. Affects LIMIT choice and field set.
- Expected result volume — rough estimate. Affects selectivity guidance.
- Relationship depth — parent lookup traversal, child subquery, or polymorphic relationship?
If any of these are ambiguous, make a conservative assumption, state it explicitly, and offer an alternative.
Recommended Workflow
Step 1 — Confirm target sObject and primary purpose
Identify the root sObject and clarify whether the query is for:
- Record retrieval (display, export)
- Aggregate analysis (GROUP BY, COUNT, SUM)
- Relationship traversal (parent fields from child, child subquery from parent)
- Anti-join / semi-join (NOT IN, EXISTS equivalent)
State the confirmed interpretation before generating.
Step 2 — Generate the simplest correct query
Apply these constraints from the start:
- Only enumerate required fields — no
SELECT * - Use the most selective WHERE clause available (indexed fields first)
- Apply LIMIT appropriate to the use case (default 200 for display, omit for aggregates that return few rows, use 50000-ceiling awareness for exports)
- Traverse relationships only as deep as necessary
Produce one canonical query first, then offer variants.
Step 3 — Score selectivity
Evaluate the generated query against the selectivity rubric:
- Does the WHERE clause use at least one indexed field? (Id, Name, OwnerId, ExternalId__c, CreatedDate, standard lookup fields, custom external IDs)
- Is a LIMIT present (where appropriate)?
- Is the field count ≤ 10?
- Are date literals used correctly (TODAY, THIS_WEEK, LAST_N_DAYS:n)?
- Are formula fields or non-indexed fields used in WHERE without a companion indexed filter?
Document the selectivity assessment inline.
Step 4 — Add governor-limit guidance
For every generated query, provide:
- Estimated row return range and relationship to the 50,000-row limit
- Whether a LIMIT is essential or advisory
- Whether the query is safe to embed in a transaction (≤ 100 SOQL queries per transaction ceiling awareness)
- Whether
USING SCOPEorFOR REFERENCE/FOR VIEW/FOR UPDATElocking hints apply
Step 5 — Provide variant queries
Emit at least two variants beyond the canonical query:
- Filtered variant — narrower scope (add date filter, status filter, or owner scope)
- Aggregate variant — GROUP BY with COUNT / SUM where applicable
- Paginated variant — with LIMIT + OFFSET or a keyset-pagination pattern using WHERE Id > :lastId when the result set could exceed one page
Step 6 — Output ready-to-paste SOQL and handoff recommendation
Emit the structured output (see Output Format). Always include a
handoff_recommendation pointing to salesforce-soql-explorer-skill for
live execution, or to the appropriate review skill if the query surfaces a
governance concern.
Quality Scoring Rubric (100-point)
Score every generated query before emitting. Threshold: 80+ acceptable for paste-ready output; 60–79 emit with caveat; below 60 revise before emitting.
| Dimension | Points | What earns full marks |
|---|---|---|
| Selectivity | 30 | WHERE uses at least one indexed field; no full-table-scan pattern on objects likely > 10k records |
| Field minimality | 20 | Only required fields; no SELECT *; field count ≤ 10 for display queries |
| LIMIT present | 15 | LIMIT applied where result set could be unbounded; aggregate queries exempt when GROUP BY guarantees few rows |
| Syntax correctness | 20 | Valid SOQL syntax; correct relationship traversal notation; correct date literal usage; no reserved word conflicts |
| Governor-limit safety | 15 | Row return estimate well below 50k ceiling; embeddable in transaction; no query-in-loop anti-pattern implied |
Scoring penalties:
- No WHERE clause on a high-volume object (> 50k records likely): −20
SELECT *pattern: −15- Missing LIMIT on unbounded query: −15
- Formula field in WHERE without indexed companion: −10
- Incorrect date literal syntax: −10
Output Format
generated_query: |
SELECT <fields>
FROM <SObject>
WHERE <filter>
ORDER BY <field> <ASC|DESC>
LIMIT <n>
interpretation: "<what was understood from the natural-language request>"
alternate_queries:
filtered: |
SELECT <fields>
FROM <SObject>
WHERE <narrower filter>
LIMIT <n>
aggregate: |
SELECT <grouping_field>, COUNT(Id) record_count
FROM <SObject>
WHERE <filter>
GROUP BY <grouping_field>
paginated: |
SELECT <fields>
FROM <SObject>
WHERE Id > :lastId AND <filter>
ORDER BY Id ASC
LIMIT 200
selectivity_analysis:
indexed_filters_used: ["<field1>", "<field2>"]
non_indexed_filters: ["<field>"]
full_table_scan_risk: "low | medium | high"
notes: "<explanation>"
governor_limit_notes:
estimated_row_range: "<low estimate> – <high estimate>"
limit_advisory: "<why this LIMIT was chosen>"
transaction_safe: true | false
notes: "<any ceiling-proximity warnings>"
suggested_index:
- field: "<FieldApiName>"
reason: "<why an index on this field would help>"
score: <0-100>
score_breakdown:
selectivity: <0-30>
field_minimality: <0-20>
limit_present: <0-15>
syntax_correctness: <0-20>
governor_limit_safety: <0-15>
score_notes: "<what drove the score; any penalties applied>"
handoff_recommendation:
execute_live: "salesforce-soql-explorer-skill"
governance_review: "<skill if a concern surfaced, else 'none'>"
notes: "<when to execute, any pre-execution checks>"
assumptions:
- "<explicit list of assumptions made where input was ambiguous>"
Handoff Rules
| Situation | Hand off to |
|---|---|
| User wants to execute the generated query against a live org | salesforce-soql-explorer-skill |
| Query reveals a governance or access concern | salesforce-permission-model-review-skill |
| Query is a Report-equivalent but a Report likely meets the need | Note the gap; suggest the Report builder as an alternative |
| Permission diagnostic SOQL needed | salesforce-permission-model-review-skill |
| Apex selector pattern needed | querying-soql (sf-skills reference) |
Common Pitfalls
These are the most frequent errors in generated SOQL. Check each before emitting the final query.
SELECT * pattern
SOQL does not support SELECT *. Always enumerate fields. When fields are
unknown, use a minimal set (Id, Name, one or two distinguishing fields)
and note that the user should expand once the schema is confirmed.
Missing LIMIT
Any query on a high-volume object without a LIMIT risks hitting the 50,000-row governor ceiling or causing a query timeout. Always include LIMIT unless:
- The query is a COUNT aggregate with GROUP BY that produces few groups
- The user has explicitly confirmed they need all records and the object has low cardinality
Non-indexed filters
Filtering on formula fields, long-text-area fields, or custom fields without
an explicit custom index is a common performance trap. Always flag these in
selectivity_analysis.non_indexed_filters and recommend that the user check
with their Salesforce admin whether a custom index exists or is needed.
Date literals
Use Salesforce date literal syntax precisely:
TODAY,YESTERDAY,TOMORROWTHIS_WEEK,LAST_WEEK,NEXT_WEEKTHIS_MONTH,LAST_MONTH,NEXT_MONTHTHIS_QUARTER,LAST_QUARTER,NEXT_QUARTERTHIS_YEAR,LAST_YEAR,NEXT_YEARLAST_N_DAYS:n,NEXT_N_DAYS:nLAST_N_WEEKS:n,NEXT_N_WEEKS:nLAST_N_MONTHS:n,NEXT_N_MONTHS:n
Do not mix date literals with datetime comparisons without explicit timezone handling. Salesforce date literals respect the running user's timezone.
Formula fields in WHERE
Formula fields are not indexed and cannot use standard indexes. Including a
formula field in a WHERE clause without a companion indexed filter forces a
full table scan. Flag this in selectivity_analysis and suggest an
alternative (e.g., use the underlying source fields instead of the formula).
Polymorphic relationships
Querying the Who or What fields on Task / Event, or the Owner
field when it can be a User or Queue, requires a TYPEOF expression or a
Type filter. Incorrect assumptions produce incomplete results. Always
clarify whether the relationship is polymorphic and use TYPEOF where needed.
Deep relationship traversal
SOQL allows up to 5 levels of parent traversal and up to 1 level of child subquery nesting (for relationship queries). Beyond these limits, the query will fail at runtime. Flag any traversal depth that approaches the limit.
Reference File Index
| File | When to read |
|---|---|
references/soql-syntax-quickref.md | Syntax reference for SELECT, WHERE, GROUP BY, HAVING, ORDER BY, LIMIT, FOR clauses |
references/common-patterns.md | Pre-built patterns for pipeline, stale records, ownership audit, junction objects |
references/governor-limits.md | Row limits, query count limits, LDV considerations, index guidance |
Frequently asked questions
What to verify before installation and use
What does the salesforce-soql-generator-skill source document cover?
Pure generation skill — plain English to production-ready SOQL. This skill is a translator, not an executor. It produces ready-to-paste queries with selectivity analysis and governor-limit guidance, then hands off to salesforce-soql-explorer-skill for live execution.
How do I install salesforce-soql-generator-skill?
The source record exposes this install command: npx skills add https://github.com/VincentChuWaiChow/vanguard-frontier-agentic --skill "skills/salesforce/salesforce-soql-generator-skill". Inspect the command and pinned source before running it.
Alternatives
Compare before choosing
alirezarezvani/claude-skills
app-store-optimization
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
wanshuiyin/Auto-claude-code-research-in-sleep
citation-audit
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.
prowler-cloud/prowler
postgresql-indexing
PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance
brucesongs/kali-claw
insecure-design
Insecure Design (OWASP A06:2025) focuses on security flaws in system architecture and design phases, rather than code implementation-level bugs.