veogent 1.0.16 → 1.0.17
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/index.js +18 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -473,6 +473,24 @@ program
|
|
|
473
473
|
});
|
|
474
474
|
|
|
475
475
|
// --- System ---
|
|
476
|
+
program
|
|
477
|
+
.command('skill')
|
|
478
|
+
.description('Print the native Agent SKILL.md guide for VEOGENT CLI')
|
|
479
|
+
.action(async () => {
|
|
480
|
+
const path = await import('path');
|
|
481
|
+
const fs = await import('fs');
|
|
482
|
+
const url = await import('url');
|
|
483
|
+
const __filename = url.fileURLToPath(import.meta.url);
|
|
484
|
+
const __dirname = path.dirname(__filename);
|
|
485
|
+
const skillPath = path.join(__dirname, 'skills', 'SKILL.md');
|
|
486
|
+
try {
|
|
487
|
+
const content = fs.readFileSync(skillPath, 'utf-8');
|
|
488
|
+
console.log(content);
|
|
489
|
+
} catch (err) {
|
|
490
|
+
console.error('❌ Could not read SKILL.md:', err.message);
|
|
491
|
+
}
|
|
492
|
+
});
|
|
493
|
+
|
|
476
494
|
program
|
|
477
495
|
.command('obtain-flow')
|
|
478
496
|
.description('Auto-extract your labs.google Flow Token (ya29.) using a secure browser overlay')
|