agentv 0.5.3 → 0.6.1
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 +7 -3
- package/dist/{chunk-5WBKOCCW.js → chunk-GURDWEMI.js} +4123 -1108
- package/dist/chunk-GURDWEMI.js.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/templates/agentv/targets.yaml +29 -29
- package/package.json +3 -2
- package/dist/chunk-5WBKOCCW.js.map +0 -1
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "0.6.1",
|
|
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.
|
|
28
|
+
"@agentv/core": "0.6.1"
|
|
28
29
|
},
|
|
29
30
|
"devDependencies": {
|
|
30
31
|
"execa": "^9.3.0"
|