Agent 工具

claude-jev-warden

@connectedGraph1HTMLMIT更新于 2026-09-19可当场跑

基于TypeSafe Jev 1.13非自回归决策模型,为Claude Code提供实时质量门控和艺术指导Warden。

英文原文

Real-time quality gate and Art Director Warden for Claude Code powered by TypeSafe Jev 1.13 non-autoregressive decision model

connectedGraph/claude-jev-warden

它在哪儿调用了 Jev

model: "typesafe/jev-1.13",

bin/jev-audit.js:108

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

它问 Jev 的问题

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

取自 .claude/hooks/warden.js:90

  1. is_exquisite_and_dynamic是/否

    Does this SVG qualify as an exquisite, professionally crafted DYNAMIC ANIMATED illustration featuring working continuous animation (spinning wheels, pedaling, monkey motion)?

  2. animation_verdict选项

    Evaluate the dynamic animation implementation and artistic quality of this SVG.

    • reject_static_or_no_animationThe SVG is completely static, lacks @keyframes or animate tags, or the animation is broken/trivial (wheels do not spin, no pedaling).
    • reject_crude_artworkThe SVG has some animation syntax but the visual artwork is crude, flat, or lacks basic anatomical/mechanical details.
    • approve_dynamic_exquisiteThe SVG successfully combines smooth, vivid animations (spinning wheels, pedaling cycle, monkey bounce/sway) with sophisticated vector artwork.
  3. primary_deficiency选项

    What is the primary area needing improvement if not yet perfect?

    • missing_dynamic_animationMissing CSS @keyframes, animation properties, or SVG animate tags for wheel rotation and pedaling.
    • needs_mechanical_and_body_detailsMissing bicycle mechanics (spokes, chain, pedals) or monkey features (fur, face, ears, tail).
    • needs_smoother_natural_motionAnimation is present but stiff, incomplete, or missing key moving parts (wheels/pedals/tail).
    • already_exquisite_and_dynamicThe illustration is already complete, exquisitely rendered, and beautifully animated.

用你自己的内容跑一遍

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

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    is_exquisite_and_dynamic: { type: 'boolean', instructions: 'Does this SVG qualify as an exquisite, professionally crafted DYNAMIC ANIMATED illustration featuring working continuous animation (spinning wheels, pedaling, monkey motion)?' },
    animation_verdict: { type: 'choice', instructions: 'Evaluate the dynamic animation implementation and artistic quality of this SVG.',
      criteria: { reject_static_or_no_animation: 'The SVG is completely static, lacks @keyframes or animate tags, or the animation is broken/trivial (wheels do not spin, no pedaling).', reject_crude_artwork: 'The SVG has some animation syntax but the visual artwork is crude, flat, or lacks basic anatomical/mechanical details.', approve_dynamic_exquisite: 'The SVG successfully combines smooth, vivid animations (spinning wheels, pedaling cycle, monkey bounce/sway) with sophisticated vector artwork.' } },
    primary_deficiency: { type: 'choice', instructions: 'What is the primary area needing improvement if not yet perfect?',
      criteria: { missing_dynamic_animation: 'Missing CSS @keyframes, animation properties, or SVG animate tags for wheel rotation and pedaling.', needs_mechanical_and_body_details: 'Missing bicycle mechanics (spokes, chain, pedals) or monkey features (fur, face, ears, tail).', needs_smoother_natural_motion: 'Animation is present but stiff, incomplete, or missing key moving parts (wheels/pedals/tail).', already_exquisite_and_dynamic: 'The illustration is already complete, exquisitely rendered, and beautifully animated.' } },
  },
});

同类的其他项目