ai-agent-config 2.4.3 → 2.4.5

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/bin/cli.js +2 -6
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -9,7 +9,7 @@ const platforms = require("../scripts/platforms");
9
9
  const migration = require("../scripts/migration");
10
10
  const externalSync = require("../scripts/external-sync");
11
11
 
12
- const VERSION = "2.4.3";
12
+ const VERSION = "2.4.5";
13
13
 
14
14
  // Get package root (one level up from bin/)
15
15
  const PACKAGE_ROOT = path.join(__dirname, "..");
@@ -65,10 +65,6 @@ function showHelp() {
65
65
 
66
66
  Usage: ai-agent <command> [options]
67
67
 
68
- 🆕 v2.0 Commands:
69
- init Initialize or migrate to v2.0
70
- migrate Migrate from v1.x to v2.0
71
-
72
68
  📦 Source Management:
73
69
  source add <repo> [opts] Add custom skill source
74
70
  source remove <name> Remove custom source
@@ -101,7 +97,7 @@ Usage: ai-agent <command> [options]
101
97
 
102
98
  🌐 Examples:
103
99
 
104
- # Initialize with GitHub repository (v2.3)
100
+ # Initialize with GitHub repository
105
101
  ai-agent init --repo https://github.com/yourname/my-ai-skills.git
106
102
 
107
103
  # Push skills to GitHub
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-agent-config",
3
- "version": "2.4.3",
3
+ "version": "2.4.5",
4
4
  "description": "Universal skill & workflow manager for AI coding assistants with bi-directional GitHub sync",
5
5
  "main": "index.js",
6
6
  "bin": {