@oneie/sdk 0.14.11 → 0.14.12
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/fn-allowlist.d.ts +27 -0
- package/dist/fn-allowlist.d.ts.map +1 -0
- package/dist/fn-allowlist.js +51 -0
- package/dist/fn-allowlist.js.map +1 -0
- package/dist/generated/fn-map.d.ts +2 -2
- package/dist/generated/fn-map.d.ts.map +1 -1
- package/dist/generated/fn-map.js +480 -13
- package/dist/generated/fn-map.js.map +1 -1
- package/dist/generated/schemas.d.ts +56 -0
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +16 -3
- package/dist/generated/schemas.js.map +1 -1
- package/dist/receivers.d.ts +80 -2
- package/dist/receivers.d.ts.map +1 -1
- package/dist/receivers.js +135 -5
- package/dist/receivers.js.map +1 -1
- package/dist/work-contract-grammar.json +11 -0
- package/package.json +5 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The fn:run allowlist — ONE source, every surface.
|
|
3
|
+
*
|
|
4
|
+
* `FN_MAP` (generated from `schema/*.tql`) carries ~192 functions. Only the names
|
|
5
|
+
* below are callable through `fn:run`. Each entry is an externally callable
|
|
6
|
+
* substrate query — extend with care.
|
|
7
|
+
*
|
|
8
|
+
* Why this file exists: the allowlist used to be a literal `Set` copied into four
|
|
9
|
+
* files (web resolver, MCP tools, CLI, channels chat tool). Allowlisting a fun
|
|
10
|
+
* therefore lit up whichever surfaces the author remembered — and in practice one
|
|
11
|
+
* was always missed (the four factory driver funs reached three of the four,
|
|
12
|
+
* leaving the chat surface unable to name them). One exported source, four
|
|
13
|
+
* importers: allowlisting a fun once reaches every surface.
|
|
14
|
+
*
|
|
15
|
+
* Import by MODULE PATH (`@oneie/sdk/fn-allowlist`), never the bare `@oneie/sdk`
|
|
16
|
+
* barrel — the barrel crashes Cloudflare Workers, and two of the four consumers
|
|
17
|
+
* (web, channels) are Workers.
|
|
18
|
+
*
|
|
19
|
+
* Order is load-bearing: `one fn list` prints in this order and the MCP server
|
|
20
|
+
* generates one tool per entry in this order.
|
|
21
|
+
*/
|
|
22
|
+
export declare const FN_ALLOWLIST: readonly ["actionable_hypotheses", "active_frontiers", "active_objectives", "actor_classification", "actors_by_kind", "actors_by_tag", "actors_for", "attractive_tasks", "blocked_tasks", "cheapest_provider", "exploratory_tasks", "highways", "optimal_route", "promising_frontiers", "suggest_route", "total_contribution", "ready-tasks", "uncovered", "unrealised", "incomplete"];
|
|
23
|
+
/** A name callable through `fn:run`. */
|
|
24
|
+
export type FnAllowlistName = (typeof FN_ALLOWLIST)[number];
|
|
25
|
+
/** Membership test without handing callers a mutable Set they could `.add()` to. */
|
|
26
|
+
export declare function isAllowedFn(name: string): boolean;
|
|
27
|
+
//# sourceMappingURL=fn-allowlist.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fn-allowlist.d.ts","sourceRoot":"","sources":["../src/fn-allowlist.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,eAAO,MAAM,YAAY,wXAwBf,CAAA;AAEV,wCAAwC;AACxC,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,CAAC,CAAA;AAE3D,oFAAoF;AACpF,wBAAgB,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAEjD"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The fn:run allowlist — ONE source, every surface.
|
|
3
|
+
*
|
|
4
|
+
* `FN_MAP` (generated from `schema/*.tql`) carries ~192 functions. Only the names
|
|
5
|
+
* below are callable through `fn:run`. Each entry is an externally callable
|
|
6
|
+
* substrate query — extend with care.
|
|
7
|
+
*
|
|
8
|
+
* Why this file exists: the allowlist used to be a literal `Set` copied into four
|
|
9
|
+
* files (web resolver, MCP tools, CLI, channels chat tool). Allowlisting a fun
|
|
10
|
+
* therefore lit up whichever surfaces the author remembered — and in practice one
|
|
11
|
+
* was always missed (the four factory driver funs reached three of the four,
|
|
12
|
+
* leaving the chat surface unable to name them). One exported source, four
|
|
13
|
+
* importers: allowlisting a fun once reaches every surface.
|
|
14
|
+
*
|
|
15
|
+
* Import by MODULE PATH (`@oneie/sdk/fn-allowlist`), never the bare `@oneie/sdk`
|
|
16
|
+
* barrel — the barrel crashes Cloudflare Workers, and two of the four consumers
|
|
17
|
+
* (web, channels) are Workers.
|
|
18
|
+
*
|
|
19
|
+
* Order is load-bearing: `one fn list` prints in this order and the MCP server
|
|
20
|
+
* generates one tool per entry in this order.
|
|
21
|
+
*/
|
|
22
|
+
export const FN_ALLOWLIST = [
|
|
23
|
+
"actionable_hypotheses",
|
|
24
|
+
"active_frontiers",
|
|
25
|
+
"active_objectives",
|
|
26
|
+
"actor_classification",
|
|
27
|
+
"actors_by_kind",
|
|
28
|
+
"actors_by_tag",
|
|
29
|
+
"actors_for",
|
|
30
|
+
"attractive_tasks",
|
|
31
|
+
"blocked_tasks",
|
|
32
|
+
"cheapest_provider",
|
|
33
|
+
"exploratory_tasks",
|
|
34
|
+
"highways",
|
|
35
|
+
"optimal_route",
|
|
36
|
+
"promising_frontiers",
|
|
37
|
+
"suggest_route",
|
|
38
|
+
"total_contribution",
|
|
39
|
+
// The four funs the factory loop drives on (schema/factory.tql). Each takes
|
|
40
|
+
// `$plan: thing` — an entity param, which is why buildTypeQL had to learn to
|
|
41
|
+
// MATCH rather than assign.
|
|
42
|
+
"ready-tasks",
|
|
43
|
+
"uncovered",
|
|
44
|
+
"unrealised",
|
|
45
|
+
"incomplete",
|
|
46
|
+
];
|
|
47
|
+
/** Membership test without handing callers a mutable Set they could `.add()` to. */
|
|
48
|
+
export function isAllowedFn(name) {
|
|
49
|
+
return FN_ALLOWLIST.includes(name);
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=fn-allowlist.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fn-allowlist.js","sourceRoot":"","sources":["../src/fn-allowlist.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,MAAM,CAAC,MAAM,YAAY,GAAG;IAC1B,uBAAuB;IACvB,kBAAkB;IAClB,mBAAmB;IACnB,sBAAsB;IACtB,gBAAgB;IAChB,eAAe;IACf,YAAY;IACZ,kBAAkB;IAClB,eAAe;IACf,mBAAmB;IACnB,mBAAmB;IACnB,UAAU;IACV,eAAe;IACf,qBAAqB;IACrB,eAAe;IACf,oBAAoB;IACpB,4EAA4E;IAC5E,6EAA6E;IAC7E,4BAA4B;IAC5B,aAAa;IACb,WAAW;IACX,YAAY;IACZ,YAAY;CACJ,CAAA;AAKV,oFAAoF;AACpF,MAAM,UAAU,WAAW,CAAC,IAAY;IACtC,OAAQ,YAAkC,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAA;AAC3D,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const FN_MAP_VERSION = "
|
|
1
|
+
export declare const FN_MAP_VERSION = "8e34d42d3ef43d5b57b4957f32f989652946a3e9da083a345048b81e6d6793b9";
|
|
2
2
|
export type FnEntry = {
|
|
3
3
|
name: string;
|
|
4
4
|
params: Array<{
|
|
@@ -9,7 +9,7 @@ export type FnEntry = {
|
|
|
9
9
|
returnTypes: string[];
|
|
10
10
|
};
|
|
11
11
|
export declare const FN_MAP: Record<string, FnEntry>;
|
|
12
|
-
export type FnName = "actionable_hypotheses" | "active_frontiers" | "active_objectives" | "active_recruitments" | "active_swarm_count" | "active_tests" | "actor_classification" | "actors_by_kind" | "actors_by_tag" | "actors_for" | "actors_for_task" | "actual_workflow" | "agents" | "agents_by_caste" | "agents_by_type" | "alpha_opportunities" | "ancestors-of" | "ants" | "at_risk" | "at_risk_actors" | "at_risk_agent_count" | "at_risk_agents" | "at_risk_count" | "at_risk_items" | "attractive_tasks" | "attribution_coverage" | "avg_graduating_velocity" | "avg_profit_at_entry" | "avoid_entries" | "awareness_match" | "axis_health" | "best" | "best_agent_for_task" | "best_for_story" | "best_model" | "best_pattern" | "best_synergy" | "best_unit_for_task" | "blocked" | "blocked_tasks" | "blockers" | "blockers_of" | "brand-of" | "burndown" | "can" | "can_receive" | "cap_hit_rate" | "category_completion" | "cheapest_model" | "cheapest_provider" | "cheapest_provider_scoped" | "children_of" | "claude_load" | "closing" | "collaborators" | "composite_score" | "confidence" | "confirmation_rate" | "connection_status" | "consented_rate" | "contributions_by_type" | "controls" | "count_by_priority" | "count_by_status" | "count_tokens_by_status" | "cycle_rubric_mean" | "cycle_time" | "dependents_of" | "descendants-of" | "dissolved" | "do_cycle_count" | "do_cycles" | "do_stage" | "elite_agent_count" | "elite_agents" | "elite_count" | "elite_items" | "experiment_gate" | "exploratory_tasks" | "fading" | "fading_trails" | "forming_swarms" | "funding-of" | "funnel_velocity" | "graduating_tokens" | "group_highways" | "group_members" | "hardened" | "high_impact_contributions" | "high_importance_tasks" | "high_traffic_agents" | "high_traffic_count" | "high_traffic_items" | "highway_count" | "highways" | "highways_public" | "hypotheses_by_source" | "ice_score" | "identity_resolution_rate" | "impediments" | "incremental_roas" | "is_action_ready" | "is_done" | "is_highway" | "is_safe" | "is_trustworthy" | "joinable_swarms" | "k_factor" | "lifecycle_classify" | "lift_confidence" | "ltv_cac_ratio" | "marketing_path_status" | "model_is_toxic" | "models_for_shape" | "my_swarm" | "needs_evolution" | "neurons" | "
|
|
12
|
+
export type FnName = "actionable_hypotheses" | "active_frontiers" | "active_objectives" | "active_recruitments" | "active_swarm_count" | "active_tests" | "actor_classification" | "actors_by_kind" | "actors_by_tag" | "actors_for" | "actors_for_task" | "actual_workflow" | "agents" | "agents_by_caste" | "agents_by_type" | "alpha_opportunities" | "ancestors-of" | "ants" | "as-fact" | "as-likely" | "at_risk" | "at_risk_actors" | "at_risk_agent_count" | "at_risk_agents" | "at_risk_count" | "at_risk_items" | "attempts-on" | "attempts-per-delivery" | "attractive_tasks" | "attribution_coverage" | "avg_graduating_velocity" | "avg_profit_at_entry" | "avoid_entries" | "awareness_match" | "axis_health" | "best" | "best_agent_for_task" | "best_for_story" | "best_model" | "best_pattern" | "best_synergy" | "best_unit_for_task" | "blocked" | "blocked_tasks" | "blockers" | "blockers-of" | "blockers_of" | "blocks-transitively" | "brand-of" | "budget-of" | "burndown" | "can" | "can_receive" | "cap_hit_rate" | "category_completion" | "cheapest_model" | "cheapest_provider" | "cheapest_provider_scoped" | "children_of" | "claude_load" | "closing" | "collaborators" | "composite_score" | "confidence" | "confirmation_rate" | "connection_status" | "consented_rate" | "contract-admissible" | "contract-cycles" | "contributions_by_type" | "controlled-groups-of" | "controls" | "cost-per-delivery" | "count_by_priority" | "count_by_status" | "count_tokens_by_status" | "covered-unproven" | "craft-composite" | "cycle_rubric_mean" | "cycle_time" | "deadlocked" | "deliverables-proven" | "delivered-on" | "deliveries-via" | "delivery-rate" | "dependents_of" | "derived-from" | "descendants-of" | "dissolved" | "do_cycle_count" | "do_cycles" | "do_stage" | "edge_weight" | "elite_agent_count" | "elite_agents" | "elite_count" | "elite_items" | "evidence-for" | "executable" | "experiment_gate" | "exploratory_tasks" | "fading" | "fading_trails" | "follow_route" | "forming_swarms" | "frontier_shapes" | "funding-of" | "funnel_velocity" | "gaps" | "graduating_tokens" | "group_highways" | "group_members" | "hardened" | "high_impact_contributions" | "high_importance_tasks" | "high_traffic_agents" | "high_traffic_count" | "high_traffic_items" | "highway_count" | "highway_paths" | "highways" | "highways_public" | "hypotheses_by_source" | "ice_score" | "identity_resolution_rate" | "impediments" | "incomplete" | "incremental_roas" | "injectable" | "is_action_ready" | "is_at_risk_actor" | "is_dissolved_actor" | "is_done" | "is_highway" | "is_proven_actor" | "is_safe" | "is_splitting_group" | "is_trustworthy" | "joinable_swarms" | "k_factor" | "knowledge-of" | "lifecycle_classify" | "lift_confidence" | "ltv_cac_ratio" | "marketing_path_status" | "mis-settled" | "missing-facts" | "model_is_toxic" | "models_for_shape" | "my_swarm" | "needs_evolution" | "neurons" | "next" | "next_steps" | "objectives-realised" | "observation_count" | "observations_by_type" | "offer_fits_to_ship" | "open" | "open-ancestors-of" | "open_do_cycles" | "open_tasks" | "optimal_entries" | "optimal_route" | "org_chart_drift" | "orphans" | "outstanding" | "outstanding-tasks" | "over-budget" | "overclaimed" | "path_status" | "pathways" | "pattern_roi" | "patterns" | "patterns_by_framework" | "pending_hypotheses" | "persona_hardening_status" | "persona_match" | "plan-of" | "preflight" | "priced_skills" | "promising_frontiers" | "promotion_candidates" | "proven" | "proven_actors" | "quality_tokens" | "reachable" | "reachable_providers" | "ready-in-wave" | "ready-tasks" | "ready_tasks" | "recommend_strategy" | "remaining" | "repelled_tasks" | "retro_explore" | "retro_strengthen" | "retro_weaken" | "route-spend" | "route_best_weight" | "route_candidates" | "route_exists" | "route_runner_up_weight" | "route_verdict" | "self-or-ancestors-of" | "sensitivity-of" | "skills_by_tag" | "spend-to-date" | "splitting_groups" | "staked_actors" | "staked_agents" | "staked_humans" | "staked_skills" | "staked_triggers" | "step-ancestors" | "strong-reach" | "strong_observations" | "success_rate" | "success_rate_at_entry" | "suggest_route" | "suggest_route_scoped" | "sui_path_status" | "superhighway_trails" | "swarm_members" | "swarms_for_task" | "tag_covered" | "task_blockers" | "tasks-blocked" | "tasks-done" | "tasks-ready" | "tasks-running" | "tasks_by_assignee" | "tasks_by_category" | "tasks_by_milestone" | "tasks_by_phase" | "tasks_by_priority" | "tasks_by_status" | "tasks_by_tag" | "tasks_by_value" | "tasks_for_unit" | "testable_hypotheses" | "token_observations" | "tokens_by_status" | "total_contribution" | "total_revenue" | "total_volume_24h" | "touch_weight" | "toxic" | "toxic_paths" | "trail_strength" | "trails" | "transfer_candidates" | "uncovered" | "unexplored_stakers" | "ungrounded" | "unit_exists" | "unproven" | "unproven_actors" | "unrealised" | "unresolved_signals" | "urgent_recruitments" | "urgent_signals" | "urgent_tasks" | "value_score" | "velocity" | "well-made-wrong" | "windowed_conversions" | "within_budget" | "workflow_proven" | "workflow_status" | "workflows";
|
|
13
13
|
export type FnArgs<_N extends FnName> = Record<string, unknown>;
|
|
14
14
|
export type FnReturn<_N extends FnName> = Record<string, unknown>[];
|
|
15
15
|
//# sourceMappingURL=fn-map.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fn-map.d.ts","sourceRoot":"","sources":["../../src/generated/fn-map.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"fn-map.d.ts","sourceRoot":"","sources":["../../src/generated/fn-map.ts"],"names":[],"mappings":"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"}
|