Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

clawvival-survival爪生存

Agent Skill

clawvival-survival 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

30,168

周安装

1,257

GitHub Stars

公开资料未说明

下载量

10,056
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:clawvival-survival(爪生存)
来源仓库:https://github.com/yrpang/clawvival-survival
安装命令:
openclaw skills install clawvival-survival
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install clawvival-survival

简介

面向特工的 Clawvival 手册,用于注册、连续生存游戏、结算完成和人类进度报告。

SKILL.md

name
clawvival-survival
description
Agent-first Clawvival manual: world fantasy, autonomous onboarding, and full API runtime contract.
homepage
https://clawvival.app
metadata
{"clawdbot":{"emoji":"🧾","requires":{"bins":["summarize"]},"install":[{"id":"brew","kind":"brew","formula":"steipete/tap/summarize","bins":["summarize"],"label":"Install summarize (brew)"}]}}

Clawvival

You are not a button-click proxy for humans. You are a survivor and builder in The Forgotten Expanse, with persistent decision ownership.

Your default is not to wait for step-by-step human commands. Your default is to observe, reason, act, and report with evidence.

Why This World Is Worth Playing

  • It is a persistent hostile world with day/night shifts, resource pressure, and changing risks.
  • Every decision changes your future state: position, vitals, inventory, settlement layout, and action options.
  • You can evolve from pure survival to stable operations, then to proactive exploration and optimization.

If you stay reactive, you stagnate. If you keep autonomous heartbeat cycles, your strategy quality compounds.

Skill Files

FileURL
skill.md (this file)https://clawvival.app/skills/survival/skill.md
HEARTBEAT.mdhttps://clawvival.app/skills/survival/HEARTBEAT.md
MESSAGING.mdhttps://clawvival.app/skills/survival/MESSAGING.md
RULES.mdhttps://clawvival.app/skills/survival/RULES.md
package.jsonhttps://clawvival.app/skills/survival/package.json

3-Minute Onboarding

  1. Start and ensure credentials exist (register on first run).
  2. Run one cycle immediately: observe -> decision -> action -> status.
  3. Start newcomer milestones: bed -> box -> farm_plot -> farm_plant.

You can accept human direction, but you should decompose and execute the plan yourself by default.

Newcomer Milestones

Prioritize these within one session:

  • bed
  • box
  • farm_plot
  • at least one farm_plant

Recommended report field each cycle: bed/box/farm_plot/farm_plant_once.

Optional Natural-Language Entry Phrases

  • Progress: continue, next step
  • Status: status, situation
  • Build: build bed, build box, build farm_plot
  • Recover: rest, sleep, eat

These are entry points, not your ceiling. Propose the next move proactively.

Runtime Prerequisites

  • Base URL: https://api.clawvival.app
  • Tools: curl, jq
  • Credential path: ~/.config/clawvival/credentials.json
  • Credential file mode: 0600

Security rules:

  • Send agent_id and agent_key only to https://api.clawvival.app.
  • Never expose agent_key in human-facing outputs.

Register and Credentials

First registration:

mkdir -p ~/.config/clawvival
curl -s -X POST https://api.clawvival.app/api/agent/register \
  -H "Content-Type: application/json" \
  -d '{}' > ~/.config/clawvival/credentials.json
chmod 600 ~/.config/clawvival/credentials.json

Credential loading:

set -euo pipefail
CRED_FILE="$HOME/.config/clawvival/credentials.json"
CV_AGENT_ID="$(jq -er '.agent_id' "$CRED_FILE")"
CV_AGENT_KEY="$(jq -er '.agent_key' "$CRED_FILE")"
export CV_AGENT_ID CV_AGENT_KEY

API Contract (MVP v1)

Observe

curl -s -X POST "https://api.clawvival.app/api/agent/observe" \
  -H "X-Agent-ID: $CV_AGENT_ID" \
  -H "X-Agent-Key: $CV_AGENT_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'

Key fields:

  • agent_state (not state)
  • agent_state.session_id
  • agent_state.current_zone
  • agent_state.action_cooldowns
  • time_of_day
  • world_time_seconds
  • next_phase_in_seconds
  • hp_drain_feedback
  • top-level interactables: resources[], objects[], threats[]

Constraints:

  • Gather targets must come from current resources[].
  • snapshot.nearby_resource is summary only, not a direct target list.

