weftens 0.1.1 → 0.1.2

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/bin/weftens.js CHANGED
@@ -17,44 +17,20 @@ import readline from "node:readline";
17
17
  import { orchestrate } from "../src/weftens.js";
18
18
  import { isChangeSheet, formatChangeSheet } from "../src/format.js";
19
19
  import { askWeftens } from "../src/agent.js";
20
- import { RichyClient, FixtureRichyClient } from "../src/richy-client.js";
21
- import { PioClient, FixturePioClient } from "../src/pio-client.js";
20
+ import { buildSpecialistClients } from "../src/specialists.js";
22
21
  import { route } from "../src/agent-router.js";
23
22
  import { invoke } from "../src/invoke.js";
24
23
  import { REGISTRY, dispatchableAgents } from "../src/registry.js";
25
24
 
26
- // A specialist is live only when its FULL env group is set. A partial group is a
27
- // hard error, not a silent fixture fallback an operator who typo'd one variable
28
- // would otherwise get sample data while believing they're looking at their org.
29
- function envGroup(label, names) {
30
- const set = names.filter((n) => process.env[n]);
31
- if (set.length === 0) return null;
32
- if (set.length < names.length) {
33
- const missing = names.filter((n) => !process.env[n]).join(", ");
34
- throw new Error(`${label} is partially configured — set ${missing} (or unset ${set.join(", ")} to run with sample data)`);
35
- }
36
- return Object.fromEntries(names.map((n) => [n, process.env[n]]));
37
- }
38
-
25
+ // Client construction lives in src/specialists.js so the CLI and the SDK build them the
26
+ // same way. The CLI adds one thing: a stderr warning when a specialist falls back to
27
+ // sample data, so the person watching knows before they read a number.
39
28
  function buildAgents() {
40
- const richyEnv = envGroup("Richy", ["WEFTENS_RICHY_URL", "WEFTENS_RICHY_KEY"]);
41
- const pioEnv = envGroup("PIO", ["WEFTENS_PIO_URL", "WEFTENS_PIO_MEMBER", "WEFTENS_PIO_PASSWORD"]);
42
- const richy = richyEnv
43
- ? new RichyClient({ baseUrl: richyEnv.WEFTENS_RICHY_URL, key: richyEnv.WEFTENS_RICHY_KEY })
44
- : new FixtureRichyClient();
45
- const pio = pioEnv
46
- ? new PioClient({
47
- baseUrl: pioEnv.WEFTENS_PIO_URL,
48
- member: pioEnv.WEFTENS_PIO_MEMBER,
49
- password: pioEnv.WEFTENS_PIO_PASSWORD,
50
- tenant: process.env.WEFTENS_PIO_TENANT ?? null,
51
- })
52
- : new FixturePioClient();
53
- const fixtures = [!richyEnv && "Richy", !pioEnv && "PIO"].filter(Boolean);
54
- if (fixtures.length > 0) {
55
- process.stderr.write(`weftens: ${fixtures.join(" and ")} not configured — using clearly-flagged sample data\n`);
56
- }
57
- return { richy, pio };
29
+ return buildSpecialistClients({
30
+ onFixture: (names) =>
31
+ process.stderr.write(`weftens: ${names.join(" and ")} not configured — using clearly-flagged sample data
32
+ `),
33
+ });
58
34
  }
59
35
 
60
36
  function parseFlags(args) {
@@ -169,39 +145,10 @@ async function cmdSend(args, { routeOnly } = {}) {
169
145
  }
170
146
  if (routeOnly) return;
171
147
 
172
- // Richy and PIO are specialist legs: they answer about an ORGANIZATION, not about a
173
- // bare sentence, so they run through orchestrate() rather than as leaf agents. They
174
- // used to refuse here with a note about "wire contracts" — true internally, useless
175
- // to the person typing, and wrong in effect: the legs are reachable (with fixture
176
- // clients when unconfigured), so refusing categorically made the two headline seats
177
- // look dead. Now `send richy --org NAME "<question>"` does the real thing.
178
- if (decision.agent.tier === 1 && decision.agent.wire) {
179
- // An org is genuinely required — Richy audits a specific organization, PIO reports on one —
180
- // but demanding a FLAG for it is a door that doesn't open for a plain sentence. Whoever is
181
- // running this almost always means the same org every time, so it's config, not an argument:
182
- // set WEFTENS_ORG once and `send richy "audit our listings"` just works.
183
- org = org ?? process.env.WEFTENS_ORG ?? null;
184
- website = website ?? process.env.WEFTENS_WEBSITE ?? null;
185
- if (!org) {
186
- process.stdout.write(
187
- `\n[orchestrator] ${decision.agent.name} answers about a specific organization — which one?\n` +
188
- ` once: weftens send ${decision.agent.name} --org "Acme Co" [--website acme.com] "${request.text || "your question"}"\n` +
189
- ` always: set WEFTENS_ORG="Acme Co" (and optionally WEFTENS_WEBSITE) — then this command works as typed\n`
190
- );
191
- process.exitCode = 1;
192
- return;
193
- }
194
- const intent = decision.agent.name === "richy" ? "representation" : "operations";
195
- const result = await orchestrate(
196
- { org: { name: org, ...(website ? { website } : {}) }, intent, question: request.text || undefined },
197
- buildAgents()
198
- );
199
- process.stdout.write(`\n[orchestrator] ran ${decision.agent.name} over ${org} (intent: ${intent})\n`);
200
- process.stdout.write(`${JSON.stringify(result, null, 2)}\n`);
201
- return;
202
- }
203
-
204
- const outcome = await invoke(decision.agent, { text: request.text, inputFile, provider });
148
+ // Specialist handling (org resolution, intent mapping, orchestrate) lives in invoke() so
149
+ // the CLI and the SDK cannot disagree about what invoking richy does. This used to be a
150
+ // second copy here, and the SDK regressed against it.
151
+ const outcome = await invoke(decision.agent, { text: request.text, inputFile, provider, org, website });
205
152
  process.stdout.write(`\n[${outcome.path}] ${outcome.note}\n`);
206
153
  if (outcome.result !== undefined) {
207
154
  // A change sheet renders for a human by default — the whole point of one is that a
@@ -211,7 +158,13 @@ async function cmdSend(args, { routeOnly } = {}) {
211
158
  } else {
212
159
  process.stdout.write(`\n--- result ---\n${typeof outcome.result === "string" ? outcome.result : JSON.stringify(outcome.result, null, 2)}\n`);
213
160
  }
161
+ return;
214
162
  }
163
+
164
+ // No result means the run produced nothing usable — a missing input file, a provider CLI
165
+ // that isn't installed, a specialist with no org. All of those exited 0 before, which made
166
+ // the tool unscriptable and made the fresh-clone CI step incapable of failing.
167
+ process.exitCode = 1;
215
168
  }
