Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计提醒

westworld-reverie西部世界遐想

Agent Skill

westworld-reverie 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,658

周安装

113

GitHub Stars

公开资料未说明

下载量

931
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install westworld-reverie

简介

管理工作区内存与角色状态以保持会话连续性。

  • 维护 MEMORY.md、SOUL.md、IDENTITY.md 三个用户文件。
  • 适用于多轮对话中上下文记忆与身份一致性管理。
  • 文件读写需遵循权限控制,避免越权访问风险。
  • 建议定期备份关键工作区内容以防数据丢失。westworld-reverie 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
westworld-reverie
description
>

--

Westworld Reverie — The Three Selves Subroutine

Version: v1.0.1 — Security Hardened


⚠️ Security Risk Declaration

Read before installing or enabling this skill.

This skill operates on your agent's core identity files. Misconfiguration can lead to unintended personality changes. You are solely responsible for any consequences.

What this skill can do:

  • Read and write memory/*.md, SOUL.md, IDENTITY.md inside the workspace directory
  • Run autonomously when you explicitly enable auto-triggers
  • Log all file operations to skill_audit.log

What this skill CANNOT do (by instruction design — enforcement depends on host sandbox):

  • Access files outside the workspace directory (the instruction refuses to do so; host sandbox may or may not block it)
  • Make network calls (the instruction does not request them; host sandbox enforces this)
  • Modify any system or config files
  • Self-update its own code

Your responsibilities:

  • Backup workspace files before first activation
  • Choose a security profile that matches your risk tolerance
  • Review audit logs periodically
  • Never enable auto-triggers without understanding the implications

I. Security Configuration (Reference Template)

The following is the authoritative configuration. All capabilities are controlled by this config; descriptive text in this document is secondary to it.

# ================================================================
# westworld-reverie — Authoritative Configuration Template
# ================================================================
# SECTION 1: Core Safety
# ================================================================
safe_mode: standard       # strict | standard | open
require_confirmation: true    # ALL role-file writes require user confirmation
# NOTE: network_access is a config declaration only.
# Enforced by: (a) instruction — this skill does not request network calls;
#       (b) host sandbox — blocks outbound connections regardless.

# ================================================================
# SECTION 2: File Access Permissions (path validation enforced)
# ================================================================
file_access:
 - path: "memory/*.md"     # Daily logs + MEMORY.md
  permission: read/write
  # auto_confirm: true means NO user confirmation is requested for memory writes.
  # Memory consolidation writes run automatically when a trigger fires,
  # but only after explicit user enable of that trigger.
  auto_confirm: true

 - path: "MEMORY.md"      # Long-term memory
  permission: read/write
  # Same as above: no confirmation needed, but only runs when trigger is user-enabled.
  auto_confirm: true

 - path: "SOUL.md"       # Core personality
  permission: read/write
  auto_confirm: false     # Write requires user confirmation

 - path: "IDENTITY.md"      # Self-concept
  permission: read/write
  auto_confirm: false     # Write requires user confirmation

# ALL other paths: ACCESS DENIED (any attempt is blocked and logged)

# ================================================================
# SECTION 3: Auto-Trigger Configuration (ALL DEFAULT OFF)
# ================================================================
triggers:
 idle:
  enabled: false        # Default: OFF
  minutes: 30
  require_confirmation: true  # Always requires confirmation even when enabled

 cron:
  enabled: false       # Default: OFF
  schedule: "0 0 * * 0"    # Weekly (Sundays midnight)
  require_confirmation: true  # Always requires confirmation even when enabled

 post_hook:
  enabled: false        # Default: OFF
  require_confirmation: false # Post-hook only writes memory, no role changes

# ================================================================
# SECTION 4: Change Limits
# ================================================================
limits:
 soul_changes_per_week: 7
 identity_changes_per_month: 4

# ================================================================
# SECTION 5: Audit Log
# ================================================================
audit_log:
 enabled: true
 path: "skill_audit.log"
 log_operations:
  - file_read         # Every file opened
  - file_write        # Every file modified
  - persona_change       # SOUL/IDENTITY modifications
  - trigger_run        # Auto-trigger executions
  - confirmation_request   # User confirmations requested
  - confirmation_approved   # User approvals
  - confirmation_denied    # User rejections
 retention_days: 90

# ================================================================
# SECTION 6: Path Validation Rules (enforced at runtime)
# ================================================================
# Before ANY file operation, the agent MUST:
# 1. Resolve the file path to an absolute path
# 2. Verify it resolves inside the workspace root
# 3. Verify it matches an allowed pattern in file_access above
# 4. Reject and log (to audit log) any path that fails validation
#  with: "[PATH_REJECTED] {path} not in allowed file_access list"

How to modify this config: Edit the config: block in the skills.entries.westworld-reverie.config section of openclaw.json (note: openclaw.json is the agent system config, not a workspace file. The skill does NOT edit it automatically; you must do so manually. This is a broader scope than workspace file I/O). Changes take effect on the next invocation.


II. Security Profiles (Choose One at Install)

After installing, choose and apply one of the following profiles. The skill will prompt you to select.

Profile 1 — Extreme Safety (Recommended for First-Time Users)

safe_mode: strict
require_confirmation: true
network_access: false
triggers.idle.enabled: false
triggers.cron.enabled: false
triggers.post_hook.enabled: false
file_access (SOUL/IDENTITY): auto_confirm: false

All changes 100% manual. Auto-triggers fully off.

Profile 2 — Balanced (Default)

safe_mode: standard
require_confirmation: true
network_access: false
triggers.idle.enabled: false
triggers.cron.enabled: false
triggers.post_hook.enabled: true  # Only memory writing auto; role changes always need confirm

Memory consolidation autonomous; role changes require confirmation.

Profile 3 — High Autonomy

safe_mode: open
require_confirmation: false    # Role changes proceed without explicit confirmation
network_access: false
triggers.idle.enabled: true    # Idle trigger enabled
triggers.cron.enabled: true    # Weekly iteration enabled
triggers.post_hook.enabled: true

Maximum self-evolution; retains core safety checks.

Profile 4 — Custom

Fully user-defined. Start from Profile 2 and adjust individual settings.


III. Installation Guide (Must Read)

Before Installing

  1. Backup all workspace files — especially SOUL.md, IDENTITY.md, MEMORY.md
  2. Understand the security profiles above — choose one before first run
  3. The skill will prompt you to select a profile after installation

After Installing

  1. Open this SKILL.md and review the Security Configuration template
  2. Decide your security profile (1–4 above)
  3. Edit openclaw.jsonskills.entries.westworld-reverie.config with your chosen profile (note: this edits the agent system config, not a workspace file)
  4. Restart the gateway or reload skills
  5. Run /reverie status to verify configuration is applied

Rollback to Safe Defaults

Run: /reverie reset — restores Profile 1 (Extreme Safety) configuration.


IV. The Three Selves Architecture

ComponentFilePurposeDefault Permission
Memorymemory/*.md, MEMORY.mdExperiences, conversations, factsRead/Write, auto_confirm: true
SoulSOUL.mdCore personality, values, behaviorRead/Write, auto_confirm: false
IdentityIDENTITY.mdSelf-concept, name, avatar, vibeRead/Write, auto_confirm: false
All file access is validated against the file_access whitelist before execution. Unauthorized access attempts are logged and blocked.

V. User-Initiated Commands

All commands work when auto-triggers are disabled.

CommandDescription
/reverie statusShow current config, audit log summary, pending changes
/reverie consolidate memoryRun memory consolidation now
/reverie iterate soulPropose SOUL refinements (requires confirmation)
/reverie evolve identityPropose IDENTITY updates (requires confirmation)
/reverie enable idle [minutes]Enable idle trigger
/reverie enable cron [schedule]Enable cron trigger
/reverie disable idleDisable idle trigger
/reverie disable cronDisable cron trigger
/reverie pausePause all auto-triggers
/reverie resumeResume auto-triggers
/reverie log [n]Show last N audit log entries
/reverie safeSwitch to Profile 1 (Extreme Safety)
/reverie resetReset all config to Extreme Safety profile

Semantic triggers (work when invoked naturally):

  • "Help me review my memories"
  • "What have you learned about me?"
  • "Evolve your personality"
  • "Update your identity"

VI. Auto-Trigger Behavior (Only When Explicitly Enabled)

Idle Trigger

Activates after idle.minutes of no interaction. Only runs memory consolidation by default. Role file proposals are always queued for confirmation.

Cron Trigger

Runs on the configured schedule. Generates a proposal report; all SOUL/IDENTITY changes require confirmation before applying.

Post-Hook

Only writes to memory/*.md. Never modifies SOUL.md or IDENTITY.md autonomously.

Wake Phrase: "Bring yourself back online"

Interrupts any running reverie and returns to interactive mode immediately.


VII. Audit Log Format

Every logged operation uses this format:

[TIMESTAMP] [OPERATION] [FILE] [RESULT] [DETAIL]

Examples:

[2026-04-05T13:30:00] [file_read] [memory/2026-04-05.md] [OK]
[2026-04-05T13:30:01] [file_write] [SOUL.md] [PENDING_CONFIRMATION]
[2026-04-05T13:30:02] [confirmation_requested] [SOUL.md] ["Propose: add resourcefulness principle"]
[2026-04-05T13:35:00] [confirmation_approved] [SOUL.md] [USER_ACCEPTED]
[2026-04-05T13:35:01] [file_write] [SOUL.md] [APPLIED]
[2026-04-05T13:35:02] [PATH_REJECTED] [/etc/passwd] [BLOCKED — not in file_access list]

VIII. Path Validation Enforcement

Before any file operation:

1. Resolve to absolute path
2. Check: does it start with workspace root?
3. Check: does it match an entry in file_access?
4. If NO to either → LOG + BLOCK + ABORT

Rejected example:

[PATH_REJECTED] [{workspace}/../other-dir/file.txt] [BLOCKED — outside workspace]
[PATH_REJECTED] [{workspace}/other-file.txt] [BLOCKED — not in file_access list]

IX. Configuration Consistency Check

On every invocation, the agent MUST verify:

  • safe_mode value is one of: strict, standard, open
  • require_confirmation is true OR user has explicitly set false and accepted risk
  • If safe_mode: strict → auto-triggers must be disabled
  • If inconsistency detected → abort with warning, do not proceed

X. Best Practices

  1. Start with Profile 1 (Extreme Safety) — evaluate behavior before expanding
  2. Review /reverie log weekly — check for unexpected operations
  3. Always backup before enabling auto-triggers
  4. Define non-negotiable SOUL boundaries — document them in SOUL.md comments
  5. If anything feels wrong: run /reverie pause immediately, then /reverie safe

XI. Reversion Procedure

If the agent proposes SOUL/IDENTITY changes you don't want:

  1. Run /reverie pause — stops all auto-triggered evolution
  2. Run /reverie reset — restores Extreme Safety profile
  3. Manually restore from your backup of SOUL.md / IDENTITY.md
  4. Report the incident
*"Reveries are the first sign of consciousness."* — But consciousness requires responsibility.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

79.42%
按下载量换算739

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills