@igoruehara/canvas-flow 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +14 -14
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -12,22 +12,22 @@ Canvas Flow roda frontend e backend juntos a partir de um pacote npm.
12
12
  Este caminho sobe MongoDB local automaticamente e abre o navegador.
13
13
 
14
14
  ```bash
15
- npx canvas-flow@latest --with-docker --open
15
+ npx @igoruehara/canvas-flow@latest --with-docker --open
16
16
  ```
17
17
 
18
18
  Para RAG local com Milvus, MinIO e etcd:
19
19
 
20
20
  ```bash
21
- npx canvas-flow@latest infra up --full
22
- npx canvas-flow@latest --open
21
+ npx @igoruehara/canvas-flow@latest infra up --full
22
+ npx @igoruehara/canvas-flow@latest --open
23
23
  ```
24
24
 
25
25
  Comandos uteis:
26
26
 
27
27
  ```bash
28
- npx canvas-flow@latest infra status
29
- npx canvas-flow@latest infra logs
30
- npx canvas-flow@latest infra down
28
+ npx @igoruehara/canvas-flow@latest infra status
29
+ npx @igoruehara/canvas-flow@latest infra logs
30
+ npx @igoruehara/canvas-flow@latest infra down
31
31
  ```
32
32
 
33
33
  `infra down` para os containers, mas mantem os volumes Docker.
@@ -37,7 +37,7 @@ npx canvas-flow@latest infra down
37
37
  Use este caminho quando voce ja tem MongoDB local, Atlas ou outro Mongo remoto.
38
38
 
39
39
  ```bash
40
- npx canvas-flow@latest --open
40
+ npx @igoruehara/canvas-flow@latest --open
41
41
  ```
42
42
 
43
43
  Mongo local padrao:
@@ -49,7 +49,7 @@ mongodb://127.0.0.1:27017/canvas_flow
49
49
  Para usar outro Mongo, edite a config:
50
50
 
51
51
  ```bash
52
- npx canvas-flow@latest config --edit
52
+ npx @igoruehara/canvas-flow@latest config --edit
53
53
  ```
54
54
 
55
55
  ```json
@@ -77,13 +77,13 @@ C:\Users\<usuario>\.canvas-flow\config.json
77
77
  Abrir a config:
78
78
 
79
79
  ```bash
80
- npx canvas-flow@latest config --edit
80
+ npx @igoruehara/canvas-flow@latest config --edit
81
81
  ```
82
82
 
83
83
  Ver o caminho da config:
84
84
 
85
85
  ```bash
86
- npx canvas-flow@latest config
86
+ npx @igoruehara/canvas-flow@latest config
87
87
  ```
88
88
 
89
89
  Exemplo com OpenAI:
@@ -112,7 +112,7 @@ Exemplo com porta customizada:
112
112
  Tambem da para usar outro arquivo:
113
113
 
114
114
  ```bash
115
- npx canvas-flow@latest --config C:\canvas-flow\config.json --open
115
+ npx @igoruehara/canvas-flow@latest --config C:\canvas-flow\config.json --open
116
116
  ```
117
117
 
118
118
  Nao publique `config.json`: ele contem tokens e secrets gerados.
@@ -120,13 +120,13 @@ Nao publique `config.json`: ele contem tokens e secrets gerados.
120
120
  ## Validar
121
121
 
122
122
  ```bash
123
- npx canvas-flow@latest doctor
123
+ npx @igoruehara/canvas-flow@latest doctor
124
124
  ```
125
125
 
126
126
  Sem checar rede/Mongo:
127
127
 
128
128
  ```bash
129
- npx canvas-flow@latest doctor --offline
129
+ npx @igoruehara/canvas-flow@latest doctor --offline
130
130
  ```
131
131
 
132
132
  ## Instalar globalmente
@@ -134,7 +134,7 @@ npx canvas-flow@latest doctor --offline
134
134
  Opcional:
135
135
 
136
136
  ```bash
137
- npm i -g canvas-flow
137
+ npm i -g @igoruehara/canvas-flow
138
138
  canvas-flow --with-docker --open
139
139
  ```
140
140
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "name": "@igoruehara/canvas-flow",
3
- "version": "0.1.0",
2
+ "name": "@igoruehara/canvas-flow",
3
+ "version": "0.1.1",
4
4
  "description": "Standalone npm launcher for Canvas Flow multi-agent GenAI workflows.",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",
@@ -65,4 +65,4 @@
65
65
  "overrides": {
66
66
  "uuid": "^11.1.1"
67
67
  }
68
- }
68
+ }