antigravity-ide 4.1.29 → 4.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/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  <div align="center">
2
2
 
3
3
  # 🛰️ AntiGravity IDE
4
- ### *Advanced Edition • v4.1.29 Meta-Engine*
4
+ ### *Advanced Edition • v4.1.30 Meta-Engine*
5
5
 
6
6
  <!-- BADGES: Spaced & Tightly Wrapped to prevent Underlines -->
7
7
  <p align="center">
@@ -52,7 +52,7 @@ npx antigravity-ide [project-name]
52
52
 
53
53
  ---
54
54
 
55
- ## ✨ The Premium Edge (v4.1.29)
55
+ ## ✨ The Premium Edge (v4.1.30)
56
56
 
57
57
  Why choose AntiGravity over standard AI wrappers?
58
58
 
package/README.vi.md CHANGED
@@ -1,7 +1,7 @@
1
1
  <div align="center">
2
2
 
3
3
  # 🛰️ AntiGravity IDE
4
- ### *Phiên bản Nâng cao • v4.1.29 Meta-Engine*
4
+ ### *Phiên bản Nâng cao • v4.1.30 Meta-Engine*
5
5
 
6
6
  <!-- BADGES: Spaced & Tightly Wrapped to prevent Underlines -->
7
7
  <p align="center">
@@ -52,7 +52,7 @@ npx antigravity-ide [ten-du-an]
52
52
 
53
53
  ---
54
54
 
55
- ## ✨ Điểm khác biệt (Phiên bản v4.1.29)
55
+ ## ✨ Điểm khác biệt (Phiên bản v4.1.30)
56
56
 
57
57
  Tại sao nên chọn AntiGravity thay vì các AI wrapper thông thường?
58
58
 
package/cli/create.js CHANGED
@@ -250,6 +250,12 @@ async function copyModularStructure(projectPath, config, rulesList, agentsList)
250
250
  await fs.copy(path.join(sourceAgentDir, '.shared'), path.join(destAgentDir, '.shared'), { filter });
251
251
  }
252
252
 
253
+ // 1b. Copy Root Concept Files (Architecture, Start Here, etc.) - FIX for v4.1.30
254
+ const rootFiles = fs.readdirSync(sourceAgentDir).filter(f => f.endsWith('.md') && f !== 'GEMINI.md'); // GEMINI.md is generated
255
+ for (const file of rootFiles) {
256
+ await fs.copy(path.join(sourceAgentDir, file), path.join(destAgentDir, file));
257
+ }
258
+
253
259
  // 2. Copy Rules (SELECTIVE)
254
260
  const rulesDest = path.join(destAgentDir, 'rules');
255
261
  fs.mkdirSync(rulesDest, { recursive: true });
@@ -25,7 +25,7 @@ function getScaleConfig(scale) {
25
25
  'create', 'plan', 'debug', 'test', 'deploy',
26
26
  'preview', 'enhance', 'visually', 'log-error'
27
27
  ]; // 9 Workflows
28
- coreSkillCategories = ['webdev', 'uiux', 'maker']; // 3 Categories (30%)
28
+ coreSkillCategories = ['webdev', 'uiux', 'maker-lite']; // Condensed Maker list
29
29
  } else if (scale === 'creative') { // Was Balanced/Team -> Creative/Research
30
30
  engineMode = 'advanced';
31
31
  // Target 100% (Full)
@@ -49,7 +49,7 @@ function getScaleConfig(scale) {
49
49
  'security', 'test', 'compliance', 'api', 'document',
50
50
  'log-error', 'release-version', 'update-docs', 'performance', 'onboard'
51
51
  ]; // 15 Workflows
52
- coreSkillCategories = ['devops', 'security', 'testing', 'growth', 'research']; // 5 Categories (50%)
52
+ coreSkillCategories = ['devops', 'security', 'testing', 'growth-enterprise', 'research']; // 5 Categories (50%)
53
53
  }
54
54
 
55
55
  return { engineMode, rulesMode, baseWorkflows, coreSkillCategories };
package/cli/repair.js CHANGED
@@ -48,6 +48,16 @@ async function repairProject(projectPath, options, config) {
48
48
  }
49
49
  spinner.succeed('Shared DNA synchronized to v' + require('../package.json').version);
50
50
 
51
+ // 1b. Restore Root Concepts (Architecture, Concepts, etc.) - FIX v4.1.30
52
+ const rootFiles = fs.readdirSync(sourceAgentDir).filter(f => f.endsWith('.md') && f !== 'GEMINI.md');
53
+ for (const file of rootFiles) {
54
+ const srcFile = path.join(sourceAgentDir, file);
55
+ const destFile = path.join(agentDir, file);
56
+ if (!fs.existsSync(destFile) || options.force) {
57
+ await fs.copy(srcFile, destFile, { overwrite: options.force });
58
+ }
59
+ }
60
+
51
61
  // 2. Restore/Update Rules
52
62
  spinner.start('Verifying Rules & Compliance...');
53
63
  const rulesSourceDir = path.join(sourceAgentDir, 'rules');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antigravity-ide",
3
- "version": "4.1.29",
3
+ "version": "4.2.0",
4
4
  "description": "The Ultimate AI-Powered IDE for 10x Engineers (Full Agentic Workflow)• 573 Master Skills • 2977 AI Patterns • 30 Workflows • 17 Shared Core Libraries. One Command to Rule Them All.",
5
5
  "homepage": "https://antigravity-ide-cli.vercel.app/",
6
6
  "main": "cli/index.js",