@aift/antigravity 1.0.0 → 1.0.2

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/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -7,7 +7,7 @@ import fs from 'fs';
7
7
  import path from 'path';
8
8
 
9
9
  const program = new Command();
10
- const API_URL = 'https://pxlsowmxyvpsatfowfbe.supabase.co/functions/v1/pull-skill';
10
+ const API_URL = 'https://bmycrqkprypainwocgnl.supabase.co/functions/v1/pull-skill';
11
11
 
12
12
  program
13
13
  .name('antigravity')
@@ -19,7 +19,7 @@ program
19
19
  .argument('<skill-name>', 'Le nom du skill à récupérer')
20
20
  .description('Récupère un skill depuis le Hub AFT et l\'installe localement.')
21
21
  .action(async (skillName) => {
22
- const spinner = ora(`Récupération du skill ${chalk.bold.orange(skillName)}...`).start();
22
+ const spinner = ora(`Récupération du skill ${chalk.bold.yellow(skillName)}...`).start();
23
23
 
24
24
  try {
25
25
  const response = await fetch(`${API_URL}?name=${skillName}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aift/antigravity",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "AntiGravity CLI - Déployez des skills IA en une commande",
5
5
  "main": "index.js",
6
6
  "type": "module",