소스 정보
- 저장소
- tools-only/X-Skills
- 최근 소스 활동
- 2026년 2월 3일 16:04
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill salesforce명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
SOC 직업 분류 기준
SKILL.md 표시 중
| name | salesforce |
| description | Query and manage Salesforce orgs via the official Salesforce MCP server or SF CLI. |
Query and manage your Salesforce org with full context of your business logic.
npm install -g @salesforce/clisf org login web --alias my-prodUpdate the connection info below with your org details:
Org Alias: my-prod
Username: your-user@company.com
Org ID: 00Dxxxxxxxxx
See SALESFORCE_STRUCTURE.md for a template covering:
Tip: Fill in
SALESFORCE_STRUCTURE.mdwith your org's actual objects, fields, and business logic. The more context you provide, the better the AI can write queries and understand your data.
Update with your company's product lines:
Common record types (adjust to your org):
Document your key custom fields:
ACV__cARR__cTCV__cLOB__cmcporter call salesforce.run_soql_query \
query="SELECT Id, Name FROM Account LIMIT 10" \
usernameOrAlias="my-prod" \
directory="$HOME"
sf data query \
--query "SELECT Id, Name FROM Account LIMIT 5" \
--target-org my-prod
Open opportunities by stage:
SELECT Id, Name, StageName, Amount, CloseDate, Account.Name
FROM Opportunity
WHERE IsClosed = false
ORDER BY CloseDate
Renewals closing this quarter:
SELECT Id, Name, Amount, CloseDate, Account.Name
FROM Opportunity
WHERE RecordType.Name = 'Renewal'
AND IsClosed = false
AND CloseDate = THIS_QUARTER
ORDER BY CloseDate
New deals by product line:
SELECT LOB__c, COUNT(Id), SUM(Amount)
FROM Opportunity
WHERE RecordType.Name = 'New'
AND StageName = 'Closed Won'
AND CloseDate = THIS_YEAR
GROUP BY LOB__c
ARR by Account (Top 20):
SELECT Account.Name, SUM(ARR__c)
FROM Opportunity
WHERE StageName = 'Closed Won'
GROUP BY Account.Name
ORDER BY SUM(ARR__c) DESC
LIMIT 20
Recent closed-won deals:
SELECT Id, Name, Amount, CloseDate, Account.Name
FROM Opportunity
WHERE StageName = 'Closed Won'
AND CloseDate = LAST_N_DAYS:30
ORDER BY CloseDate DESC
Account search:
SELECT Id, Name, Industry, AnnualRevenue, Website
FROM Account
WHERE Name LIKE '%SearchTerm%'
Contact lookup:
SELECT Id, Name, Email, Title, Account.Name
FROM Contact
WHERE Email = 'user@example.com'
When using the Salesforce MCP server:
run_soql_query — Run SOQL queries against your orglist_all_orgs — List configured Salesforce orgsopen_org — Open org in browserget_username — Resolve org username/aliasAccount.Name in opportunity queries for contextTODAY, THIS_WEEK, THIS_QUARTER, THIS_YEAR, LAST_N_DAYS:30RecordType.Name to filter by record typeLIMIT your queries to avoid timeouts on large orgsCOUNT() and GROUP BY for aggregationsIsClosed = false and group by StageNameAmount or ACV__c grouped by time period or productRecordType.Name = 'Renewal' with CloseDate rangesIf your org uses multi-year deals:
Add your own reference docs alongside this SKILL.md:
SALESFORCE_STRUCTURE.md — Your org's complete object/field documentationBUSINESS_LOGIC.md — How your org uses Salesforce (deal flow, approval processes)COMMON_QUERIES.md — Frequently used queries specific to your team