chati-dev 1.1.0 → 1.2.0
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/bin/chati.js
CHANGED
|
@@ -121,7 +121,7 @@ async function main() {
|
|
|
121
121
|
console.log(' - Constitution (10 Articles + Preamble)');
|
|
122
122
|
console.log(' - Dashboard TUI');
|
|
123
123
|
console.log(' - Upgrade system with migrations');
|
|
124
|
-
console.log(' -
|
|
124
|
+
console.log(' - 6 IDE support');
|
|
125
125
|
console.log(' - 4-language i18n (EN/PT/ES/FR)');
|
|
126
126
|
break;
|
|
127
127
|
}
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"ides": {
|
|
32
32
|
"type": "array",
|
|
33
33
|
"items": {
|
|
34
|
-
"enum": ["claude-code", "vscode", "antigravity", "cursor", "
|
|
34
|
+
"enum": ["claude-code", "vscode", "antigravity", "cursor", "gemini-cli", "github-copilot"]
|
|
35
35
|
},
|
|
36
36
|
"description": "Configured IDEs"
|
|
37
37
|
},
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chati-dev",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "AI-Powered Multi-Agent Development Framework — 13 agents,
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "AI-Powered Multi-Agent Development Framework — 13 agents, 6 IDEs, 4 languages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"chati": "bin/chati.js",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* IDE Configuration Mapping (
|
|
2
|
+
* IDE Configuration Mapping (6 IDEs)
|
|
3
3
|
* Defines where chati.dev agents are deployed per IDE
|
|
4
4
|
*/
|
|
5
5
|
export const IDE_CONFIGS = {
|
|
@@ -39,15 +39,6 @@ export const IDE_CONFIGS = {
|
|
|
39
39
|
mcpConfigFile: null,
|
|
40
40
|
formatNotes: 'Cursor rules format',
|
|
41
41
|
},
|
|
42
|
-
'windsurf': {
|
|
43
|
-
name: 'Windsurf',
|
|
44
|
-
description: 'AI-powered development environment',
|
|
45
|
-
recommended: false,
|
|
46
|
-
configPath: '.windsurf/rules/',
|
|
47
|
-
rulesFile: '.windsurfrules',
|
|
48
|
-
mcpConfigFile: null,
|
|
49
|
-
formatNotes: 'Windsurf rules format',
|
|
50
|
-
},
|
|
51
42
|
'gemini-cli': {
|
|
52
43
|
name: 'Gemini CLI',
|
|
53
44
|
description: 'Google AI for development',
|