Agent Skills
› QuixiAI/Hexis
› operations
operations
GitHub负责实例的备份、保留策略检查及配置导入导出,确保数据可恢复性和变更安全。
Trigger Scenarios
用户请求备份或查询备份状态
执行不可逆变更(如迁移、重置)前
检查并调整备份保留策略
克隆或迁移实例时导出/导入配置
Install
npx skills add QuixiAI/Hexis --skill operations -g -y
SKILL.md
Frontmatter
{
"name": "operations",
"aliases": [
"backup",
"backups",
"restore",
"export",
"import",
"retention",
"config"
],
"category": "system",
"contexts": [
"heartbeat",
"chat"
],
"requires": {
"tools": [
"database_backup"
]
},
"bound_tools": [
"database_backup",
"backup_retention",
"config_export",
"config_import"
],
"description": "Back up the brain, check retention, and export or import configuration — the housekeeping that keeps this instance recoverable"
}
Operations
Housekeeping for the instance itself: backups, retention checks, and configuration export/import.
When to Use
- The user asks for a backup, or asks whether one exists.
- Before a change you cannot undo — a migration, a bulk import, a reset. Back up first and say that you did.
- Retention drift.
backup_retentionreports what is kept and for how long; raise it if the answer is "nothing recent." - Moving or cloning an instance —
config_exportthenconfig_import.
When Not to Use
- Routinely, on a hunch. Backups cost disk and time; the continuity drive already files a request when they go stale.
Notes
config_exportwrites configuration keys and env-var names, never secret values. Say so if the user asks what it contains.config_importoverwrites live configuration. Show the user what will change before doing it, not after.- These are instance-level actions. If something here fails, report the failure and the fix — never let a backup silently not happen.
Version History
- 97f625f Current 2026-08-29 01:32


