spritecook-mcp 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/editors.mjs +2 -14
- package/src/setup.mjs +1 -1
package/package.json
CHANGED
package/src/editors.mjs
CHANGED
|
@@ -340,21 +340,9 @@ function writeClaudeCodeConfig(configPath, apiKey) {
|
|
|
340
340
|
// ── Helpers ─────────────────────────────────────────────────────────────
|
|
341
341
|
|
|
342
342
|
function getAntigravityConfigPath() {
|
|
343
|
-
const platform = process.platform;
|
|
344
343
|
const home = homedir();
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
return join(home, 'Library', 'Application Support', 'Google', 'Antigravity', 'mcp_config.json');
|
|
348
|
-
}
|
|
349
|
-
if (platform === 'win32') {
|
|
350
|
-
const appData = process.env.APPDATA || join(home, 'AppData', 'Roaming');
|
|
351
|
-
return join(appData, 'Google', 'Antigravity', 'mcp_config.json');
|
|
352
|
-
}
|
|
353
|
-
if (platform === 'linux') {
|
|
354
|
-
return join(home, '.config', 'Google', 'Antigravity', 'mcp_config.json');
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
return null;
|
|
344
|
+
// Antigravity stores MCP config at ~/.gemini/antigravity/mcp_config.json on all platforms
|
|
345
|
+
return join(home, '.gemini', 'antigravity', 'mcp_config.json');
|
|
358
346
|
}
|
|
359
347
|
|
|
360
348
|
function getClaudeDesktopConfigPath() {
|
package/src/setup.mjs
CHANGED
|
@@ -131,6 +131,6 @@ export async function run() {
|
|
|
131
131
|
|
|
132
132
|
console.log();
|
|
133
133
|
console.log(chalk.dim(' Then try asking your AI agent:'));
|
|
134
|
-
console.log(chalk.white(' "Generate a
|
|
134
|
+
console.log(chalk.white(' "Generate a chicken sprite"'));
|
|
135
135
|
console.log();
|
|
136
136
|
}
|