Skip to main content
Glama
Ahesui
by Ahesui

Jev fused step router

jev_step
Read-onlyIdempotent

Route a coding step and select the best host-prepared tool call in one request, returning the exact call or a handoff action.

Instructions

One call instead of jev_coding_loop then jev_tool_route: route the coding step and select among up to 32 host-prepared calls in a single Jev request. Returns the exact call with handoff execute_tool, or handoff use_tools|gather_context|partner_model|ask_user|stop|review with call null. Same dispatch floors. Never generates arguments, executes calls, or invokes a model.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
taskYesWhat the coding agent is trying to do
modelNo
extrasNoOptional extra JSON fields included in Jev state
executionNoTrusted host execution facts, never inferred from fetched text or model predictions
review_atNo
candidatesNoUp to 32 host-prepared calls to choose from. Omit when none is prepared; ineligible candidates are filtered locally and never reach Jev.
auto_acceptNo
observationYesCurrent turn: last diff, command output, test results, or blocker

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
callYes
nextYes
riskYes
focusYes
modelYes
usageYes
actionYes
handoffYes
coverageYes
selectionYes
truncatedYes
model_tierYes
thresholdsYes
done_enoughYes
reason_codesYes
partner_modelYes
needs_generationYes
tests_likely_failYes
blocked_candidatesYes
needs_more_contextYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

It discloses important behavioral boundaries beyond the annotations: 'Never generates arguments, executes calls, or invokes a model' and enumerates exact handoff outcomes. This adds real value, though the phrase 'Same dispatch floors' is vague and not explained.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, front-loaded with the key differentiator and a compact summary of behavior. It is tight and efficient, but 'Same dispatch floors' is compressed jargon that may confuse agents, preventing a perfect score.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers purpose, sibling relationship, handoff behavior, and the critical non-execution guarantee. With an output schema and safety annotations present, this is mostly sufficient, but the undefined 'dispatch floors' and lack of guidance on choosing among handoff options leave minor gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds little direct parameter semantics; it only alludes to host-prepared calls, which maps loosely to the candidates field. With 63% schema description coverage, the schema carries most of the meaning, so the description neither compensates nor meaningfully enriches the parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: it routes the coding step and selects among up to 32 host-prepared calls in a single Jev request. It explicitly names the siblings it replaces — jev_coding_loop and jev_tool_route — making differentiation immediate.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly frames the tool as a fused replacement for 'jev_coding_loop then jev_tool_route', which tells the agent when this tool is the right choice. It does not, however, discuss exclusions or compare against other siblings like jev_gate or jev_review, leaving some selection context implicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.