Agent 工具

Jevbridge

@tacticocc25TypeScriptMIT更新于 2026-09-18可当场跑

Jevbridge 是一个 ACP 和 MCP 适配器,连接 TypeSafe Jev 与 Codex、Claude、Grok、OpenCode 等任意 LLM,实现计算和类型化决策。

英文原文

ACP and MCP adapter that bridges TypeSafe Jev with any LLM — computer use and typed decisions alongside Codex, Claude, Grok, and OpenCode.

tacticocc/Jevbridge

它在哪儿调用了 Jev

export const TYPESAFE_ENDPOINT = "https://api.typesafe.ai/v1/systemone";

src/types.ts:111

链接指向我们抓取当天的那个 commit,行号是准的。

它问 Jev 的问题

下面是从这个项目源码里原样取出来的 question 组合。

取自 src/mcp/tools.test.ts:30

  1. refund是/否

    Does this request a refund?

  2. team选项

    Which team?

    • billingPayments, invoices, refunds.
    • technicalBugs and outages.
    • otherNone of the above.

用你自己的内容跑一遍

代码
import { experimental_evaluate as evaluate } from 'ai';

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    refund: { type: 'boolean', instructions: 'Does this request a refund?' },
    team: { type: 'choice', instructions: 'Which team?',
      criteria: { billing: 'Payments, invoices, refunds.', technical: 'Bugs and outages.', other: 'None of the above.' } },
  },
});

同类的其他项目