deploy-apex-grammar
Build apex-tmLanguage grammars and deploy them to all Salesforce extensions in the IDE. Use when deploying grammar changes, testing syntax highlighting, or when the user asks to deploy/copy grammars to the IDE.
ソース情報
- リポジトリ
- forcedotcom/apex-tmLanguage
- ソースの最終更新活動
- 2026年3月25日 18:42
- 検出された SKILL.md の言語
- 英語
- スター
- 40
- フォーク
- 8
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
ファイルエクスプローラー
2 ファイルSKILL.md を表示中
SKILL.md
ソースの指示 · 読み取り専用プレビュー- name
- deploy-apex-grammar
- description
- Build apex-tmLanguage grammars and deploy them to all Salesforce extensions in the IDE. Use when deploying grammar changes, testing syntax highlighting, or when the user asks to deploy/copy grammars to the IDE.
# Deploy Apex Grammar to IDE
## Workflow
1. **Build**: Run `yarn install && yarn build` from the apex-tmLanguage project root.
2. **Deploy**: Run `bash .cursor/skills/deploy-apex-grammar/scripts/deploy.sh` from the project root.
3. **Reload**: Tell the user to reload the window (Command Palette → "Developer: Reload Window").
## Deploy targets
The script copies to all Salesforce extensions that use these grammars:
| Extension | Path | Files |
|-----------|------|-------|
| salesforcedx-vscode-apex | grammars/ | apex, soql |
| apex-language-server-extension | grammars/ | apex, soql |
| salesforcedx-vscode-soql | grammars/ | soql |
Searches both `~/.cursor/extensions/` and `~/.vscode/extensions/`.
## One-liner
```bash
yarn install && yarn build && bash .cursor/skills/deploy-apex-grammar/scripts/deploy.sh
```
GitHubで見る