aiforcecli 0.2.0 → 0.4.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.
@@ -1,50 +1,52 @@
1
- {
2
- "defaultAgent": "claude-code",
3
- "agents": {
4
- "claude-code": {
5
- "defaultFlags": [],
6
- "model": "claude-opus-4-8",
7
- "allowedTools": ["Read", "Edit", "Bash", "Grep", "Glob"]
8
- },
9
- "codex": {
10
- "defaultFlags": ["--sandbox", "workspace-write"],
11
- "model": "gpt-5-codex"
12
- }
13
- },
14
- "routing": {
15
- "enabled": true,
16
- "prefer": ["claude-code", "codex"]
17
- },
18
- "verify": {
19
- "enabled": true,
20
- "command": "npm test",
21
- "timeoutMs": 300000
22
- },
23
- "heal": {
24
- "enabled": false,
25
- "maxAttempts": 3,
26
- "escalate": true
27
- },
28
- "race": {
29
- "agents": ["claude-code", "codex"],
30
- "select": "cheapest",
31
- "keepWorktrees": false
32
- },
33
- "advise": {
34
- "weights": { "capability": 0.7, "cost": 0.2, "speed": 0.1 },
35
- "privatePseudocount": 5,
36
- "explore": false
37
- },
38
- "eval": {
39
- "dir": ".aiforcecli/evals"
40
- },
41
- "telemetry": {
42
- "enabled": false
43
- },
44
- "budgets": {
45
- "maxCostPerRunUsd": 1.0,
46
- "dailyCapUsd": 10.0
47
- },
48
- "timeoutMs": 600000,
49
- "inactivityTimeoutMs": 120000
50
- }
1
+ {
2
+ "defaultAgent": "claude-code",
3
+ "agents": {
4
+ "claude-code": {
5
+ "defaultFlags": [],
6
+ "model": "claude-opus-4-8",
7
+ "allowedTools": ["Read", "Edit", "Bash", "Grep", "Glob"]
8
+ },
9
+ "codex": {
10
+ "defaultFlags": ["--sandbox", "workspace-write"],
11
+ "model": "gpt-5-codex"
12
+ }
13
+ },
14
+ "routing": {
15
+ "enabled": true,
16
+ "prefer": ["claude-code", "codex"]
17
+ },
18
+ "verify": {
19
+ "enabled": true,
20
+ "command": "npm test",
21
+ "timeoutMs": 300000
22
+ },
23
+ "heal": {
24
+ "enabled": false,
25
+ "maxAttempts": 3,
26
+ "escalate": true
27
+ },
28
+ "race": {
29
+ "agents": ["claude-code", "codex"],
30
+ "select": "cheapest",
31
+ "keepWorktrees": false
32
+ },
33
+ "advise": {
34
+ "weights": { "capability": 0.7, "cost": 0.2, "speed": 0.1 },
35
+ "privatePseudocount": 5,
36
+ "explore": false
37
+ },
38
+ "eval": {
39
+ "dir": ".aiforcecli/evals"
40
+ },
41
+ "telemetry": {
42
+ "enabled": false
43
+ },
44
+ "budgets": {
45
+ "maxCostPerRunUsd": 1.0,
46
+ "dailyCapUsd": 10.0,
47
+ "weeklyCapUsd": 50.0,
48
+ "monthlyCapUsd": 150.0
49
+ },
50
+ "timeoutMs": 600000,
51
+ "inactivityTimeoutMs": 120000
52
+ }
package/assets/README.md CHANGED
@@ -1,14 +1,14 @@
1
- # Bundled assets
2
-
3
- `aiforcecli init` copies these into the target project so it works on day one. The set is
4
- extensible — drop your own files into any subdirectory and they get picked up.
5
-
6
- | Source (`assets/`) | Installed to | Purpose |
7
- | --- | --- | --- |
8
- | `skills/` | `<project>/.claude/skills/` | SKILL.md folders for Claude Code |
9
- | `subagents/` | `<project>/.claude/agents/` | Markdown + YAML-frontmatter subagents (code-reviewer, test-runner, security-auditor) |
10
- | `prompts/` | `<project>/.aiforcecli/prompts/` | Layered system-prompt library prepended per task type (refactor, debug, write-tests, review) |
11
- | `codex/` | `<project>/` | Codex equivalents: `AGENTS.md`, `config.toml` entries |
12
-
13
- **Phase 2** fills these with curated, version-controlled content. In Phase 1 they are
14
- empty scaffolding, so `aiforcecli init` only writes `aiforcecli.config.json`.
1
+ # Bundled assets
2
+
3
+ `aiforcecli init` copies these into the target project so it works on day one. The set is
4
+ extensible — drop your own files into any subdirectory and they get picked up.
5
+
6
+ | Source (`assets/`) | Installed to | Purpose |
7
+ | --- | --- | --- |
8
+ | `skills/` | `<project>/.claude/skills/` | SKILL.md folders for Claude Code |
9
+ | `subagents/` | `<project>/.claude/agents/` | Markdown + YAML-frontmatter subagents (code-reviewer, test-runner, security-auditor) |
10
+ | `prompts/` | `<project>/.aiforcecli/prompts/` | Layered system-prompt library prepended per task type (refactor, debug, write-tests, review) |
11
+ | `codex/` | `<project>/` | Codex equivalents: `AGENTS.md`, `config.toml` entries |
12
+
13
+ **Phase 2** fills these with curated, version-controlled content. In Phase 1 they are
14
+ empty scaffolding, so `aiforcecli init` only writes `aiforcecli.config.json`.