chati-dev 2.0.7 → 2.0.9

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 +37 -28
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  <p align="center">
10
10
  <a href="https://www.npmjs.com/package/chati-dev"><img src="https://img.shields.io/npm/v/chati-dev?color=blue&label=npm" alt="npm"></a>
11
- <a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT"></a>
11
+ <a href="LICENSE"><img src="https://img.shields.io/badge/License-BSL_1.1-blue.svg" alt="License: BSL 1.1"></a>
12
12
  <a href="https://nodejs.org/"><img src="https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen.svg" alt="Node.js"></a>
13
13
  <a href="#internationalization"><img src="https://img.shields.io/badge/i18n-EN%20%7C%20PT%20%7C%20ES%20%7C%20FR-informational.svg" alt="i18n"></a>
14
14
  <a href=".github/CONTRIBUTING.md"><img src="https://img.shields.io/badge/contributions-welcome-brightgreen.svg" alt="Contributions Welcome"></a>
@@ -55,17 +55,30 @@ PLANNING (planning) → Quality Gate → BUILD → Quality Gate → DEPL
55
55
 
56
56
  ---
57
57
 
58
+ ## Prerequisites
59
+
60
+ - **Node.js** >= 20.0.0 ([download](https://nodejs.org/))
61
+ - **Claude Code** — the CLI for Claude ([install guide](https://docs.anthropic.com/en/docs/claude-code/overview))
62
+
63
+ Other supported IDEs: VS Code, Cursor, Gemini CLI, GitHub Copilot, AntiGravity (see [Supported IDEs](#supported-ides)).
64
+
65
+ ---
66
+
58
67
  ## Quick Start
59
68
 
60
- ### Install
69
+ ### 1. Install in your project
70
+
71
+ Open a terminal in your project directory:
61
72
 
62
73
  ```bash
63
74
  npx chati-dev init
64
75
  ```
65
76
 
66
- The wizard guides you through language and project type, then auto-configures Claude Code with the required MCPs.
77
+ The wizard asks your language and project type, then auto-configures Claude Code with the required MCPs.
78
+
79
+ ### 2. Start Claude Code and activate
67
80
 
68
- ### Activate
81
+ Open Claude Code in the same project directory, then type:
69
82
 
70
83
  ```
71
84
  /chati
@@ -73,6 +86,10 @@ The wizard guides you through language and project type, then auto-configures Cl
73
86
 
74
87
  The orchestrator loads your session, detects where you left off, and routes you to the right agent. You stay inside the system until you explicitly exit.
75
88
 
89
+ ### 3. Build
90
+
91
+ From here, the agents take over. You'll go through Planning (requirements, architecture, phases, tasks), Quality Gates, Build, and Deploy — all orchestrated automatically.
92
+
76
93
  ### Monitor
77
94
 
78
95
  ```bash
@@ -286,18 +303,18 @@ your-project/
286
303
  │ ├── i18n/ # EN, PT, ES, FR translations
287
304
  │ ├── migrations/ # Version migration scripts
288
305
  │ ├── constitution.md # 17 Articles + Preamble
289
- └── config.yaml # System configuration
290
- ├── chati.dev/artifacts/ # Generated during pipeline
291
- ├── 0-WU/
292
- ├── 1-Brief/
293
- ├── 2-PRD/
294
- ├── 3-Architecture/
295
- ├── 4-UX/
296
- ├── 5-Phases/
297
- ├── 6-Tasks/
298
- ├── 7-QA-Planning/
299
- ├── 8-Validation/
300
- └── handoffs/
306
+ ├── config.yaml # System configuration
307
+ │ └── artifacts/ # Generated during pipeline
308
+ ├── 0-WU/
309
+ ├── 1-Brief/
310
+ ├── 2-PRD/
311
+ ├── 3-Architecture/
312
+ ├── 4-UX/
313
+ ├── 5-Phases/
314
+ ├── 6-Tasks/
315
+ ├── 7-QA-Planning/
316
+ ├── 8-Validation/
317
+ └── handoffs/
301
318
  └── packages/
302
319
  └── chati-dev/ # CLI + runtime engine (npx chati-dev)
303
320
  └── src/terminal/ # Multi-terminal spawner, monitor, collector
@@ -312,9 +329,9 @@ The installer and agent interactions support 4 languages:
312
329
  | Language | Code | Status |
313
330
  |----------|------|--------|
314
331
  | **English** | `en` | Default |
315
- | **Portugues** | `pt` | Full support |
316
- | **Espanol** | `es` | Full support |
317
- | **Francais** | `fr` | Full support |
332
+ | **Português** | `pt` | Full support |
333
+ | **Español** | `es` | Full support |
334
+ | **Français** | `fr` | Full support |
318
335
 
319
336
  Artifacts are always generated in English for portability and team collaboration.
320
337
 
@@ -332,14 +349,6 @@ Upgrades include automatic backup, migrations, validation, and config merging. R
332
349
 
333
350
  ---
334
351
 
335
- ## Prerequisites
336
-
337
- - **Node.js** >= 20.0.0
338
- - **npm** >= 9.0.0
339
- - A supported IDE with AI assistant capabilities
340
-
341
- ---
342
-
343
352
  ## Contributing
344
353
 
345
354
  We welcome contributions from agents, templates, workflows, intelligence data, translations, and CLI improvements. Please see [CONTRIBUTING.md](.github/CONTRIBUTING.md) for guidelines.
@@ -350,7 +359,7 @@ For security concerns, please see our [Security Policy](.github/SECURITY.md).
350
359
 
351
360
  ## License
352
361
 
353
- This project is licensed under the MIT License — see [LICENSE](LICENSE) for details.
362
+ This project is licensed under the Business Source License 1.1 — see [LICENSE](LICENSE) for details. Free for personal, educational, and evaluation use. Converts to Apache 2.0 on 2030-02-16.
354
363
 
355
364
  ---
356
365
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chati-dev",
3
- "version": "2.0.7",
3
+ "version": "2.0.9",
4
4
  "description": "AI-Powered Multi-Agent Orchestration System — Structured vibe coding for Full Stack Development",
5
5
  "type": "module",
6
6
  "bin": {
@@ -42,15 +42,15 @@
42
42
  "fullstack"
43
43
  ],
44
44
  "author": "Chati.dev",
45
- "license": "MIT",
45
+ "license": "BUSL-1.1",
46
46
  "repository": {
47
47
  "type": "git",
48
- "url": "https://github.com/ogabrielalonso/Chati.dev.git",
48
+ "url": "https://github.com/Chati-dev/Chati.dev.git",
49
49
  "directory": "packages/chati-dev"
50
50
  },
51
- "homepage": "https://github.com/ogabrielalonso/Chati.dev#readme",
51
+ "homepage": "https://github.com/Chati-dev/Chati.dev#readme",
52
52
  "bugs": {
53
- "url": "https://github.com/ogabrielalonso/Chati.dev/issues"
53
+ "url": "https://github.com/Chati-dev/Chati.dev/issues"
54
54
  },
55
55
  "dependencies": {
56
56
  "@clack/prompts": "^0.7.0",