
đ You can leverage the Antigravity Standalone App powered by Gemini and Claude AI models to automatically research, draft, and format wiki pages. By providing the AI agent with access to all related repositories, it can cross-reference code and graphics to create accurate and comprehensive documentation.
âšī¸ Note: You may need a paid Google One AI subscription to use the recommended AI agents. You can subscribe via the Google One AI plan subscription page.
- The recommended AI model for easy tasks is Gemini 3.5 Flash (Medium).
- The recommended AI model for moderately difficult tasks is Gemini 3.1 Pro (High). It requires at least the $23 Google AI Pro plan.
- The recommended AI model for difficult tasks is Claude Opus 4.6 (Thinking). It requires at least the $100 Google AI Ultra plan.
đ Local Repository Setup
Ensure you have the following repositories cloned locally on your computer:
-
GnollHackWiki(The wiki repository for creating and editing pages) -
GnollHack(The game repository for researching mechanics, stats, and source code) -
GnollHackTileSet(The tileset repository for finding sprite assets)
âī¸ Antigravity Workspace Configuration
- Open the Antigravity Standalone App.
- Create a new project and add all three repository folders (
GnollHackWiki,GnollHack, andGnollHackTileSet) to it. This allows the agents to read and search across the entire project ecosystem. Name the project GnollHackWiki.
đ§ Model Selection
The Antigravity App allows you to select between different models and reasoning levels. The following are the recommended models and their reasoning levels for wiki editing:
- đ Gemini 3.5 Flash (Medium): This is the recommended model for easy tasks. It can also convert images to WebP.
- đ ī¸ Gemini 3.1 Pro (High): This is the recommended model for moderately difficult tasks. It is also excellent for answering separate questions outside of agentic workflows.
- đ Claude Opus 4.6 (Thinking): This is the recommended model for difficult tasks, such as verifying complex information on the wiki against the GnollHack codebase. It excels at advanced reasoning and inspecting vast amounts of code with great accuracy.
âšī¸ Note: Claude Opus 4.6 consumes a large amount of usage quota per task, and therefore you may only be able to use it a few times a week with the $100 AI Ultra Plan. If you use it often, you need to purchase additional AI credits or upgrade to the highest-tier plan.
Visual Studio Code Keyboard Shortcuts
For additional speed in wiki editing, it is useful to add a few keyboard shortcuts to Visual Studio Code. They will copy your current editing position in Visual Studio Code to the clipboard, which you can then quickly paste to the Antigravity Standalone App.
1. Copy All Current File Info to Clipboard
The first keyboard shortcut copies the current repository name, relative file path, and line number.
Example Output: In the GnollHackWiki repository, in the Items/Long sword.md file at line 5
2. Copy Current Relative File Path to Clipboard
The second keyboard shortcut copies only the relative path of the current file.
Example Output: Items/Long sword.md
Step 1: Create the Custom Tasks
- Open the Command Palette in VS Code (
Ctrl+Shift+P). - Search for and select
Tasks: Open User Tasks. - Add the following task configuration into the
"tasks"array of yourtasks.jsonfile:
{
"label": "Copy Formatted Path and Line",
"type": "shell",
"command": "Set-Clipboard -Value 'In the ${workspaceFolderBasename} repository, in the ${relativeFile} file at line ${lineNumber}'",
"presentation": {
"reveal": "never",
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
"problemMatcher": []
},
{
"label": "Copy Relative Path",
"type": "shell",
"command": "Set-Clipboard -Value '${relativeFile}'",
"presentation": {
"reveal": "never",
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
"problemMatcher": []
}
Step 2: Bind the Keyboard Shortcuts
Now, let's bind these tasks to the Ctrl+K, A and Ctrl+K, B key chords.
- Open the Command Palette (
Ctrl+Shift+P). - Search for and select
Preferences: Open Keyboard Shortcuts (JSON). - Add the following entry to the JSON array in your
keybindings.jsonfile:
{
"key": "ctrl+k a",
"command": "workbench.action.tasks.runTask",
"args": "Copy Formatted Path and Line"
},
{
"key": "ctrl+k b",
"command": "workbench.action.tasks.runTask",
"args": "Copy Relative Path"
}
Usage
- Open the
GnollHackWikirepository folder in Visual Studio Code. - Open any Markdown file in the repository for editing.
- Place your cursor on the line you want to reference.
- Press
Ctrl+K, release, and then pressAorB. - The formatted string is now copied to your clipboard and ready to be pasted!
đ¤ Common AI Tasks
đ Checking Grammar and Spelling
- Recommended Model: Gemini 3.5 Flash (Medium)
đĄ Example Prompt: Check the grammar and spelling in the "Alchemy.md" page and fix any typos. Do not change the overall tone or structure of the document.
đ Formatting Text and Tables
- Recommended Model: Gemini 3.5 Flash (Medium)
đĄ Example Prompt: Format the monster stats list in "Monsters.md" into a Markdown table with columns for Name, Base Level, Health, and Armor Class.
đ Researching and Creating a New Page
- Recommended Model: Gemini 3.1 Pro (High)
đĄ Example Prompt: Research the 'Archon' monster in the GnollHack codebase. Create a new wiki page for it under
/Monsters/, following the wiki conventions. Find its image in the GnollHackTileSet repository, ensure it is in WebP format, and embed it correctly.
âī¸ Verifying Wiki Information Against Codebase
-
Recommended Models:
- Gemini 3.1 Pro (High): Simple information
- Claude Opus 4.6 (Thinking): Complex information
đĄ Example Prompt: Verify the damage stats of the "Vorpal Blade" in "Artifacts.md" against the C source code in the GnollHack repository. If there are any discrepancies, update the wiki page to match the code.