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.
Files changed (2) hide show
  1. package/README.md +11 -9
  2. 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 (Recomendado — via GitHub)
15
+ ### 1. Instalação
16
16
 
17
17
  ```bash
18
18
  mkdir meu-projeto && cd meu-projeto
19
19
  git init
20
- npm install github:adrianomorais-ganbatte/g-os
20
+ npm install ganbatte-os
21
21
  ./node_modules/.bin/gos install
22
22
  ```
23
23
 
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).
24
+ Alternativa global:
25
+
26
+ ```bash
27
+ npm install -g ganbatte-os
28
+ gos install
29
+ ```
26
30
 
27
- ### 1b. Instalação via npm (workaround)
31
+ Alternativa direto do GitHub (ultima versao do main):
28
32
 
29
33
  ```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
+ npm install github:adrianomorais-ganbatte/g-os
35
+ ./node_modules/.bin/gos install
34
36
  ```
35
37
 
36
38
  ### 2. Pós-Instalação
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ganbatte-os",
3
- "version": "0.2.24",
3
+ "version": "0.2.26",
4
4
  "description": "Framework operacional para design-to-code, squads de entrega e sprint sync com ClickUp.",
5
5
  "bin": {
6
6
  "gos": ".gos/scripts/cli/gos-cli.js"