agentv 0.5.3 → 0.7.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.
package/dist/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  runCli
4
- } from "./chunk-5WBKOCCW.js";
4
+ } from "./chunk-X6NSDSD2.js";
5
5
 
6
6
  // src/cli.ts
7
7
  void runCli();
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createProgram,
3
3
  runCli
4
- } from "./chunk-5WBKOCCW.js";
4
+ } from "./chunk-X6NSDSD2.js";
5
5
  export {
6
6
  createProgram,
7
7
  runCli
@@ -5,6 +5,35 @@ $schema: agentv-targets-v2
5
5
  # Actual values for paths/keys are stored in the local .env file.
6
6
 
7
7
  targets:
8
+ - name: default
9
+ provider: azure
10
+ settings:
11
+ endpoint: AZURE_OPENAI_ENDPOINT
12
+ api_key: AZURE_OPENAI_API_KEY
13
+ model: AZURE_DEPLOYMENT_NAME
14
+
15
+ - name: vscode
16
+ provider: vscode
17
+ judge_target: azure_base
18
+
19
+ - name: codex
20
+ provider: codex
21
+ judge_target: azure_base
22
+ settings:
23
+ # Uses the Codex CLI (defaults to `codex` on PATH)
24
+ # executable: CODEX_CLI_PATH # Optional: override executable path
25
+ # args: # Optional additional CLI arguments
26
+ # - --profile
27
+ # - CODEX_PROFILE
28
+ # - --model
29
+ # - CODEX_MODEL
30
+ # - --ask-for-approval
31
+ # - CODEX_APPROVAL_PRESET
32
+ timeout_seconds: 180
33
+ cwd: CODEX_WORKSPACE_DIR # Where scratch workspaces are created
34
+ log_dir: CODEX_LOG_DIR # Optional: where Codex CLI stream logs are stored (defaults to ./.agentv/logs/codex)
35
+ log_format: json # Optional: 'summary' (default) or 'json' for raw event logs
36
+
8
37
  - name: vscode_projectx
9
38
  provider: vscode
10
39
  settings:
@@ -19,10 +48,6 @@ targets:
19
48
  provider_batching: false
20
49
  judge_target: azure_base
21
50
 
22
- - name: vscode
23
- provider: vscode
24
- judge_target: azure_base
25
-
26
51
  - name: azure_base
27
52
  provider: azure
28
53
  settings:
@@ -30,13 +55,6 @@ targets:
30
55
  api_key: AZURE_OPENAI_API_KEY
31
56
  model: AZURE_DEPLOYMENT_NAME
32
57
 
33
- - name: default
34
- provider: azure
35
- settings:
36
- endpoint: AZURE_OPENAI_ENDPOINT
37
- api_key: AZURE_OPENAI_API_KEY
38
- model: AZURE_DEPLOYMENT_NAME
39
-
40
58
  - name: local_cli
41
59
  provider: cli
42
60
  judge_target: azure_base
@@ -54,21 +72,3 @@ targets:
54
72
  healthcheck:
55
73
  type: command
56
74
  command_template: uv run ./mock_cli.py --healthcheck
57
-
58
- - name: codex_cli
59
- provider: codex
60
- judge_target: azure_base
61
- settings:
62
- # Uses the Codex CLI (defaults to `codex` on PATH)
63
- # executable: CODEX_CLI_PATH # Optional: override executable path
64
- # args: # Optional additional CLI arguments
65
- # - --profile
66
- # - CODEX_PROFILE
67
- # - --model
68
- # - CODEX_MODEL
69
- # - --ask-for-approval
70
- # - CODEX_APPROVAL_PRESET
71
- timeout_seconds: 180
72
- cwd: CODEX_WORKSPACE_DIR # Where scratch workspaces are created
73
- log_dir: CODEX_LOG_DIR # Optional: where Codex CLI stream logs are stored (defaults to ./.agentv/logs/codex)
74
- log_format: json # Optional: 'summary' (default) or 'json' for raw event logs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentv",
3
- "version": "0.5.3",
3
+ "version": "0.7.0",
4
4
  "description": "CLI entry point for AgentV",
5
5
  "type": "module",
6
6
  "repository": {
@@ -20,11 +20,12 @@
20
20
  ],
21
21
  "dependencies": {
22
22
  "commander": "^12.1.0",
23
+ "fast-glob": "^3.3.3",
23
24
  "dotenv": "^16.4.5",
24
25
  "log-update": "^7.0.1",
25
26
  "micromatch": "^4.0.8",
26
27
  "yaml": "^2.6.1",
27
- "@agentv/core": "0.5.3"
28
+ "@agentv/core": "0.7.0"
28
29
  },
29
30
  "devDependencies": {
30
31
  "execa": "^9.3.0"