antikit 1.12.3 → 1.12.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antikit",
3
- "version": "1.12.3",
3
+ "version": "1.12.4",
4
4
  "description": "CLI tool to manage AI agent skills from Anti Gravity skills repository",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -23,7 +23,7 @@ export async function listLocalSkills() {
23
23
 
24
24
  const table = new Table({
25
25
  head: [chalk.cyan('Skill Name'), chalk.cyan('Version'), chalk.cyan('Description')],
26
- colWidths: [25, 12, 60],
26
+ colWidths: [30, 15, Math.max(20, (process.stdout.columns || 80) - 55)],
27
27
  wordWrap: true,
28
28
  style: { head: [], border: [] }
29
29
  });