agentv 0.5.1 → 0.5.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/dist/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  runCli
4
- } from "./chunk-HPH4YWGU.js";
4
+ } from "./chunk-5WBKOCCW.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-HPH4YWGU.js";
4
+ } from "./chunk-5WBKOCCW.js";
5
5
  export {
6
6
  createProgram,
7
7
  runCli
@@ -5,10 +5,9 @@ $schema: agentv-config-v2
5
5
  # Custom guideline patterns:
6
6
  guideline_patterns:
7
7
  - "**/*.instructions.md"
8
- - "**/instructions/**"
9
8
  - "**/*.prompt.md"
10
- - "**/prompts/**"
11
-
9
+ - "**/SKILL.md"
10
+
12
11
  # Notes:
13
12
  # - Patterns use standard glob syntax (via micromatch library)
14
13
  # - Paths are normalized to forward slashes for cross-platform compatibility
@@ -8,23 +8,23 @@ targets:
8
8
  - name: vscode_projectx
9
9
  provider: vscode
10
10
  settings:
11
- # VS Code provider requires a workspace template path.
12
11
  workspace_template: PROJECTX_WORKSPACE_PATH
13
- # This key makes the judge model configurable and is good practice
12
+ provider_batching: false
14
13
  judge_target: azure_base
15
14
 
16
15
  - name: vscode_insiders_projectx
17
16
  provider: vscode-insiders
18
17
  settings:
19
- # VS Code Insiders provider (preview version) requires a workspace template path.
20
18
  workspace_template: PROJECTX_WORKSPACE_PATH
21
- # This key makes the judge model configurable and is good practice
19
+ provider_batching: false
20
+ judge_target: azure_base
21
+
22
+ - name: vscode
23
+ provider: vscode
22
24
  judge_target: azure_base
23
25
 
24
26
  - name: azure_base
25
27
  provider: azure
26
- # The base LLM provider needs no extra settings, as the model is
27
- # defined in the .env file.
28
28
  settings:
29
29
  endpoint: AZURE_OPENAI_ENDPOINT
30
30
  api_key: AZURE_OPENAI_API_KEY
@@ -32,8 +32,6 @@ targets:
32
32
 
33
33
  - name: default
34
34
  provider: azure
35
- # The base LLM provider needs no extra settings, as the model is
36
- # defined in the .env file.
37
35
  settings:
38
36
  endpoint: AZURE_OPENAI_ENDPOINT
39
37
  api_key: AZURE_OPENAI_API_KEY
@@ -67,8 +65,10 @@ targets:
67
65
  # - --profile
68
66
  # - CODEX_PROFILE
69
67
  # - --model
70
- # - CODEX_MODEL
71
- # - --ask-for-approval
72
- # - CODEX_APPROVAL_PRESET
73
- timeout_seconds: 180
74
- cwd: CODEX_WORKSPACE_DIR # Where scratch workspaces are created
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.1",
3
+ "version": "0.5.3",
4
4
  "description": "CLI entry point for AgentV",
5
5
  "type": "module",
6
6
  "repository": {
@@ -24,14 +24,15 @@
24
24
  "log-update": "^7.0.1",
25
25
  "micromatch": "^4.0.8",
26
26
  "yaml": "^2.6.1",
27
- "@agentv/core": "0.5.1"
27
+ "@agentv/core": "0.5.3"
28
28
  },
29
29
  "devDependencies": {
30
30
  "execa": "^9.3.0"
31
31
  },
32
32
  "scripts": {
33
33
  "dev": "tsx watch src/index.ts",
34
- "build": "tsup",
34
+ "build": "tsup && pnpm run copy-readme",
35
+ "copy-readme": "node -e \"require('fs').cpSync('../../README.md', 'README.md')\"",
35
36
  "typecheck": "tsc --noEmit",
36
37
  "lint": "eslint . --ext .ts",
37
38
  "test": "vitest run",