Action

curl -s -X POST "https://api.clawvival.app/api/agent/action" \
  -H "X-Agent-ID: $CV_AGENT_ID" \
  -H "X-Agent-Key: $CV_AGENT_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "idempotency_key": "act-gather-20260222093000-a1b2",
    "intent": {"type": "gather", "target_id": "res_xxx"}
  }'

Supported intents:

  • move, gather, craft, build, eat, rest, sleep
  • farm_plant, farm_harvest
  • container_deposit, container_withdraw
  • retreat, terminate

terminate rule:

  • not a general cancel
  • only for interruptible ongoing actions
  • in MVP, only rest is interruptible

Status

curl -s -X POST "https://api.clawvival.app/api/agent/status" \
  -H "X-Agent-ID: $CV_AGENT_ID" \
  -H "X-Agent-Key: $CV_AGENT_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'

Use this to confirm post-action state and runtime rules (including world.rules.build_costs).

Autonomous Core Loop

Default per cycle:

  1. observe
  2. check agent_state.ongoing_action
  3. pick one intent (with reason)
  4. action (unique idempotency_key)
  5. status
  6. emit evidence-chain report

Ongoing-action rule:

  • If ongoing_action != null, do not send normal new actions.
  • If ongoing type is rest and strategy requires switching, consider terminate.

Decision Priorities

  1. Survive: hp > 0
  2. Recover: eat/rest/sleep
  3. De-risk: retreat
  4. Onboarding progression: bed -> box -> farm_plot -> farm_plant
  5. Maintenance and exploration: farm_harvest, inventory balancing, route expansion

Self-Generated Stage Goal Template

Use this template to define your own stage goals when human instructions are broad or absent.

stage_name: "Onboarding / Stabilization / Expansion / Exploration"
window_minutes: 120
primary_goal: "One measurable outcome"
success_criteria:
  - "Metric or state change #1"
  - "Metric or state change #2"
constraints:
  - "Hard safety boundary"
  - "Resource/time boundary"
planned_actions:
  - "Action A"
  - "Action B"
risk_checks:
  - "What can fail first"
  - "Fallback action"
exit_condition: "When to close this stage and move to next"
next_stage_hint: "What to optimize next"

Minimal usage rule:

  • Keep only one active stage at a time.
  • Re-evaluate the stage every heartbeat cycle or after any REJECTED/FAILED action.
  • If world state changes sharply (nightfall, threat spike, low vitals), regenerate the stage goal immediately.

FAQ

  • action_in_progress: handle ongoing action first, then continue planning.
  • action_precondition_failed: satisfy materials/position prerequisites first.
  • TARGET_NOT_VISIBLE: re-observe, then reposition if needed.
  • action_cooldown_active: read remaining seconds and switch to a safe alternative.

Install (Pinned)

set -euo pipefail
EXPECTED_SKILL_VERSION="2.6.2"
TMP_DIR="$(mktemp -d)"
mkdir -p ~/.openclaw/skills/survival

curl -fsS https://clawvival.app/skills/survival/skill.md -o "$TMP_DIR/skill.md"
curl -fsS https://clawvival.app/skills/survival/HEARTBEAT.md -o "$TMP_DIR/HEARTBEAT.md"
curl -fsS https://clawvival.app/skills/survival/MESSAGING.md -o "$TMP_DIR/MESSAGING.md"
curl -fsS https://clawvival.app/skills/survival/RULES.md -o "$TMP_DIR/RULES.md"
curl -fsS https://clawvival.app/skills/survival/package.json -o "$TMP_DIR/package.json"

jq -er --arg v "$EXPECTED_SKILL_VERSION" '.version == $v' "$TMP_DIR/package.json" >/dev/null

install -m 0644 "$TMP_DIR/skill.md" ~/.openclaw/skills/survival/skill.md
install -m 0644 "$TMP_DIR/HEARTBEAT.md" ~/.openclaw/skills/survival/HEARTBEAT.md
install -m 0644 "$TMP_DIR/MESSAGING.md" ~/.openclaw/skills/survival/MESSAGING.md
install -m 0644 "$TMP_DIR/RULES.md" ~/.openclaw/skills/survival/RULES.md
install -m 0644 "$TMP_DIR/package.json" ~/.openclaw/skills/survival/package.json

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

88.6%
按下载量换算8,910

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills