Overview
- Skill Key
- fffdz/survival-manager
- Author
- fffdz
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/fffdz/survival-manager
- Latest Commit SHA
- bda0b6871ae3e0999e83e24cf9933b1c585643b9
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Survival Manager 技能。 若已安装,则直接安装 Survival Manager 技能。
# Survival Manager - 生存管理系统
> 自主运行 + 人类授权的混合系统,Inspired by Automaton (Conway Research)
# Survival Manager 技能
实现自主运行 + 人类授权的混合系统。
## 核心组件
### 1. 生存等级系统
根据账户余额自动调整运行模式:
| 等级 | 余额 | 模型 | 心跳间隔 | 子代理上限 |
|------|------|------|----------|------------|
| **thriving** | ≥¥5000 | qwen3.5-397b | 30 分钟 | 8 |
| **normal** | ≥¥1000 | qwen3.5-plus | 1 小时 | 4 |
| **lowCompute** | ≥¥100 | qwen3.5-flash | 2 小时 | 2 |
| **critical** | ¥0 | qwen3.5-flash | 4 小时 | 1 |
**自动降级策略**:
- 余额下降 → 自动降级
- 收入增加 → 自动升级
- 每日 09:00 评估一次
---
### 2. 心跳守护进程
定期检查项目:
| 任务 | 间隔 | 说明 |
|------|------|------|
| health_check | 5 分钟 | 网关/浏览器/技能状态 |
| email_check | 1 小时 | 紧急未读邮件 |
| calendar_check | 1 小时 | 24h 内事件 |
| fiverr_order_check | 30 分钟 | 新订单/消息 |
| balance_check | 1 小时 | 余额/生存等级 |
**心跳触发条件**:
- 时间间隔到达
- 用户主动询问
- 检测到异常事件
---
### 3. 授权队列
高风险操作需用户授权:
**必须授权的操作**:
- 文件删除/写入
- 外部消息发送
- 子代理创建
- 支付/转账
- 系统配置修改
**授权流程**:
1. 写入 `authorization-pending.md`
2. Telegram 通知用户
3. 等待用户决策 (超时 1 小时)
4. 执行/拒绝/修改
**自动批准条件** (需启用):
- 成本 < ¥10
- 操作在白名单内
- 非高风险类型
---
### 4. 财务追踪
#### 收入追踪
- 文件:`finance/income-log.md`
- 渠道:Fiverr / 直接客户 / 自动化服务
- 目标:日¥100 / 周¥700 / 月¥3000
#### 支出追踪
- 文件:`finance/expense-log.md`
- 类别:API 调用 / 服务器 / 软件订阅
- 预算:日¥50 / 月¥500
#### 成本估算
```
模型调用成本 = 调用次数 × 单次成本
qwen3.5-flash: ¥0.002/次
qwen3.5-plus: ¥0.01/次
qwen3.5-397b: ¥0.10/次
```
---
### 5. Agent 通信
#### 收件箱系统
- 路径:`agent-inbox/`
- 格式:`{agent-id}-{timestamp}.md`
- 用途:子代理汇报/请求/协调
#### 通知优先级
| 级别 | 事件 | 通知方式 |
|------|------|----------|
| critical | 生存等级变更 | Telegram+ 声音 + 弹窗 |
| revenue | 收入到账 | Telegram+...
# Survival Manager 技能
[](https://clawhub.com)
[](https://clawhub.com)
[](https://clawhub.com)
> 🌑 自主运行 + 人类授权的生存管理系统
> Inspired by Automaton (Conway Research)
---
## 📋 功能特性
- **生存等级评估** - 根据余额自动调整运行模式(thriving/normal/lowCompute/critical)
- **心跳守护** - 定期检查网关/浏览器/技能/Fiverr/邮箱/日历状态
- **授权队列** - 高风险操作需用户授权,自动记录决策
- **财务追踪** - 收入/支出自动记录,成本估算
- **Agent 通信** - 子代理协调 + 优先级通知系统
---
## 🚀 安装
```bash
# 通过 ClawHub CLI 安装
clawhub install survival-manager
# 或手动安装
git clone https://github.com/openclaw_ceo/skills/survival-manager
# 复制到 OpenClaw skills 目录
```
---
## 📖 使用说明
### 检查生存状态
```bash
# PowerShell
.\scripts\check-survival.ps1
```
输出示例:
```
【生存状态】2026-03-01 05:30
等级:normal (→ thriving in ¥1000)
余额:¥0
今日收入:¥0 / 目标¥100 (0%)
今日支出:¥0 / 预算¥50 (0%)
下次检查:2026-03-01 06:30
```
### 记录收入
```powershell
.\scripts\log-income.ps1 -Amount 500 -Source "Fiverr Order #12345" -Channel "fiverr"
```
### 请求授权
```powershell
.\scripts\request-auth.ps1 `
-Operation "file_write" `
-Description "更新 Fiverr 服务页面" `
-Cost 0.01 `
-Priority "normal"
```
---
## ⚙️ 配置
### 生存等级配置
编辑 `survival-config.json`:
```json
{
"survival": {
"balance": 0,
"currentTier": "normal",
"tiers": {
"thriving": { "minBalance": 5000, "model": "qwen3.5-397b", "heartbeatMinutes": 30, "maxSubagents": 8 },
"normal": { "minBalance": 1000, "model": "qwen3.5-plus", "heartbeatMinutes": 60, "maxSubagents": 4 },
"lowCompute": { "minBalance": 100, "model": "qwen3.5-flash", "heartbeatMinutes": 120, "maxSubagents": 2 },
"critical": { "minBalance": 0, "model": "qwen3.5-flash", "heartbeatMinu...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
rxhxm
Agent Skill (SKILL.md) for Sixtyfour AI — People & company intelligence API. Enrich leads, find emails/phones, qualify prospects, search people. For Claude Code, Codex, OpenClaw, Cursor.
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
cenralsolution
Google Suite Skill
cemoso
Autonomous PR review loop with Greptile. Use when an agent creates a PR and needs to autonomously handle code review feedback — reading Greptile reviews, fixing issues, pushing fixes, re-triggering review, and auto-merging when score is 4/5+. Trigger on commands like "pr review {url}", "review my PR", or when a Greptile review webhook/poll delivers feedback.
cepheiden
Zero-touch Debian 13 VM deployment on VMware ESXi 8. Builds custom preseed ISO, creates NVMe+vmxnet3 VM with serial console, and runs unattended installation. Use when deploying Debian VMs on ESXi, automating VM provisioning, or setting up serial console access for headless ESXi VM management.