@evolvingmachines/evolve 0.0.57 → 0.0.58
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/index.cjs +30 -30
- package/dist/cli/index.d.cts +3 -1
- package/dist/cli/index.d.ts +3 -1
- package/dist/cli/index.js +26 -26
- package/package.json +4 -4
- package/skills/evolve-evals/SKILL.md +0 -1
- package/skills/evolve-evals/references/cli-reference/run.mdx +0 -4
- package/skills/evolve-evals/references/core-concepts/agents.mdx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evolvingmachines/evolve",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.58",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"ai",
|
|
6
6
|
"agents",
|
|
@@ -129,9 +129,9 @@
|
|
|
129
129
|
},
|
|
130
130
|
"dependencies": {
|
|
131
131
|
"@agentclientprotocol/sdk": "^0.5.1",
|
|
132
|
-
"@evolvingmachines/daytona": "0.0.
|
|
133
|
-
"@evolvingmachines/e2b": "0.0.
|
|
134
|
-
"@evolvingmachines/modal": "0.0.
|
|
132
|
+
"@evolvingmachines/daytona": "0.0.58",
|
|
133
|
+
"@evolvingmachines/e2b": "0.0.58",
|
|
134
|
+
"@evolvingmachines/modal": "0.0.58",
|
|
135
135
|
"ajv": "^8.17.1",
|
|
136
136
|
"p-map": "^7.0.2",
|
|
137
137
|
"smol-toml": "^1.7.0",
|
|
@@ -18,7 +18,6 @@ The pages under `references/` are the documentation site's pages, byte for byte,
|
|
|
18
18
|
2. Every CLI verb is documented from its own `--help`; run `evolve <verb> --help` to confirm the flags of the installed version.
|
|
19
19
|
3. Every command and every SDK client reads `EVOLVE_API_KEY`; the Installation page says where the key comes from.
|
|
20
20
|
|
|
21
|
-
## Topic index
|
|
22
21
|
|
|
23
22
|
## Docs
|
|
24
23
|
|
|
@@ -83,10 +83,6 @@ Each of these applies to every arm of the job.
|
|
|
83
83
|
Skill for every agent arm. Repeatable. Accepts `skills.sh/<owner>/<repo>[/<skill>]`, `org/repo[@ref]`, an https git URL, `upload:<id>`, `name:<skill-name>` (your moving name pointer, resolved server-side), or a local folder, which is uploaded first and then referenced; `--print-config` still shows the path you typed.
|
|
84
84
|
</ParamField>
|
|
85
85
|
|
|
86
|
-
<ParamField path="--ae, --agent-env" type="KEY=VALUE">
|
|
87
|
-
Sent as the job's `agent_env`, which the server refuses on this deployment: the create fails naming the two `--ve` keys it honors instead. Agent environment comes from the task's `[environment.env]` table or an attached `--secret`.
|
|
88
|
-
</ParamField>
|
|
89
|
-
|
|
90
86
|
<ParamField path="--ve, --verifier-env" type="KEY=VALUE">
|
|
91
87
|
Environment for every verifier run. Repeatable. The server honors exactly `REWARDKIT_JUDGE` and `REWARDKIT_MODEL`, rewardkit's judge override, and refuses any other key.
|
|
92
88
|
</ParamField>
|
|
@@ -45,7 +45,7 @@ evolve run \
|
|
|
45
45
|
|
|
46
46
|
Only `claude` and `codex` take a config or a preset; the [capability document](/sdk-reference/meta) publishes `supports_config` and `presets` per harness. An effort, preset or config a harness cannot honor is refused when the job is created, never silently skipped, and so is a config key that touches billing, base URLs, routing or environment.
|
|
47
47
|
|
|
48
|
-
Environment for the agent comes from two places, a task's own `[environment.env]` table and a secret attached with `--secret`; a job cannot add a third
|
|
48
|
+
Environment for the agent comes from two places, a task's own `[environment.env]` table and a secret attached with `--secret`; a job cannot add a third. See [secrets](/core-concepts/secrets) and [tasks](/core-concepts/tasks#environment-variables).
|
|
49
49
|
|
|
50
50
|
## Register your own agent
|
|
51
51
|
|