@@ -108,10 +108,25 @@ Want to add a skill for your favorite language? [Open a PR](https://github.com/g
108108
109109---
110110
111- ## Using gt Skills in Other Tools
111+ ## Using Skills in Other Tools
112112
113113The skills that power ` gt ` can also be used in other AI coding tools. Here's how to apply them in your favorite environment:
114114
115+ ### Cursor
116+
117+ Cursor has the ** strongest support** for project rules via ` .cursorrules ` :
118+
119+ ``` bash
120+ # Export skills directly to Cursor format
121+ gt skills show go > .cursorrules
122+
123+ # Or combine multiple skills
124+ gt skills show go >> .cursorrules
125+ gt skills show tdd-bug-fix >> .cursorrules
126+ ```
127+
128+ Cursor reads ` .cursorrules ` automatically and applies them to ** every** interaction—no need to ask.
129+
115130### VS Code (GitHub Copilot)
116131
117132GitHub Copilot supports custom instructions via files in your project:
@@ -132,34 +147,24 @@ gt skills show tdd-bug-fix > .github/prompts/tdd.prompt.md
132147
133148Use in Copilot Chat by referencing the prompt.
134149
135- ### Cursor
136-
137- Cursor has strong support for project rules via ` .cursorrules ` :
150+ ### Antigravity (Gemini in IDE)
138151
139- ``` bash
140- # Export skills directly to Cursor format
141- gt skills show go > .cursorrules
152+ If you're using Google's Antigravity (Gemini IDE integration):
142153
143- # Or combine multiple skills
144- gt skills show go >> .cursorrules
145- gt skills show tdd-bug-fix >> .cursorrules
154+ 1 . Create ` .gemini/settings.json ` in your project:
155+ ``` json
156+ {
157+ "customInstructions" : " See .gemini/skills/ for coding guidelines"
158+ }
146159```
147160
148- Cursor reads ` .cursorrules ` automatically and applies them to ** every** interaction—no need to ask.
149-
150- ### Replit (Agent / Ghostwriter)
151-
152- Replit doesn't auto-load rule files yet, but you can use a convention:
153-
161+ 2 . Export skills to ` .gemini/skills/ ` :
154162``` bash
155- # Export to a RULES file
156- gt skills show python > RULES.md
163+ mkdir -p .gemini/skills
164+ gt skills show python > .gemini/skills/python.md
165+ gt skills show tdd-bug-fix > .gemini/skills/tdd.md
157166```
158167
159- ** Tips for Replit:**
160- 1 . Keep ` RULES.md ` ** open in an editor tab** —Ghostwriter prioritizes open files
161- 2 . When using Replit Agent, start with: * "Read RULES.md and follow strictly"*
162-
163168### Google Gemini (AI Studio / API)
164169
165170For Gemini, use skills as system instructions:
@@ -208,36 +213,31 @@ message = client.messages.create(
208213)
209214```
210215
211- ### Antigravity (Gemini in IDE)
212-
213- If you're using Google's Antigravity (Gemini IDE integration):
216+ ### Replit (Agent / Ghostwriter)
214217
215- 1 . Create ` .gemini/settings.json ` in your project:
216- ``` json
217- {
218- "customInstructions" : " See .gemini/skills/ for coding guidelines"
219- }
220- ```
218+ Replit doesn't auto-load rule files yet, but you can use a convention:
221219
222- 2 . Export skills to ` .gemini/skills/ ` :
223220``` bash
224- mkdir -p .gemini/skills
225- gt skills show python > .gemini/skills/python.md
226- gt skills show tdd-bug-fix > .gemini/skills/tdd.md
221+ # Export to a RULES file
222+ gt skills show python > RULES.md
227223```
228224
225+ ** Tips for Replit:**
226+ 1 . Keep ` RULES.md ` ** open in an editor tab** —Ghostwriter prioritizes open files
227+ 2 . When using Replit Agent, start with: * "Read RULES.md and follow strictly"*
228+
229229---
230230
231231## Quick Reference
232232
233233| Tool | Config Location | Auto-loaded? |
234234| ------| -----------------| --------------|
235235| ** gt** | Built-in | ✅ Yes |
236- | ** VS Code Copilot** | ` .github/copilot-instructions.md ` | ✅ Yes |
237236| ** Cursor** | ` .cursorrules ` | ✅ Yes (strong) |
238- | ** Replit** | ` RULES.md ` (convention) | ❌ Manual |
237+ | ** VS Code Copilot** | ` .github/copilot-instructions.md ` | ✅ Yes |
238+ | ** Antigravity** | ` .gemini/skills/ ` | ⚡ Partial |
239239| ** Gemini** | System instruction | ❌ Manual |
240240| ** Claude** | System prompt | ❌ Manual |
241- | ** Antigravity ** | ` .gemini/skills/ ` | ⚡ Partial |
241+ | ** Replit ** | ` RULES.md ` (convention) | ❌ Manual |
242242
243243> 💡 ** Pro tip** : Commit your skills files to git so your whole team benefits from consistent AI-generated code!
0 commit comments