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 CHANGED
@@ -19,13 +19,14 @@ Validate the installation:
19
19
 
20
20
  ```bash
21
21
  agent --version
22
+ agent -v
22
23
  agent doctor
23
24
  ```
24
25
 
25
26
  Expected version for this release:
26
27
 
27
28
  ```text
28
- agent 0.0.2
29
+ agent 0.0.3
29
30
  ```
30
31
 
31
32
  ## Quick Start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-devkit",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Agent DevKit CLI runtime for specialist AI agents, capabilities and provider-aware automations.",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/runtime/README.md CHANGED
@@ -23,6 +23,7 @@ Valide a instalacao:
23
23
 
24
24
  ```bash
25
25
  agent --version
26
+ agent -v
26
27
  agent doctor
27
28
  ```
28
29
 
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:
@@ -1,3 +1,3 @@
1
1
  """Public CLI implementation for AI DevKit."""
2
2
 
3
- __version__ = "0.0.2"
3
+ __version__ = "0.0.3"
@@ -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.2",
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.2",
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",
@@ -34,7 +34,7 @@ python3 scripts/validate-repo.py --json
34
34
  python3 scripts/validate-repo.py --strict
35
35
  python3 scripts/mvp-readiness.py
36
36
  python3 scripts/mvp-readiness.py --json
37
- npm run release:verify -- v0.0.2
37
+ npm run release:verify -- v0.0.3
38
38
  ```
39
39
 
40
40
  ## Regras
@@ -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.2");
66
+ throw new Error("Usage: npm run release:verify -- v0.0.3");
67
67
  }
68
68
 
69
69
  const version = normalizeVersion(rawVersion);