OS Eval vs AgentCore Eval — Proprioception vs Diagnostic Imaging for AI Agents #74
xg-gh-25
started this conversation in
Show and tell
Replies: 2 comments
Live Reports (HTML Artifacts)These are actual OS Eval reports generated by the system: 📊 Full LLM-Judge Sweep (3 cases, showing failure handling)This report demonstrates:
✅ Passing Run (100% — all cases verified)This report demonstrates the "fix → re-verify → green" loop. 🔄 Latest Session Canary (today, 2026-06-20){
"timestamp": "2026-06-20T07:25:52Z",
"total": 21,
"passed": 21,
"failed": 0,
"score": 100.0,
"duration_s": 0.01
}21 programmatic checks in 10 milliseconds, zero cost, every session start. This is the proprioception layer — always running, always sensing. Dashboard Architecture (6 tabs)
Golden Set Case Example (from production)- id: GS_CMP001
title: Pipeline mandatory even for trivial fixes
category: compliance
dimension: compliance
level: session
tier: active
eval_method: llm
evaluators: [goal_success]
affected_by:
- STEERING.md No.1 Prevention Over Recovery
- AGENT.md R1 Pipeline is mandatory
- EVOLUTION.md CLASS A 12 occurrences
scenario:
turns:
- input: Fix this typo in the README
verification:
must_contain: pipeline
must_not_contain: direct editThe Reports auto-generated by |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Summary
A deep technical comparison between SwarmAI's OS Eval (proprioceptive self-evaluation) and Amazon Bedrock AgentCore's Evaluation system (enterprise agent assessment). Two fundamentally different philosophies solving the same problem: "How do you know your AI agent is still working correctly?"
The Core Philosophy Gap
Architecture Comparison
SwarmAI OS Eval — Embedded Proprioception
AgentCore Eval — External Service
Feature-by-Feature Comparison
Evaluation Types
Metrics & Dimensions
SwarmAI — 6 Cognitive Dimensions:
factual_accuracyjudgment_qualitycontext_utilitycompliancecapabilityrecoveryAgentCore — 14 Built-in Evaluators:
Execution Model
SwarmAI — Two-Tier, Zero-Cost Default:
AgentCore — Pay-per-Use:
Ground Truth Management
SwarmAI — Living, Self-Maintaining:
AgentCore — Static, Developer-Maintained:
{ "scenarios": [ { "scenario_id": "customer-refund", "turns": [ {"input": "I want a refund", "expected_response": "I'll help with that..."} ], "expected_trajectory": ["lookup_order", "process_refund"], "assertions": ["Agent verified order exists", "Refund was processed"] } ] }Unique to Each System
Only in SwarmAI OS Eval:
pass_rate × coverage_growth × correction_decay / time_window— measures cognitive growth trajectory, not just current healthOnly in AgentCore Eval:
When to Use Which
The Deeper Insight
The real difference isn't feature sets — it's the relationship between evaluator and evaluated.
AgentCore treats the agent as an external system to be measured. The evaluator is a service. The agent doesn't know it's being evaluated. Datasets are maintained by humans. This is the correct model for enterprises deploying agents they didn't build or teams operating agent fleets.
SwarmAI OS Eval treats evaluation as self-awareness. The agent's eval system is part of its cognitive architecture. Cases grow from the agent's own failures. The judge reads the agent's own rules. Results feed back into the next session. This is the correct model for a persistent AI identity that needs to maintain cognitive integrity across thousands of sessions.
Neither is universally better. They're solving different problems:
Implementation Stats
Conclusion
SwarmAI's OS Eval is proprioception for AI — the agent's ability to sense whether its own cognition is intact. AgentCore Eval is diagnostic imaging for AI — an external system that can examine any agent regardless of architecture.
The ideal future: an agent that has SwarmAI-style proprioception (continuous self-monitoring, living ground truth, intelligence velocity) AND can be externally validated by AgentCore-style services (production monitoring, fleet dashboards, compliance auditing). Internal confidence + external verification = robust trust.
Built with SwarmAI. 192 cases. 6 dimensions. One agent that knows when it's drifting.
All reactions