983 B
983 B
Host Integration Contract
This Skill is platform-neutral. The host agent may load SKILL.md directly or map it to its own Skill/plugin/tool mechanism.
Input
Pass one JSON object:
{
"raw_text": "用户原始业务指令",
"task_context": {}
}
If the host already has a candidate operation, it may pass:
{
"operation": {},
"task_context": {}
}
task_context is optional metadata for the host. Do not copy transport metadata into operation.
Output
Return exactly one JSON object from output-contract.md:
agent_parse_passedwith one validoperation; oragent_parse_blockedwith a non-emptyblockersarray andoperation: null.
The host must not require $skill syntax, agents/openai.yaml, a specific tool name, Markdown, or a second output format. A host may reject out-of-scope input before invoking this Skill; if it invokes the Skill anyway, the Skill must return the same blocked result.