J.
37 / 100

Pull request routing

auth/session.ts, auth/refresh.ts

Which team should review first?

Identity86%
Payments10%
Frontend4%
// Conceptual pseudocode — not Jev SDK syntax
const state = {
  "files": "auth/session.ts, auth/refresh.ts",
  "change": "Rotate refresh tokens on use."
};

const decision = await evaluateDecision({
  state,
  question: "Which team should review first?",
  options: ["Identity","Payments","Frontend"],
});

// Your adapter normalizes the provider response.
// Tune this example threshold on labelled data.
if (decision.outcome === "Identity"
    && decision.probability >= 0.85) {
  requestTeamReview(decision);
} else {
  queueForReview(decision);
}

Let the application identity.