ganbatte-os 0.2.24 → 0.2.26
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 +11 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,25 +12,27 @@ 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
|
|
15
|
+
### 1. Instalação
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
18
|
mkdir meu-projeto && cd meu-projeto
|
|
19
19
|
git init
|
|
20
|
-
npm install
|
|
20
|
+
npm install ganbatte-os
|
|
21
21
|
./node_modules/.bin/gos install
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
Alternativa global:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
npm install -g ganbatte-os
|
|
28
|
+
gos install
|
|
29
|
+
```
|
|
26
30
|
|
|
27
|
-
|
|
31
|
+
Alternativa direto do GitHub (ultima versao do main):
|
|
28
32
|
|
|
29
33
|
```bash
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
npm install ganbatte-os
|
|
33
|
-
node ./node_modules/ganbatte-os/.gos/scripts/cli/gos-cli.js install
|
|
34
|
+
npm install github:adrianomorais-ganbatte/g-os
|
|
35
|
+
./node_modules/.bin/gos install
|
|
34
36
|
```
|
|
35
37
|
|
|
36
38
|
### 2. Pós-Instalação
|