@ex7/mcp 0.2.0 → 0.2.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 +2 -2
- package/dist/index.js +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -53,8 +53,8 @@ claude mcp add ex7 --env EX7_AGENT_TOKEN=$EX7_AGENT_TOKEN -- npx -y @ex7/mcp
|
|
|
53
53
|
| `ex7_deploy_plan` | Compile a deploy plan for a PASS strategy. Webhook TEMPLATE only; EX7 never executes. |
|
|
54
54
|
| `ex7_strategy_publish` | Publish (or unpublish) a strategy. |
|
|
55
55
|
| `ex7_signals_list` | Recent live signals (one-shot). |
|
|
56
|
-
| `
|
|
57
|
-
| `
|
|
56
|
+
| `ex7_build` | One prompt, the machine runs the whole search (propose seed then mutate+re-judge then forward); returns the closest honest candidate + what killed it + fertile-ground. Needs EX7_TOKEN. |
|
|
57
|
+
| `ex7_build_status` | Poll a running hunt. |
|
|
58
58
|
| `ex7_workflow_run` | The whole loop: generate, validate, create, judge, gate, and optionally backtest + deploy-plan. Operate steps run only on a real PASS. |
|
|
59
59
|
|
|
60
60
|
These supersede the older `ex7_orchestrate` / `ex7_recursive_search` tool set.
|
package/dist/index.js
CHANGED
|
@@ -2004,7 +2004,7 @@ var TOOLS = [
|
|
|
2004
2004
|
},
|
|
2005
2005
|
{
|
|
2006
2006
|
definition: {
|
|
2007
|
-
name: "
|
|
2007
|
+
name: "ex7_build",
|
|
2008
2008
|
description: "One prompt → the machine runs the WHOLE search: it proposes one strategy seed and then mutates + re-judges it (deterministic, no extra LLM cost) up to ~6 iterations, forward-validates the best, and returns the closest HONEST candidate + what killed it + fertile-ground next steps. The Judge is never loosened — a survivor is neutral evidence, never advice. Aimed at the above-the-spread frontier (defaults to 15m); never 2m dead ground. Blocks up to max_wait_sec, then returns a hunt_id you poll with ex7_hunt_status. Needs a user token (EX7_TOKEN); the $0 agent token cannot run hunts.",
|
|
2009
2009
|
inputSchema: {
|
|
2010
2010
|
type: "object",
|
|
@@ -2020,7 +2020,7 @@ var TOOLS = [
|
|
|
2020
2020
|
},
|
|
2021
2021
|
handler: async (ctx, args) => {
|
|
2022
2022
|
if (ctx.agentMode) {
|
|
2023
|
-
throw Object.assign(new Error("
|
|
2023
|
+
throw Object.assign(new Error("ex7_build needs a user token (EX7_TOKEN); the $0 agent token cannot run compute-heavy hunts"), { code: "agent_token_forbidden", status: 403 });
|
|
2024
2024
|
}
|
|
2025
2025
|
const prompt = reqString(args, "prompt");
|
|
2026
2026
|
const body = { prompt };
|
|
@@ -2052,7 +2052,7 @@ var TOOLS = [
|
|
|
2052
2052
|
status: "running",
|
|
2053
2053
|
n_iterations: snap.n_iterations ?? 0,
|
|
2054
2054
|
best: snap.best,
|
|
2055
|
-
note: "still running — poll
|
|
2055
|
+
note: "still running — poll ex7_build_status with this hunt_id"
|
|
2056
2056
|
};
|
|
2057
2057
|
}
|
|
2058
2058
|
await sleep5(2500);
|
|
@@ -2061,8 +2061,8 @@ var TOOLS = [
|
|
|
2061
2061
|
},
|
|
2062
2062
|
{
|
|
2063
2063
|
definition: {
|
|
2064
|
-
name: "
|
|
2065
|
-
description: "Poll a running hunt started by
|
|
2064
|
+
name: "ex7_build_status",
|
|
2065
|
+
description: "Poll a running hunt started by ex7_build. Returns { status, progress[], best, result? }.",
|
|
2066
2066
|
inputSchema: {
|
|
2067
2067
|
type: "object",
|
|
2068
2068
|
properties: { hunt_id: { type: "string", minLength: 1 } },
|