@dsv77/aether-kit 1.1.0 → 1.2.1
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/.agents/mcp_config.json +4 -7
- package/.agents/rules/universal-rules.md +1 -0
- package/README.md +19 -0
- package/package.json +1 -1
package/.agents/mcp_config.json
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
|
-
//
|
|
1
|
+
// Copie este conteúdo para as configurações globais da sua IDE (ex: ~/.gemini/antigravity-ide/mcp_config.json)
|
|
2
2
|
{
|
|
3
3
|
"mcpServers": {
|
|
4
|
-
"
|
|
5
|
-
"command": "
|
|
4
|
+
"antigravity-learning-mcp": {
|
|
5
|
+
"command": "node",
|
|
6
6
|
"args": [
|
|
7
|
-
"-
|
|
8
|
-
"@upstash/context7-mcp",
|
|
9
|
-
"--api-key",
|
|
10
|
-
"YOUR_API_KEY"
|
|
7
|
+
"C:\\COLOQUE_O_CAMINHO_ABSOLUTO_DO_SEU_PROJETO_AQUI\\.agents\\mcp\\antigravity-learning-mcp\\dist\\index.js"
|
|
11
8
|
]
|
|
12
9
|
}
|
|
13
10
|
}
|
|
@@ -37,5 +37,6 @@ Before performing ANY `commit` and `push` operations, you MUST perform a proacti
|
|
|
37
37
|
1. **Scan**: Look for exposed secrets, API keys, SQL injections, and other OWASP vulnerabilities.
|
|
38
38
|
2. **Halt & Warn**: If vulnerabilities are found, DO NOT commit. Generate a `security-audit.md` artifact detailing the risks.
|
|
39
39
|
3. **Wait for Approval**: Only proceed with the commit if the user explicitly approves and asks to ignore the warnings.
|
|
40
|
+
4. **Announce Safety**: If NO vulnerabilities are found, you MUST explicitly announce `🛡️ Security Gatekeeper: Nenhuma vulnerabilidade detectada` (or similar) to the user BEFORE proceeding with the commit, ensuring transparency.
|
|
40
41
|
|
|
41
42
|
---
|
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Aether Kit (@dsv77/aether-kit)
|
|
2
2
|
|
|
3
|
+
> **Nota:** Este projeto é um fork aprimorado do [ag-kit](https://github.com/vudovn/ag-kit).
|
|
4
|
+
|
|
3
5
|
Aether Kit é um conjunto de habilidades, workflows, regras de sistema e memórias configuradas nativamente para potencializar a IDE Antigravity.
|
|
4
6
|
|
|
5
7
|
Com o Aether Kit, qualquer projeto instantaneamente herda boas práticas de engenharia, checagens de segurança (Security Gatekeeper) e orquestração de subagentes paralelos, eliminando trabalho repetitivo e blindando o seu código.
|
|
@@ -12,6 +14,23 @@ Você pode instalar o Aether Kit globalmente na sua máquina via NPM:
|
|
|
12
14
|
npm install -g @dsv77/aether-kit
|
|
13
15
|
```
|
|
14
16
|
|
|
17
|
+
## Configuração e Instalação do MCP (Model Context Protocol)
|
|
18
|
+
|
|
19
|
+
O Aether Kit vem preparado para integrar ferramentas avançadas através de servidores MCP locais (ex: `antigravity-learning-mcp`). Para instalá-los e configurá-los corretamente:
|
|
20
|
+
|
|
21
|
+
1. **Instalação das dependências do MCP**:
|
|
22
|
+
Acesse a pasta de servidores MCP embutida no Aether Kit e instale as dependências:
|
|
23
|
+
```bash
|
|
24
|
+
cd .agents/mcp/antigravity-learning-mcp
|
|
25
|
+
npm install
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
2. **Ativando o MCP na sua IDE**:
|
|
29
|
+
Acesse o diretório base das suas configurações globais na IDE Antigravity (geralmente em `~/.gemini/antigravity-ide/mcp/`).
|
|
30
|
+
|
|
31
|
+
3. **Registro do Servidor**:
|
|
32
|
+
Utilize o arquivo `.agents/mcp_config.json` gerado pelo kit como base. Copie os registros que estão nele e cole no arquivo `mcp_config.json` global da sua IDE para habilitar os servidores definitivamente para o contexto do agente.
|
|
33
|
+
|
|
15
34
|
## Como Usar
|
|
16
35
|
|
|
17
36
|
Na raiz de qualquer projeto (seja novo ou existente), rode o comando:
|