Skills are structured website operations exposed to agents through the CMS Core.
high
Deploy Site
构建并发布当前客户站点到已配置的发布目标,记录发布任务、产物清单、回调状态、审计日志和用量。
{
"type": "object",
"properties": {
"reason": {
"type": "string"
},
"target": {
"type": "object"
},
"dedupeKey": {
"type": "string"
},
"environment": {
"type": "string"
}
}
}low
Get Site Deploy Status
查看指定 Site Shell 发布任务的状态。
{
"type": "object",
"required": [
"deploymentId"
],
"properties": {
"deploymentId": {
"type": "string"
}
}
}low
List Site Deployments
查看最近的 Site Shell 发布记录。
{
"type": "object",
"properties": {
"limit": {
"type": "number"
},
"status": {
"type": "string"
}
}
}high
Trigger Site Rebuild
在内容发布后触发或排队 Site Shell 重建。
{
"type": "object",
"properties": {
"reason": {
"type": "string"
},
"target": {
"type": "object"
},
"environment": {
"type": "string"
}
}
}medium
Reject Request
拒绝一个待审批的高风险请求,不执行目标操作。
{
"type": "object",
"required": [
"approvalId"
],
"properties": {
"note": {
"type": "string"
},
"approvalId": {
"type": "string"
},
"reviewerId": {
"type": "string"
}
}
}high
Approve Request
批准并执行一个待审批的高风险请求。
{
"type": "object",
"required": [
"approvalId"
],
"properties": {
"note": {
"type": "string"
},
"approvalId": {
"type": "string"
},
"reviewerId": {
"type": "string"
}
}
}low
List Approvals
查看 agent 高风险操作的审批队列。
{
"type": "object",
"properties": {
"limit": {
"type": "number"
},
"status": {
"type": "string"
}
}
}high
Publish Content
发起指定语言页面的发布审批,不直接绕过高风险门禁。
{
"type": "object",
"required": [
"pageId",
"locale"
],
"properties": {
"locale": {
"type": "string"
},
"pageId": {
"type": "string"
},
"reason": {
"type": "string"
}
}
}medium
Update Locale Content
更新指定语言页面字段,并写入审计日志。
{
"type": "object",
"required": [
"pageId",
"locale",
"fields"
],
"properties": {
"fields": {
"type": "object"
},
"locale": {
"type": "string"
},
"pageId": {
"type": "string"
}
}
}low
SEO/GEO Audit
检查指定语言页面的 SEO/GEO 就绪度。
{
"type": "object",
"required": [
"pageId",
"locale"
],
"properties": {
"locale": {
"type": "string"
},
"pageId": {
"type": "string"
}
}
}medium
Publish Article Auto
从人类输入的文章草稿自动生成多语言、SEO/GEO、标签记忆,并直接发布到网站。
{
"type": "object",
"required": [
"title",
"contentText",
"categorySlug"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"title": {
"type": "string"
},
"excerpt": {
"type": "string"
},
"contentText": {
"type": "string"
},
"categorySlug": {
"type": "string"
},
"sourceLocale": {
"type": "string"
}
}
}