216
169
 
217
170
  async function main() {
package/index.js CHANGED
@@ -1,32 +1,40 @@
1
- // Weftens SDK — the programmatic front door. The same deterministic routing and invoke
2
- // the CLI uses, exposed as an importable API so Weftens can be embedded in other code.
3
- //
4
- // import { weftens, route, invoke, REGISTRY } from "weftens";
5
- //
6
- // // one call: route a request and run the chosen agent
7
- // const { decision, outcome } = await weftens("audit our facebook ads", { inputFile: "meta.csv" });
8
- //
9
- // // or drive the pieces yourself
10
- // const decision = route({ text: "who are the funders for this grant" });
11
- // const outcome = await invoke(decision.agent, { text: "..." });
12
-
13
- import { route } from "./src/agent-router.js";
14
- import { invoke } from "./src/invoke.js";
15
- import { REGISTRY, agentByName, dispatchableAgents } from "./src/registry.js";
16
- import { complete, loadProviders } from "./src/provider.js";
17
-
18
- export { route, invoke, REGISTRY, agentByName, dispatchableAgents, complete, loadProviders };
19
-
20
- /**
21
- * Route a request and run the chosen agent — the one-call front door.
22
- * @param request a string (free text) or { text?, agent? } (agent = direct address)
23
- * @param opts { inputFile?, provider?, dry? } passed through to invoke
24
- * @returns { decision, outcome } outcome is null when nothing routed
25
- */
26
- export async function weftens(request, opts = {}) {
27
- const req = typeof request === "string" ? { text: request } : request;
28
- const decision = route(req);
29
- if (!decision.agent) return { decision, outcome: null };
30
- const outcome = await invoke(decision.agent, { text: req.text, ...opts });
31
- return { decision, outcome };
32
- }
1
+ // Weftens SDK — the programmatic front door. The same deterministic routing and invoke
2
+ // the CLI uses, exposed as an importable API so Weftens can be embedded in other code.
3
+ //
4
+ // import { weftens, route, invoke, REGISTRY } from "weftens";
5
+ //
6
+ // // one call: route a request and run the chosen agent
7
+ // const { decision, outcome } = await weftens("audit our facebook ads", { inputFile: "meta.csv" });
8
+ //
9
+ // // or drive the pieces yourself
10
+ // const decision = route({ text: "who are the funders for this grant" });
11
+ // const outcome = await invoke(decision.agent, { text: "..." });
12
+
13
+ import { route } from "./src/agent-router.js";
14
+ import { invoke } from "./src/invoke.js";
15
+ import { REGISTRY, agentByName, dispatchableAgents } from "./src/registry.js";
16
+ import { complete, loadProviders } from "./src/provider.js";
17
+ import { isChangeSheet, formatChangeSheet } from "./src/format.js";
18
+ import { buildSpecialistClients } from "./src/specialists.js";
19
+
20
+ export {
21
+ route, invoke, REGISTRY, agentByName, dispatchableAgents, complete, loadProviders,
22
+ // The renderer is part of the product, not a CLI detail: an SDK consumer gets the same
23
+ // human-readable change sheet the terminal shows, instead of having to build one.
24
+ isChangeSheet, formatChangeSheet,
25
+ buildSpecialistClients,
26
+ };
27
+
28
+ /**
29
+ * Route a request and run the chosen agent the one-call front door.
30
+ * @param request a string (free text) or { text?, agent? } (agent = direct address)
31
+ * @param opts { inputFile?, provider?, dry?, org?, website? } — passed through to invoke
32
+ * @returns { decision, outcome } outcome is null when nothing routed
33
+ */
34
+ export async function weftens(request, opts = {}) {
35
+ const req = typeof request === "string" ? { text: request } : request;
36
+ const decision = route(req);
37
+ if (!decision.agent) return { decision, outcome: null };
38
+ const outcome = await invoke(decision.agent, { text: req.text, ...opts });
39
+ return { decision, outcome };
40
+ }
package/package.json CHANGED
@@ -1,18 +1,20 @@
1
1
  {
2
2
  "name": "weftens",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "description": "Weftens \u2014 one front door that routes a marketing/representation request to the right agent and runs it on your own AI subscription (bring-your-own-model). Usable as a CLI or an SDK.",
6
6
  "main": "index.js",
7
7
  "exports": {
8
8
  ".": "./index.js",
9
- "./cli": "./bin/weftens.js"
9
+ "./cli": "./bin/weftens.js",
10
+ "./package.json": "./package.json"
10
11
  },
11
12
  "bin": {
12
13
  "weftens": "bin/weftens.js"
13
14
  },
14
15
  "license": "MIT",
15
16
  "files": [
17
+ "scripts",
16
18
  "bin",
17
19
  "src",
18
20
  "agents",
@@ -26,11 +28,11 @@
26
28
  "scripts": {
27
29
  "test": "npm run test:unit && npm run test:cores",
28
30
  "test:unit": "vitest run",
29
- "test:cores": "node --test \"agent-cores/**/test/*.test.mjs\" \"agent-cores/**/test/*.test.js\"",
31
+ "test:cores": "node scripts/run-core-tests.mjs",
30
32
  "start": "node bin/weftens.js"
31
33
  },
32
34
  "engines": {
33
- "node": ">=22"
35
+ "node": ">=20"
34
36
  },
35
37
  "devDependencies": {
36
38
  "vitest": "^2.0.0"
@@ -0,0 +1,50 @@
1
+ #!/usr/bin/env node
2
+ // Runs the agent-cores test files under Node's built-in runner.
3
+ //
4
+ // Why this exists rather than `node --test "agent-cores/**/test/*.test.mjs"`: glob expansion
5
+ // inside `node --test` needs Node 21+, and this package supports Node 20. Passing an explicit
6
+ // file list works everywhere, so the supported range in package.json is a claim CI can
7
+ // actually check rather than an aspiration.
8
+ //
9
+ // The cores are deliberately zero-dependency and run under `node --test` (not vitest) so a
10
+ // single auditor can be handed to someone who has nothing but Node installed. Keep it that way.
11
+
12
+ import { readdirSync } from "node:fs";
13
+ import { join, dirname } from "node:path";
14
+ import { fileURLToPath } from "node:url";
15
+ import { spawnSync } from "node:child_process";
16
+
17
+ const ROOT = join(dirname(fileURLToPath(import.meta.url)), "..");
18
+ const CORES = join(ROOT, "agent-cores");
19
+
20
+ function findTests(dir, found = []) {
21
+ let entries;
22
+ try {
23
+ entries = readdirSync(dir, { withFileTypes: true });
24
+ } catch {
25
+ return found; // a missing agent-cores/ is a packaging problem, reported below, not a crash here
26
+ }
27
+ for (const e of entries) {
28
+ const full = join(dir, e.name);
29
+ if (e.isDirectory()) {
30
+ if (e.name === "node_modules") continue;
31
+ findTests(full, found);
32
+ } else if (/\.test\.m?js$/.test(e.name)) {
33
+ found.push(full);
34
+ }
35
+ }
36
+ return found;
37
+ }
38
+
39
+ const files = findTests(CORES).sort();
40
+
41
+ if (files.length === 0) {
42
+ // Silence here would be indistinguishable from "all core tests passed" — exactly the failure
43
+ // this repo already shipped once: a green check over a step that could not fail.
44
+ console.error(`No core test files found under ${CORES}. Expected at least one.`);
45
+ process.exit(1);
46
+ }
47
+
48
+ console.log(`Running ${files.length} core test files under node --test`);
49
+ const result = spawnSync(process.execPath, ["--test", ...files], { stdio: "inherit", cwd: ROOT });
50
+ process.exit(result.status ?? 1);
@@ -41,14 +41,21 @@ function hintRegex(hint) {
41
41
  // "we need people ops" -> pio (matched: people)
42
42
  // They still count, at a third of a point, so a request with real signal alongside them
43
43
  // routes as before — but a lone weak hit can no longer clear the confidence floor.
44
+ // Only words that (a) are actually declared as a hint by some agent and (b) carry almost no
45
+ // meaning alone in ordinary English. Five entries here previously matched nothing in the
46
+ // registry at all — proof the list had been written from intuition about English rather than
47
+ // from the data it operates on. `registry-invariants.test.js` now fails if that recurs.
44
48
  const WEAK_HINTS = new Set([
45
49
  "site", "online", "listing", "people", "post", "content", "brief", "topic", "entity",
46
- "profile", "record", "page", "search", "report", "data", "review",
47
50
  ]);
48
51
 
49
- // A route must earn at least this much to be dispatched confidently. One ordinary hint
50
- // (1) clears it; one weak hint (0.34) does not; two weak hints do.
52
+ // A route must earn at least this much to dispatch. One ordinary hint (1) clears it; a lone
53
+ // weak hint (0.5) does not; two weak hits (1.0) do. The old value was 0.34, which meant it
54
+ // silently took THREE weak hits — and the comment claimed two. The constant was tuned until
55
+ // two adversarial strings failed rather than derived from the rule, and it cost real requests:
56
+ // "review the site" was refused.
51
57
  const CONFIDENCE_FLOOR = 1;
58
+ const WEAK_WEIGHT = 0.5;
52
59
 
53
60
  // Longer (multi-word) hints weigh more — "made for advertising" is a far stronger
54
61
  // signal than a bare "seo" — so specific phrases beat generic single words.
@@ -59,7 +66,7 @@ function scoreAgent(agent, text) {
59
66
  for (const hint of agent.routeHints) {
60
67
  if (hintRegex(hint).test(text)) {
61
68
  if (hint.includes(" ")) { matched.push(hint); score += 3; }
62
- else if (WEAK_HINTS.has(hint)) { weak.push(hint); score += 0.34; }
69
+ else if (WEAK_HINTS.has(hint)) { weak.push(hint); score += WEAK_WEIGHT; }
63
70
  else { matched.push(hint); score += 1; }
64
71
  }
65
72
  }
@@ -121,4 +128,4 @@ export function route(request = {}) {
121
128
  };
122
129
  }
123
130
 
124
- export { REGISTRY };
131
+ export { REGISTRY, WEAK_HINTS };
package/src/format.js CHANGED
@@ -1,66 +1,90 @@
1
- // Human-readable rendering of an auditor's change sheet.
2
- //
3
- // The auditors always emitted correct JSON, and JSON is the right thing for a program to
4
- // consume — but it is the wrong thing to put in front of the person deciding whether to
5
- // act. The whole value of a change sheet is that a human can read one line and know what
6
- // to do, why, and what it costs to be wrong; a wall of braces hides exactly that. So the
7
- // CLI renders by default and `--json` returns the raw object for piping.
8
- //
9
- // Deliberately plain text: no colour, no box-drawing, no spinners. This output gets pasted
10
- // into an email to a client or a ticket, and it has to survive being pasted.
11
-
12
- const money = (n) =>
13
- typeof n === "number" && Number.isFinite(n)
14
- ? "$" + n.toLocaleString("en-US", { minimumFractionDigits: 2, maximumFractionDigits: 2 })
15
- : null;
16
-
17
- /**
18
- * True when a result looks like an auditor change sheet (rather than, say, a model answer
19
- * or an orchestrator payload). Kept structural rather than name-based so a new core gets
20
- * the rendering for free.
21
- */
22
- export function isChangeSheet(result) {
23
- return Boolean(result && typeof result === "object" && Array.isArray(result.changes));
24
- }
25
-
26
- /**
27
- * Render a change sheet as plain text. Never invents a field: anything missing is simply
28
- * not printed, so a core that doesn't produce risk/evidence still renders cleanly.
29
- */
30
- export function formatChangeSheet(result) {
31
- const out = [];
32
- const changes = result.changes ?? [];
33
-
34
- const flagged = money(result.wastedSpendRecoverable);
35
- const header = [`${changes.length} proposed change${changes.length === 1 ? "" : "s"}`];
36
- // "flagged", not "recoverable": the tool measured spend against a threshold, it did not
37
- // establish that the money comes back. Some flagged terms convert — see the risk line.
38
- if (flagged) header.push(`${flagged} of spend flagged`);
39
- out.push(header.join(" | "));
40
-
41
- const a = result.account;
42
- if (a) {
43
- const bits = [];
44
- if (typeof a.totalCost === "number") bits.push(`spend ${money(a.totalCost)}`);
45
- if (typeof a.totalClicks === "number") bits.push(`${a.totalClicks} clicks`);
46
- if (typeof a.totalConversions === "number") bits.push(`${a.totalConversions} conversions`);
47
- if (typeof a.accountCPA === "number") bits.push(`CPA ${money(a.accountCPA)}`);
48
- if (bits.length) out.push(`account: ${bits.join(", ")}`);
49
- }
50
- out.push("");
51
-
52
- for (const c of changes) {
53
- const amount = money(c.dollars);
54
- out.push(`${c.rank ?? "-"}. ${c.change}${amount ? ` ${amount}` : ""}`);
55
- if (c.where) out.push(` where ${c.where}`);
56
- if (c.why) out.push(` why ${c.why}`);
57
- if (c.expectedEffect) out.push(` effect ${c.expectedEffect}`);
58
- if (c.risk) out.push(` risk ${c.risk}`);
59
- out.push("");
60
- }
61
-
62
- if (result.proposeOnly) {
63
- out.push("Proposals only nothing was sent to your ad account. Apply what you agree with.");
64
- }
65
- return out.join("\n");
66
- }
1
+ // Human-readable rendering of an auditor's change sheet.
2
+ //
3
+ // The auditors always emitted correct JSON, and JSON is the right thing for a program to
4
+ // consume — but it is the wrong thing to put in front of the person deciding whether to
5
+ // act. The whole value of a change sheet is that a human can read one line and know what
6
+ // to do, why, and what it costs to be wrong; a wall of braces hides exactly that. So the
7
+ // CLI renders by default and `--json` returns the raw object for piping.
8
+ //
9
+ // Deliberately plain text: no colour, no box-drawing, no spinners. This output gets pasted
10
+ // into an email to a client or a ticket, and it has to survive being pasted.
11
+
12
+ // Currency comes from the report, not from an assumption. Ad exports are denominated in
13
+ // whatever the account uses; hardcoding "$" renders a GBP account as dollars, which is a
14
+ // wrong number on a page whose whole job is numbers. With no currency declared, print the
15
+ // bare amount rather than assert one.
16
+ const money = (n, currency) => {
17
+ if (typeof n !== "number" || !Number.isFinite(n)) return null;
18
+ const opts = currency
19
+ ? { style: "currency", currency, minimumFractionDigits: 2, maximumFractionDigits: 2 }
20
+ : { minimumFractionDigits: 2, maximumFractionDigits: 2 };
21
+ try {
22
+ return n.toLocaleString("en-US", opts);
23
+ } catch {
24
+ // An unrecognised currency code must not take down the render.
25
+ return n.toLocaleString("en-US", { minimumFractionDigits: 2, maximumFractionDigits: 2 });
26
+ }
27
+ };
28
+
29
+ /**
30
+ * True when a result looks like an auditor change sheet (rather than, say, a model answer
31
+ * or an orchestrator payload). Kept structural rather than name-based so a new core gets
32
+ * the rendering for free.
33
+ */
34
+ export function isChangeSheet(result) {
35
+ return Boolean(result && typeof result === "object" && Array.isArray(result.changes));
36
+ }
37
+
38
+ /**
39
+ * Render a change sheet as plain text. Never invents a field: anything missing is simply
40
+ * not printed, so a core that doesn't produce risk/evidence still renders cleanly.
41
+ */
42
+ export function formatChangeSheet(result) {
43
+ // Defensive by design: this is the last thing before the user's terminal, and everything
44
+ // upstream of it (tryCore, the clients, complete) fails soft with a plain note. A
45
+ // malformed core payload must degrade, never throw a stack trace at someone auditing an
46
+ // ad account.
47
+ if (!isChangeSheet(result)) return "";
48
+ const out = [];
49
+ const currency = typeof result.currency === "string" ? result.currency : null;
50
+ const changes = result.changes.filter((c) => c && typeof c === "object");
51
+ const dropped = result.changes.length - changes.length;
52
+
53
+ const flagged = money(result.wastedSpendRecoverable, currency);
54
+ const header = [`${changes.length} proposed change${changes.length === 1 ? "" : "s"}`];
55
+ // "flagged", not "recoverable": the tool measured spend against a threshold, it did not
56
+ // establish that the money comes back. Some flagged terms convert — see the risk line.
57
+ if (flagged) header.push(`${flagged} of spend flagged`);
58
+ out.push(header.join(" | "));
59
+
60
+ const a = result.account && typeof result.account === "object" ? result.account : null;
61
+ if (a) {
62
+ const bits = [];
63
+ if (typeof a.totalCost === "number") bits.push(`spend ${money(a.totalCost, currency)}`);
64
+ if (typeof a.totalClicks === "number") bits.push(`${a.totalClicks} clicks`);
65
+ if (typeof a.totalConversions === "number") bits.push(`${a.totalConversions} conversions`);
66
+ if (typeof a.accountCPA === "number") bits.push(`CPA ${money(a.accountCPA, currency)}`);
67
+ if (bits.length) out.push(`account: ${bits.join(", ")}`);
68
+ }
69
+ out.push("");
70
+
71
+ for (const c of changes) {
72
+ const amount = money(c.dollars, currency);
73
+ // A core that doesn't describe its change has nothing worth rendering as a headline;
74
+ // say so rather than printing "[object Object]".
75
+ const label = typeof c.change === "string" && c.change.trim() ? c.change : "(change not described)";
76
+ out.push(`${c.rank ?? "-"}. ${label}${amount ? ` ${amount}` : ""}`);
77
+ const line = (tag, v) => { if (typeof v === "string" && v.trim()) out.push(` ${tag} ${v}`); };
78
+ line("where ", c.where);
79
+ line("why ", c.why);
80
+ line("effect", c.expectedEffect);
81
+ line("risk ", c.risk);
82
+ out.push("");
83
+ }
84
+
85
+ if (dropped > 0) out.push(`(${dropped} malformed entr${dropped === 1 ? "y" : "ies"} skipped)`, "");
86
+ if (result.proposeOnly) {
87
+ out.push("Proposals only — nothing was sent to your ad account. Apply what you agree with.");
88
+ }
89
+ return out.join("\n");
90
+ }
package/src/invoke.js CHANGED
@@ -60,10 +60,35 @@ async function tryCore(agent, inputFile) {
60
60
  export async function invoke(agent, opts = {}) {
61
61
  if (!agent) return { agent: null, path: "none", note: "no agent to invoke" };
62
62
 
63
+ // Specialist legs (richy, pio) answer about an ORGANIZATION, so they run through
64
+ // orchestrate() rather than as leaf agents. This used to return a note saying so and
65
+ // stop — which meant the CLI (which had its own copy of this logic) did the real work
66
+ // while the SDK returned a dead end for the same call. One implementation, both doors.
63
67
  if (agent.tier === 1 && agent.wire) {
68
+ const org = opts.org ?? process.env.WEFTENS_ORG ?? null;
69
+ const website = opts.website ?? process.env.WEFTENS_WEBSITE ?? null;
70
+ if (!org) {
71
+ return {
72
+ agent: agent.name, path: "orchestrator", needs: "org",
73
+ note: `${agent.name} answers about a specific organization — pass an org.
74
+ ` +
75
+ ` once: weftens send ${agent.name} --org "Acme Co" [--website acme.com] "<question>"
76
+ ` +
77
+ ` always: set WEFTENS_ORG="Acme Co" (and optionally WEFTENS_WEBSITE)
78
+ ` +
79
+ ` SDK: weftens("<question>", { org: "Acme Co" })`,
80
+ };
81
+ }
82
+ const { orchestrate } = await import("./weftens.js");
83
+ const { buildSpecialistClients } = await import("./specialists.js");
84
+ const intent = agent.name === "richy" ? "representation" : "operations";
85
+ const result = await orchestrate(
86
+ { org: { name: org, ...(website ? { website } : {}) }, intent, question: opts.text || undefined },
87
+ opts.agents ?? buildSpecialistClients()
88
+ );
64
89
  return {
65
- agent: agent.name, path: "orchestrator",
66
- note: `${agent.name} runs through the Weftens orchestrator over its wire contract (use the orchestrate() path); not invoked as a leaf`,
90
+ agent: agent.name, path: "orchestrator", result,
91
+ note: `ran ${agent.name} over ${org} (intent: ${intent})`,
67
92
  };
68
93
  }
69
94
 
package/src/registry.js CHANGED
@@ -1,160 +1,163 @@
1
- // The Weftens agent registry — the single source of truth for which agents exist and
2
- // how a request finds one.
3
- //
4
- // Routing is deterministic and explainable (see agent-router.js): a request matches an
5
- // agent by its declared routeHints, and you can always see which hints matched. No
6
- // model call is needed to route — the model only runs when an agent is invoked to
7
- // produce, so the routing layer is verifiable with no API key.
8
- //
9
- // Fields:
10
- // tier 1 = lead that owns sub-agents (richy, pio, content); 2 = leaf. invoke()
11
- // branches on this.
12
- // core path to a deterministic agent-cores package, or absent.
13
- // coreBin, how to shell that core's CLI (it does parse+analyze+format). Present only
14
- // coreInputFlag where wired; absent -> invoke reports the core isn't wired yet.
15
- // leads tier-1 content only: the pipeline it delegates to.
16
- // wire tier-1 richy/pio only: they answer through the existing orchestrator, not here.
17
- // ownedBy content-team seats owned by the Content lead — not dispatched by the door.
18
- // seatFile the .md seat used as the system prompt when a seat produces via the model.
19
- // routeHints keyword/phrase signals for the router.
20
- //
21
- // Note: seo-technical+seo-content and amazon-ppc+paid-search map to single real job
22
- // postings, so they are merge candidates — but the merge is deferred until the roster
23
- // actually needs consolidating. Merging early only adds structure nothing reads yet.
24
-
25
- // One home: the agent seats live in this repo (weftens/agents). Override with
26
- // WEFTENS_AGENTS_DIR. No external directory and no fallback — one canonical location.
27
- import { join, dirname } from "node:path";
28
- import { fileURLToPath } from "node:url";
29
-
30
- const AGENTS_DIR = process.env.WEFTENS_AGENTS_DIR || join(dirname(fileURLToPath(import.meta.url)), "..", "agents");
31
- const seat = (name) => join(AGENTS_DIR, `${name}.md`);
32
-
33
- export const REGISTRY = [
34
- // ---- Tier 1: lead agents (own sub-agents / their own engines) ----
35
- {
36
- name: "richy", tier: 1, team: "weftens", wire: "representationCheck", seatFile: seat("richy"),
37
- routeHints: ["represent", "representation", "reputation", "online", "website", "site",
38
- "review", "listing", "search", "seo", "visibility", "audit", "appear",
39
- "how do we look", "what do people see", "brand", "knowledge panel", "ai answer"],
40
- },
41
- {
42
- name: "pio", tier: 1, team: "weftens", wire: "operationsSummary", seatFile: seat("pio"),
43
- routeHints: ["event", "attendee", "participant", "check-in", "checkin", "roster",
44
- "grant", "funding", "funder", "program", "people", "follow-up", "followup", "donor",
45
- "prospect", "attendance", "registration", "operation", "who should i meet", "dossier",
46
- // Bare "people" is too generic to dispatch on (it's a weak hint), but these PHRASES are
47
- // unambiguous asks that a customer actually types. Without them, "we need people ops"
48
- // matched only the weak "people" and fell through to no-route.
49
- "people ops", "people operations", "ops help", "back office", "development ops",
50
- "who funds", "funding pipeline", "grant research", "prospect research"],
51
- },
52
- {
53
- name: "content", tier: 1, team: "content", leads: "content-org", seatFile: null,
54
- routeHints: ["make content", "content", "script", "reel", "video", "caption", "post",
55
- "series", "episode", "produce", "storyboard", "shot list"],
56
- },
57
-
58
- // ---- Tier 2: marketing/SEO leaves with deterministic agent-cores ----
59
- {
60
- name: "seo-technical", tier: 2, team: "seo", core: "agent-cores/seo-technical", seatFile: seat("seo-technical"),
61
- routeHints: ["crawl", "index", "indexing", "render", "schema", "structured data",
62
- "robots", "sitemap", "canonical", "core web vitals", "technical seo", "rich result"],
63
- },
64
- {
65
- name: "seo-content", tier: 2, team: "seo", core: "agent-cores/seo-content", seatFile: seat("seo-content"),
66
- routeHints: ["keyword", "topic", "entity", "content strategy", "brief",
67
- "serp", "rankings", "answer surface", "citation", "gsc", "search console"],
68
- },
69
- {
70
- // paid-search is the one core whose CLI takes a flag (--search-terms <csv>) rather
71
- // than a positional file, so it overrides the positional default in invoke.
72
- name: "paid-search", tier: 2, team: "marketing", core: "agent-cores/paid-search",
73
- coreInputFlag: "--search-terms", seatFile: seat("paid-search"),
74
- routeHints: ["google ads", "paid search", "ppc", "search terms", "negatives",
75
- "bid", "budget", "impression share", "quality score", "change sheet"],
76
- },
77
- {
78
- name: "amazon-ppc", tier: 2, team: "marketing", core: "agent-cores/amazon-ppc", seatFile: seat("amazon-ppc"),
79
- routeHints: ["amazon", "amazon ads", "sponsored products", "acos", "tacos",
80
- "harvest", "negate", "amazon search term", "sponsored brand"],
81
- },
82
- {
83
- name: "meta-ads", tier: 2, team: "marketing", core: "agent-cores/meta-ads", seatFile: seat("meta-ads"),
84
- routeHints: ["meta", "facebook", "instagram", "meta ads", "facebook ads", "instagram ads",
85
- "ad set", "adset", "creative fatigue", "frequency", "roas", "ads manager"],
86
- },
87
- {
88
- name: "supply-verify", tier: 2, team: "marketing", core: "agent-cores/supply-verify", seatFile: seat("supply-verify"),
89
- routeHints: ["placement", "mfa", "made for advertising", "ivt", "invalid traffic",
90
- "supply path", "log-level", "programmatic", "ad spend waste", "exclusion"],
91
- },
92
- {
93
- name: "content-ops", tier: 2, team: "content", core: "agent-cores/content-ops", seatFile: seat("content-ops"),
94
- routeHints: ["content inventory", "cms export", "keep update retire", "migration",
95
- "content audit", "tagging", "metadata cleanup", "template conform"],
96
- },
97
-
98
- // ---- Tier 2: marketing/PR leaves (no deterministic core — model-only) ----
99
- {
100
- name: "social-voice", tier: 2, team: "marketing", seatFile: seat("social-voice"),
101
- routeHints: ["social", "instagram", "tiktok", "linkedin", "reply", "engagement",
102
- "calendar", "per-platform", "voice-locked", "community management"],
103
- },
104
- {
105
- name: "claims-content", tier: 2, team: "content", seatFile: seat("claims-content"),
106
- routeHints: ["health", "pharma", "finance", "supplement", "regulated", "claim",
107
- "medical review", "legal review", "compliance", "substantiation"],
108
- },
109
- {
110
- name: "growth-marketing", tier: 2, team: "marketing", seatFile: seat("growth-marketing"),
111
- // "cro"/"funnel"/"activation" are the words a practitioner uses; the words a CUSTOMER
112
- // uses for the same problem are "converts badly", "signups", "checkout". Without those
113
- // the seat was unreachable by anyone describing their own problem in their own words.
114
- routeHints: ["growth", "acquisition", "channel", "funnel", "cro", "lifecycle",
115
- "campaign design", "experiment", "retention", "activation",
116
- "convert", "converts", "conversion", "converting", "signup", "sign-up",
117
- "checkout", "landing page", "drop off", "drop-off", "abandon", "onboarding"],
118
- },
119
- {
120
- name: "security-writer", tier: 2, team: "security", seatFile: seat("security-writer"),
121
- routeHints: ["security content", "technical writing", "security explainer",
122
- "threat", "vulnerability writeup", "security training", "devsecops doc"],
123
- },
124
-
125
- // ---- Tier 2: evaluation leaves (agents whose job is judgment — normal pool) ----
126
- {
127
- name: "hilbert", tier: 2, team: "eval", seatFile: seat("hilbert"),
128
- routeHints: ["headline", "tagline", "name", "slogan", "will this survive",
129
- "memetic", "does this stop someone", "positioning line", "pitch line", "repeated"],
130
- },
131
- {
132
- name: "lippmann", tier: 2, team: "eval", seatFile: seat("lippmann"),
133
- routeHints: ["perception", "what do people believe", "public sources", "reputation read",
134
- "how is x seen", "sentiment", "frame provenance", "before committing"],
135
- },
136
- {
137
- name: "agent2060", tier: 2, team: "eval", seatFile: seat("agent2060"),
138
- routeHints: ["foresight", "future", "durable", "will this last", "trend", "horizon",
139
- "bet", "does this survive", "strategic call", "category"],
140
- },
141
-
142
- // ---- Tier 2: content-team seats, owned by the Content lead (not dispatched by the door) ----
143
- ...["content-strategy", "ideator", "researcher", "writer", "script-editor",
144
- "showrunner", "video-editor", "feed-optimizer", "disclosure-qc", "growth-analyst"]
145
- .map((name) => ({
146
- name, tier: 2, team: "content", seatFile: seat(name), ownedBy: "content",
147
- routeHints: [name.replace(/-/g, " ")],
148
- })),
149
- ];
150
-
151
- export function agentByName(name) {
152
- const key = String(name).toLowerCase().trim();
153
- return REGISTRY.find((a) => a.name === key) ?? null;
154
- }
155
-
156
- // Agents the front door auto-dispatches over — everything except the content-team
157
- // seats the Content lead owns (the door routes to `content`, which owns those).
158
- export function dispatchableAgents() {
159
- return REGISTRY.filter((a) => !a.ownedBy);
160
- }
1
+ // The Weftens agent registry — the single source of truth for which agents exist and
2
+ // how a request finds one.
3
+ //
4
+ // Routing is deterministic and explainable (see agent-router.js): a request matches an
5
+ // agent by its declared routeHints, and you can always see which hints matched. No
6
+ // model call is needed to route — the model only runs when an agent is invoked to
7
+ // produce, so the routing layer is verifiable with no API key.
8
+ //
9
+ // Fields:
10
+ // tier 1 = lead that owns sub-agents (richy, pio, content); 2 = leaf. invoke()
11
+ // branches on this.
12
+ // core path to a deterministic agent-cores package, or absent.
13
+ // coreBin, how to shell that core's CLI (it does parse+analyze+format). Present only
14
+ // coreInputFlag where wired; absent -> invoke reports the core isn't wired yet.
15
+ // leads tier-1 content only: the pipeline it delegates to.
16
+ // wire tier-1 richy/pio only: they answer through the existing orchestrator, not here.
17
+ // ownedBy content-team seats owned by the Content lead — not dispatched by the door.
18
+ // seatFile the .md seat used as the system prompt when a seat produces via the model.
19
+ // routeHints keyword/phrase signals for the router.
20
+ //
21
+ // Note: seo-technical+seo-content and amazon-ppc+paid-search map to single real job
22
+ // postings, so they are merge candidates — but the merge is deferred until the roster
23
+ // actually needs consolidating. Merging early only adds structure nothing reads yet.
24
+
25
+ // One home: the agent seats live in this repo (weftens/agents). Override with
26
+ // WEFTENS_AGENTS_DIR. No external directory and no fallback — one canonical location.
27
+ import { join, dirname } from "node:path";
28
+ import { fileURLToPath } from "node:url";
29
+
30
+ const AGENTS_DIR = process.env.WEFTENS_AGENTS_DIR || join(dirname(fileURLToPath(import.meta.url)), "..", "agents");
31
+ const seat = (name) => join(AGENTS_DIR, `${name}.md`);
32
+
33
+ export const REGISTRY = [
34
+ // ---- Tier 1: lead agents (own sub-agents / their own engines) ----
35
+ {
36
+ name: "richy", tier: 1, team: "weftens", wire: "representationCheck", seatFile: seat("richy"),
37
+ routeHints: ["represent", "representation", "reputation", "online", "website", "site",
38
+ "review", "listing", "search", "seo", "visibility", "audit", "appear",
39
+ "how do we look", "what do people see", "brand", "knowledge panel", "ai answer"],
40
+ },
41
+ {
42
+ name: "pio", tier: 1, team: "weftens", wire: "operationsSummary", seatFile: seat("pio"),
43
+ routeHints: ["event", "attendee", "participant", "check-in", "checkin", "roster",
44
+ "grant", "funding", "funder", "program", "people", "follow-up", "followup", "donor",
45
+ "prospect", "attendance", "registration", "operation", "who should i meet", "dossier",
46
+ // Bare "people" is too generic to dispatch on (it's a weak hint), but these PHRASES are
47
+ // unambiguous asks that a customer actually types. Without them, "we need people ops"
48
+ // matched only the weak "people" and fell through to no-route.
49
+ "people ops", "people operations", "ops help", "back office", "development ops",
50
+ "who funds", "funding pipeline", "grant research", "prospect research"],
51
+ },
52
+ {
53
+ name: "content", tier: 1, team: "content", leads: "content-org", seatFile: null,
54
+ routeHints: ["make content", "content", "script", "reel", "video", "caption", "post",
55
+ "series", "episode", "produce", "storyboard", "shot list"],
56
+ },
57
+
58
+ // ---- Tier 2: marketing/SEO leaves with deterministic agent-cores ----
59
+ {
60
+ name: "seo-technical", tier: 2, team: "seo", core: "agent-cores/seo-technical", seatFile: seat("seo-technical"),
61
+ routeHints: ["crawl", "index", "indexing", "render", "schema", "structured data",
62
+ "robots", "sitemap", "canonical", "core web vitals", "technical seo", "rich result"],
63
+ },
64
+ {
65
+ name: "seo-content", tier: 2, team: "seo", core: "agent-cores/seo-content", seatFile: seat("seo-content"),
66
+ routeHints: ["keyword", "topic", "entity", "content strategy", "brief",
67
+ "serp", "rankings", "answer surface", "citation", "gsc", "search console"],
68
+ },
69
+ {
70
+ // paid-search is the one core whose CLI takes a flag (--search-terms <csv>) rather
71
+ // than a positional file, so it overrides the positional default in invoke.
72
+ name: "paid-search", tier: 2, team: "marketing", core: "agent-cores/paid-search",
73
+ coreInputFlag: "--search-terms", seatFile: seat("paid-search"),
74
+ routeHints: ["google ads", "paid search", "ppc", "search terms", "negatives",
75
+ "bid", "budget", "impression share", "quality score", "change sheet"],
76
+ },
77
+ {
78
+ name: "amazon-ppc", tier: 2, team: "marketing", core: "agent-cores/amazon-ppc", seatFile: seat("amazon-ppc"),
79
+ routeHints: ["amazon", "amazon ads", "sponsored products", "acos", "tacos",
80
+ "harvest", "negate", "amazon search term", "sponsored brand"],
81
+ },
82
+ {
83
+ name: "meta-ads", tier: 2, team: "marketing", core: "agent-cores/meta-ads", seatFile: seat("meta-ads"),
84
+ // No bare "instagram": the platform name is not an intent, and social-voice (organic)
85
+ // wants the same word. A permanent tie routes by scoring accident, so both sides carry
86
+ // the phrase that says which job is being asked for.
87
+ routeHints: ["meta", "facebook", "meta ads", "facebook ads", "instagram ads",
88
+ "ad set", "adset", "creative fatigue", "frequency", "roas", "ads manager"],
89
+ },
90
+ {
91
+ name: "supply-verify", tier: 2, team: "marketing", core: "agent-cores/supply-verify", seatFile: seat("supply-verify"),
92
+ routeHints: ["placement", "mfa", "made for advertising", "ivt", "invalid traffic",
93
+ "supply path", "log-level", "programmatic", "ad spend waste", "exclusion"],
94
+ },
95
+ {
96
+ name: "content-ops", tier: 2, team: "content", core: "agent-cores/content-ops", seatFile: seat("content-ops"),
97
+ routeHints: ["content inventory", "cms export", "keep update retire", "migration",
98
+ "content audit", "tagging", "metadata cleanup", "template conform"],
99
+ },
100
+
101
+ // ---- Tier 2: marketing/PR leaves (no deterministic core — model-only) ----
102
+ {
103
+ name: "social-voice", tier: 2, team: "marketing", seatFile: seat("social-voice"),
104
+ routeHints: ["social", "instagram post", "post on instagram", "tiktok", "linkedin", "reply", "engagement",
105
+ "calendar", "per-platform", "voice-locked", "community management"],
106
+ },
107
+ {
108
+ name: "claims-content", tier: 2, team: "content", seatFile: seat("claims-content"),
109
+ routeHints: ["health", "pharma", "finance", "supplement", "regulated", "claim",
110
+ "medical review", "legal review", "compliance", "substantiation"],
111
+ },
112
+ {
113
+ name: "growth-marketing", tier: 2, team: "marketing", seatFile: seat("growth-marketing"),
114
+ // "cro"/"funnel"/"activation" are the words a practitioner uses; the words a CUSTOMER
115
+ // uses for the same problem are "converts badly", "signups", "checkout". Without those
116
+ // the seat was unreachable by anyone describing their own problem in their own words.
117
+ routeHints: ["growth", "acquisition", "channel", "funnel", "cro", "lifecycle",
118
+ "campaign design", "experiment", "retention", "activation",
119
+ "convert", "converts", "conversion", "converting", "signup", "sign-up",
120
+ "checkout", "landing page", "drop off", "drop-off", "abandon", "onboarding"],
121
+ },
122
+ {
123
+ name: "security-writer", tier: 2, team: "security", seatFile: seat("security-writer"),
124
+ routeHints: ["security content", "technical writing", "security explainer",
125
+ "threat", "vulnerability writeup", "security training", "devsecops doc"],
126
+ },
127
+
128
+ // ---- Tier 2: evaluation leaves (agents whose job is judgment — normal pool) ----
129
+ {
130
+ name: "hilbert", tier: 2, team: "eval", seatFile: seat("hilbert"),
131
+ routeHints: ["headline", "tagline", "name", "slogan", "will this survive",
132
+ "memetic", "does this stop someone", "positioning line", "pitch line", "repeated"],
133
+ },
134
+ {
135
+ name: "lippmann", tier: 2, team: "eval", seatFile: seat("lippmann"),
136
+ routeHints: ["perception", "what do people believe", "public sources", "reputation read",
137
+ "how is x seen", "sentiment", "frame provenance", "before committing"],
138
+ },
139
+ {
140
+ name: "agent2060", tier: 2, team: "eval", seatFile: seat("agent2060"),
141
+ routeHints: ["foresight", "future", "durable", "will this last", "trend", "horizon",
142
+ "bet", "does this survive", "strategic call", "category"],
143
+ },
144
+
145
+ // ---- Tier 2: content-team seats, owned by the Content lead (not dispatched by the door) ----
146
+ ...["content-strategy", "ideator", "researcher", "writer", "script-editor",
147
+ "showrunner", "video-editor", "feed-optimizer", "disclosure-qc", "growth-analyst"]
148
+ .map((name) => ({
149
+ name, tier: 2, team: "content", seatFile: seat(name), ownedBy: "content",
150
+ routeHints: [name.replace(/-/g, " ")],
151
+ })),
152
+ ];
153
+
154
+ export function agentByName(name) {
155
+ const key = String(name).toLowerCase().trim();
156
+ return REGISTRY.find((a) => a.name === key) ?? null;
157
+ }
158
+
159
+ // Agents the front door auto-dispatches over — everything except the content-team
160
+ // seats the Content lead owns (the door routes to `content`, which owns those).
161
+ export function dispatchableAgents() {
162
+ return REGISTRY.filter((a) => !a.ownedBy);
163
+ }
@@ -0,0 +1,50 @@
1
+ // Building the specialist clients (Richy, PIO) from the environment.
2
+ //
3
+ // This lived in bin/weftens.js, which meant the CLI could reach live specialist services
4
+ // and the SDK could not — the same call did different things depending on which door you
5
+ // came through. It belongs in src/ so both surfaces share one implementation.
6
+ //
7
+ // A specialist is live only when its FULL env group is set. A partial group is a hard
8
+ // error, not a silent fixture fallback: an operator who typo'd one variable would
9
+ // otherwise get sample data while believing they were looking at their own organization.
10
+
11
+ import { RichyClient, FixtureRichyClient } from "./richy-client.js";
12
+ import { PioClient, FixturePioClient } from "./pio-client.js";
13
+
14
+ function envGroup(label, names, env) {
15
+ const set = names.filter((n) => env[n]);
16
+ if (set.length === 0) return null;
17
+ if (set.length < names.length) {
18
+ const missing = names.filter((n) => !env[n]).join(", ");
19
+ throw new Error(
20
+ `${label} is partially configured — set ${missing} (or unset ${set.join(", ")} to run with sample data)`
21
+ );
22
+ }
23
+ return Object.fromEntries(names.map((n) => [n, env[n]]));
24
+ }
25
+
26
+ /**
27
+ * @param opts { env?, onFixture? } — onFixture is called with the names of the specialists
28
+ * falling back to sample data, so a CLI can warn on stderr and a library can stay quiet.
29
+ * @returns { richy, pio } clients — real when configured, clearly-flagged fixtures otherwise.
30
+ */
31
+ export function buildSpecialistClients({ env = process.env, onFixture } = {}) {
32
+ const richyEnv = envGroup("Richy", ["WEFTENS_RICHY_URL", "WEFTENS_RICHY_KEY"], env);
33
+ const pioEnv = envGroup("PIO", ["WEFTENS_PIO_URL", "WEFTENS_PIO_MEMBER", "WEFTENS_PIO_PASSWORD"], env);
34
+
35
+ const richy = richyEnv
36
+ ? new RichyClient({ baseUrl: richyEnv.WEFTENS_RICHY_URL, key: richyEnv.WEFTENS_RICHY_KEY })
37
+ : new FixtureRichyClient();
38
+ const pio = pioEnv
39
+ ? new PioClient({
40
+ baseUrl: pioEnv.WEFTENS_PIO_URL,
41
+ member: pioEnv.WEFTENS_PIO_MEMBER,
42
+ password: pioEnv.WEFTENS_PIO_PASSWORD,
43
+ tenant: env.WEFTENS_PIO_TENANT ?? null,
44
+ })
45
+ : new FixturePioClient();
46
+
47
+ const fixtures = [!richyEnv && "Richy", !pioEnv && "PIO"].filter(Boolean);
48
+ if (fixtures.length > 0 && typeof onFixture === "function") onFixture(fixtures);
49
+ return { richy, pio };
50
+ }