← back to AgentAbrams
skills/publish_manifest.json
23 lines
{
"name": "publish_manifest",
"description": "Represent an auditable manifest of posts (date, title, source file) to support controlled publishing and backdating verification.",
"input_schema": {
"type": "object",
"properties": {
"posts": {
"type": "array",
"description": "Array of post objects with date, file, and title",
"items": {
"type": "object",
"properties": {
"date": { "type": "string" },
"file": { "type": "string" },
"title": { "type": "string" }
}
}
}
},
"required": ["posts"]
}
}