@ruyfranca/myskills 1.0.32 → 1.0.33

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.
Files changed (3) hide show
  1. package/README.md +17 -0
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -366,6 +366,23 @@ npx @ruyfranca/myskills update --agents
366
366
  npx @ruyfranca/myskills update --workflows
367
367
  ```
368
368
 
369
+ ### 🚨 Resolução de Problemas (Troubleshooting)
370
+
371
+ **Erro no Antigravity: `ConnectError: [unknown] Failed to fetch` ou crash de inicialização**
372
+
373
+ Se após utilizar o `install-global` o seu Antigravity parar de funcionar com um erro de *Skills Configuration* ou *Failed to load MCP servers*, **não se desespere**, você não perdeu seu histórico. Isso ocorria em versões anteriores (`<= 1.0.31`) devido a um parser interno do Antigravity que rejeitava arquivos `.md` com cabeçalhos estruturais YAML duplicados.
374
+
375
+ **Como resolver de vez o lado do cliente:**
376
+ 1. Apague apenas a pasta global de workflows que está engasgando o backend:
377
+ - **Mac/Linux**: `rm -rf ~/.gemini/antigravity/global_workflows`
378
+ - **Windows PowerShell**: `Remove-Item -Recurse -Force ~\.gemini\antigravity\global_workflows`
379
+ 2. Pressione `Cmd+R` (ou `Ctrl+R`) no Antigravity e verifique que ele voltou ao normal e ligou com sucesso.
380
+ 3. Agora rode o comando com a versão atualizada (a partir de `1.0.32` já contém a correção embutida):
381
+ ```bash
382
+ npx @ruyfranca/myskills@latest install-global
383
+ ```
384
+ O Antigravity vai reiniciar perfeitamente já com seus global workflows ativos!
385
+
369
386
  ---
370
387
 
371
388
  ## 🔄 Fluxo de Atualização (Para Desenvolvedores)
package/index.js CHANGED
@@ -16,7 +16,7 @@ const AGENTS_DIR = path.join(__dirname, '.agent', 'agents');
16
16
  program
17
17
  .name('myskills')
18
18
  .description('CLI para gerenciar e instalar skills e agents do Antigravity')
19
- .version('1.0.32');
19
+ .version('1.0.33');
20
20
 
21
21
  program
22
22
  .command('list')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ruyfranca/myskills",
3
- "version": "1.0.32",
3
+ "version": "1.0.33",
4
4
  "description": "Biblioteca de skills customizadas para Antigravity / Claude Code",
5
5
  "main": "index.js",
6
6
  "bin": {