Files
ai-agent-book/chapter5/agent-creator/reference_agent/domain_spec.json
T
liqiang b119135836
Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s
ai-agent-book 精选快照(<2MB 代码与文档,来自 github.com/bojieli/ai-agent-book)
2026-08-20 13:12:50 +00:00

25 lines
887 B
JSON

{
"schema_version": "1.0",
"name": "Reference Policy Agent",
"role": "Evaluate structured policy records using only supplied evidence.",
"requirements": "Demonstrate the uncustomized policy-record template.",
"sample_task": "Evaluate the supplied checks.",
"tool_name": "evaluate_required_records",
"tool_description": "Evaluate every user-supplied record against its required passing state.",
"record_noun": "policy record",
"records_argument": "records",
"identifier_field": "id",
"required_field": "required",
"status_field": "status",
"evidence_field": "evidence",
"passing_values": [
"passed"
],
"approved_label": "APPROVED",
"rejected_label": "REFUSED",
"remediation_by_status": {
"failed": "Correct the failed requirement and rerun it."
},
"default_remediation": "Resolve the non-passing requirement and attach passing evidence."
}