ganbatte-os 0.2.23 → 0.2.25
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/README.md +14 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,19 +12,26 @@ O **ganbatte-os** organiza agentes de IA, skills e squads num workspace pronto p
|
|
|
12
12
|
|
|
13
13
|
## Quick Start
|
|
14
14
|
|
|
15
|
-
### 1. Instalação (Recomendado)
|
|
16
|
-
Para transformar qualquer diretório em um workspace ganbatte-os:
|
|
15
|
+
### 1. Instalação (Recomendado — via GitHub)
|
|
17
16
|
|
|
18
17
|
```bash
|
|
19
18
|
mkdir meu-projeto && cd meu-projeto
|
|
20
19
|
git init
|
|
21
|
-
npm install -g
|
|
22
|
-
gos install
|
|
20
|
+
npm install github:adrianomorais-ganbatte/g-os
|
|
21
|
+
./node_modules/.bin/gos install
|
|
23
22
|
```
|
|
24
23
|
|
|
25
|
-
> [!
|
|
26
|
-
>
|
|
27
|
-
|
|
24
|
+
> [!IMPORTANT]
|
|
25
|
+
> **Use install via GitHub enquanto ajustamos o publish no npm registry.** A metadata `bin` esta sendo filtrada pelo registry, quebrando `npx ganbatte-os` e `npm install -g`. Track em [docs/ganbatte-os-test-report-2026-04-20.md](./docs/ganbatte-os-test-report-2026-04-20.md).
|
|
26
|
+
|
|
27
|
+
### 1b. Instalação via npm (workaround)
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
mkdir meu-projeto && cd meu-projeto
|
|
31
|
+
git init
|
|
32
|
+
npm install ganbatte-os
|
|
33
|
+
node ./node_modules/ganbatte-os/.gos/scripts/cli/gos-cli.js install
|
|
34
|
+
```
|
|
28
35
|
|
|
29
36
|
### 2. Pós-Instalação
|
|
30
37
|
Após rodar o install, o framework criará uma estrutura limpa na sua raiz:
|