akm-cli 0.0.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.
Files changed (3) hide show
  1. package/README.md +9 -0
  2. package/index.js +4 -0
  3. package/package.json +17 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # akm-cli
2
+
3
+ > This is a placeholder package. The real thing is coming soon.
4
+
5
+ **akm** — the Agent-i-Kit — is a package manager for AI agent capabilities:
6
+ tools, skills, commands, agents, and knowledge documents.
7
+
8
+ - GitHub: https://github.com/itlackey/agentikit
9
+ - License: MPL-2.0
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ console.log("akm (the Agent-i-Kit) is coming soon.");
3
+ console.log("See: https://github.com/itlackey/agentikit");
4
+ process.exit(0);
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "akm-cli",
3
+ "version": "0.0.0",
4
+ "description": "Placeholder — akm (the Agent-i-Kit) is coming soon. https://github.com/itlackey/agentikit",
5
+ "bin": { "akm": "index.js" },
6
+ "keywords": ["akm", "agent-i-kit", "ai-agent", "cli", "package-manager"],
7
+ "license": "MPL-2.0",
8
+ "author": "itlackey",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/itlackey/agentikit.git"
12
+ },
13
+ "homepage": "https://github.com/itlackey/agentikit#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/itlackey/agentikit/issues"
16
+ }
17
+ }