agent-devkit 0.0.2 → 0.0.3
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/README.md +2 -1
- package/package.json +1 -1
- package/runtime/README.md +1 -0
- package/runtime/agent +1 -1
- package/runtime/cli/aikit/__init__.py +1 -1
- package/runtime/cli/aikit/main.py +1 -1
- package/runtime/plugins/claude-code-ai-devkit/plugin.json +1 -1
- package/runtime/plugins/claude-skill-ai-devkit/plugin.json +1 -1
- package/runtime/scripts/README.md +1 -1
- package/runtime/scripts/verify-release-alignment.mjs +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
package/runtime/README.md
CHANGED
package/runtime/agent
CHANGED
|
@@ -13,7 +13,7 @@ def normalize_args(argv: list[str]) -> list[str]:
|
|
|
13
13
|
return ["agent"]
|
|
14
14
|
commands = set(DETERMINISTIC_COMMANDS) | set(LLM_COMMANDS)
|
|
15
15
|
first = argv[0]
|
|
16
|
-
if first in {"--help", "-h", "--version"}:
|
|
16
|
+
if first in {"--help", "-h", "--version", "-v"}:
|
|
17
17
|
return argv
|
|
18
18
|
if first == "--json":
|
|
19
19
|
if len(argv) == 1:
|
|
@@ -109,7 +109,7 @@ def build_parser(prog: str | None = None) -> argparse.ArgumentParser:
|
|
|
109
109
|
description="AI DevKit CLI",
|
|
110
110
|
)
|
|
111
111
|
parser.add_argument("--json", action="store_true", help="print machine-readable JSON")
|
|
112
|
-
parser.add_argument("--version", action="store_true", help="print CLI version and exit")
|
|
112
|
+
parser.add_argument("-v", "--version", action="store_true", help="print CLI version and exit")
|
|
113
113
|
|
|
114
114
|
subparsers = parser.add_subparsers(dest="command")
|
|
115
115
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "claude-code-ai-devkit",
|
|
3
3
|
"name": "AI DevKit",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.3",
|
|
5
5
|
"description": "Thin Claude Code adapter for routing software support, infrastructure, data, and development tasks through the local AI DevKit runtime.",
|
|
6
6
|
"runtime": {
|
|
7
7
|
"command": "agent",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "claude-skill-ai-devkit",
|
|
3
3
|
"name": "AI DevKit Claude Skill",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.3",
|
|
5
5
|
"description": "Skill bundle for Claude Desktop and Claude.ai to route support, infrastructure, data, documentation, and development work through AI DevKit practices.",
|
|
6
6
|
"runtime": {
|
|
7
7
|
"command": "agent",
|
|
@@ -63,7 +63,7 @@ function run(command, args, options = {}) {
|
|
|
63
63
|
async function main() {
|
|
64
64
|
const [rawVersion] = process.argv.slice(2);
|
|
65
65
|
if (!rawVersion) {
|
|
66
|
-
throw new Error("Usage: npm run release:verify -- v0.0.
|
|
66
|
+
throw new Error("Usage: npm run release:verify -- v0.0.3");
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
const version = normalizeVersion(rawVersion);
|