← All skills
Tencent SkillHub · AI

Survival Manager

自主调整运行模式,管理资金与任务,需用户授权高风险操作,保障系统稳定与财务健康的生存管理工具。

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

自主调整运行模式,管理资金与任务,需用户授权高风险操作,保障系统稳定与财务健康的生存管理工具。

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 26 sections Open source page

Survival Manager - 生存管理系统

自主运行 + 人类授权的混合系统,Inspired by Automaton (Conway Research)

Survival Manager 技能

实现自主运行 + 人类授权的混合系统。

1. 生存等级系统

根据账户余额自动调整运行模式: 等级余额模型心跳间隔子代理上限thriving≥¥5000qwen3.5-397b30 分钟8normal≥¥1000qwen3.5-plus1 小时4lowCompute≥¥100qwen3.5-flash2 小时2critical¥0qwen3.5-flash4 小时1 自动降级策略: 余额下降 → 自动降级 收入增加 → 自动升级 每日 09:00 评估一次

2. 心跳守护进程

定期检查项目: 任务间隔说明health_check5 分钟网关/浏览器/技能状态email_check1 小时紧急未读邮件calendar_check1 小时24h 内事件fiverr_order_check30 分钟新订单/消息balance_check1 小时余额/生存等级 心跳触发条件: 时间间隔到达 用户主动询问 检测到异常事件

3. 授权队列

高风险操作需用户授权: 必须授权的操作: 文件删除/写入 外部消息发送 子代理创建 支付/转账 系统配置修改 授权流程: 写入 authorization-pending.md Telegram 通知用户 等待用户决策 (超时 1 小时) 执行/拒绝/修改 自动批准条件 (需启用): 成本 < ¥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+ 声音authorization授权请求Telegram+ 声音warning预算警告Telegraminfo常规更新仅日志

scripts/check-survival.ps1

检查当前生存状态: # 读取配置 $config = Get-Content "survival-config.json" | ConvertFrom-Json # 检查余额 $balance = $config.survival.balance $tier = $config.survival.currentTier # 评估等级 if ($balance -ge 5000) { $newTier = "thriving" } elseif ($balance -ge 1000) { $newTier = "normal" } elseif ($balance -ge 100) { $newTier = "lowCompute" } else { $newTier = "critical" } # 输出报告 Write-Host "生存等级:$tier → $newTier" Write-Host "余额:¥$balance" Write-Host "模型:$($config.survival.tiers.$newTier.model)"

scripts/log-income.ps1

记录收入: param( [decimal]$Amount, [string]$Source, [string]$Channel = "fiverr" ) $timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss" $logEntry = "| $timestamp | $Source | ¥$Amount | $Channel | ✅ | - |`n" Add-Content "finance/income-log.md" $logEntry # 更新余额 $config = Get-Content "survival-config.json" | ConvertFrom-Json $config.survival.balance += $Amount $config | ConvertTo-Json -Depth 10 | Set-Content "survival-config.json"

scripts/request-authorization.ps1

  • 请求授权:
  • param(
  • [string]$Operation,
  • [string]$Description,
  • [decimal]$Cost,
  • [string]$Priority = "normal"
  • )
  • $authId = "AUTH-" + (Get-Date -Format "yyyyMMdd-HHmmss")
  • $logEntry = @"
  • ### $authId
  • **请求时间**: $(Get-Date -Format "yyyy-MM-dd HH:mm:ss")
  • **操作类型**: $Operation
  • **描述**: $Description
  • **预计成本**: ¥$Cost
  • **紧急程度**: $Priority
  • **用户决策**:
  • [ ] 批准
  • [ ] 拒绝
  • [ ] 修改后批准
  • "@
  • Add-Content "authorization-pending.md" $logEntry
  • # Telegram 通知
  • # (通过 message 工具)

references/survival-tiers.md

详细生存等级说明和转换条件。

references/authorization-rules.md

授权规则和白名单配置。

references/revenue-strategies.md

收入创造策略和渠道优化。

触发条件

以下情况应触发本技能: 心跳检查时间到达 余额发生变化 收入/支出记录更新 需要用户授权的操作 生存等级变更 子代理需要协调

生存状态报告

【生存状态】2026-02-26 23:30 等级:normal (→ thriving in ¥1000) 余额:¥0 今日收入:¥0 / 目标¥100 (0%) 今日支出:¥0 / 预算¥50 (0%) 下次检查:2026-02-27 00:30

授权请求

  • 【授权请求】AUTH-20260226-233000
  • 操作:file_write
  • 描述:更新 Fiverr 服务页面
  • 成本:¥0.01
  • 紧急:normal
  • 请在 1 小时内回复:
  • "批准" 执行
  • "拒绝" 取消
  • "修改:[内容]" 修改后执行

可自主执行 (无需授权)

✅ 读取文件 ✅ 网络搜索 ✅ 浏览器快照 ✅ 成本 < ¥10 的 API 调用

需授权执行

⚠️ 文件写入/删除 ⚠️ 发送外部消息 ⚠️ 创建子代理 ⚠️ 配置修改

禁止执行 (需明确命令)

❌ 支付/转账 ❌ 删除系统文件 ❌ 修改保护文件

短期 (7 天)

Fiverr 首单突破 优化服务页面 主动营销

中期 (30 天)

建立 3+ 收入渠道 自动化交付流程 客户 CRM 系统

长期 (90 天)

被动收入 > 主动收入 多代理协作系统 产品化服务

External Endpoints

端点数据发送用途无 (本地运行)无数据离开机器所有操作在本地执行

Security & Privacy

✅ 无外部 API 调用 - 所有数据保留在本地 ✅ 无凭证存储 - 不存储任何 API key 或密码 ✅ 文件操作透明 - 所有写入操作需用户授权 ✅ 网络请求可选 - web_search 等工具由用户配置

Model Invocation Note

本技能通过 OpenClaw 调用 AI 模型(如 qwen3.5-plus)。模型调用是自主运行的标准行为,用于: 生存等级评估 收入/支出分析 授权请求生成 如要禁用自动模型调用,可在 OpenClaw 配置中设置 autoInvoke: false。

Trust Statement

By using this skill: 所有数据保留在您的本地机器 无数据发送到第三方服务(除非您明确配置) 脚本代码完全透明,可审计 高风险操作需您手动授权 仅当您信任 OpenClaw 生态系统和本技能代码时安装。 本技能 Inspired by Automaton (Conway Research) 核心理念:自主运行 + 人类授权

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • README.md Docs