tpmjs/packages/tools/official/judge/index.ts
Ajax Davis 1234b383e7 feat(judge): add AI conversation quality evaluation tool
- Evaluates conversations across 10 metrics:
  taskCompletion, accuracy, relevance, clarity, efficiency,
  userIntentAlignment, actionability, progress, errorHandling, completeness
- Returns weighted overall score (0-10)
- Provides verdict (pass/retry/fail) with reasons
- Detects conversation loops and stuck states
- Lists must-dos, suggestions, and next steps
- Designed for frequent use in agentic loops
2026-01-17 10:49:40 +10:00

6 lines
163 B
TypeScript

/**
* AI Conversation Judge Tool for TPMJS
* Re-export all tools from src/index.ts
*/
export * from './src/index.js';
export { default } from './src/index.js';