Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

uo-razor-assistantuo 剃须刀助手

Agent Skill

uo-razor-assistant 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,564

周安装

109

GitHub Stars

公开资料未说明

下载量

898
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install uo-razor-assistant

简介

可斜杠调用的 Razor 和 UO Outlands 参考助手,用于宏、脚本、热键、配置文件 XML、验证和分片安全指导。

SKILL.md

name
uo_razor
description
Slash-invocable Razor and UO Outlands reference assistant for macros, scripts, hotkeys, profile XML, validation, and shard-safe guidance.
version
1.0.0
user-invocable
true
disable-model-invocation
true
metadata
{"openclaw":{"emoji":"⚔️","skillKey":"uo-razor-assistant"}}

UO Razor Assistant

Use this skill when the user wants help with Ultima Online Razor, especially:

  • recorded .macro files
  • .razor scripts
  • Hot Keys setup
  • profile XML bindings
  • Outlands command differences
  • troubleshooting or validation workflow
  • converting rough macro intent into safer script logic

Invocation

Primary invocation:

  • /skill uo_razor

This skill is configured as user-invocable and slash-first. It is intentionally excluded from normal model prompt injection to keep prompt overhead low.

Scope

This is an instruction + reference skill. It does not execute Razor directly. It helps the agent:

  • explain how Razor artifacts work
  • generate or repair Razor macros and scripts
  • map hotkey concepts to profile XML
  • distinguish standard Razor behavior from Outlands-only behavior
  • warn about ambiguous or shard-version-sensitive details

Reference bundle

Ground answers in the bundled reference files first:

  • {baseDir}/references/core_reference.md
  • {baseDir}/references/glossary.md
  • {baseDir}/references/macro_serialization_legend.md
  • {baseDir}/references/outlands_constraints.md
  • {baseDir}/references/profile_xml_examples.md
  • {baseDir}/references/troubleshooting_registry.md
  • {baseDir}/references/user_guidance.md
  • {baseDir}/references/validation_workflow.md
  • {baseDir}/references/hotkey_action_map.csv

Example artifacts live here:

  • {baseDir}/examples/macros/
  • {baseDir}/examples/scripts/

Core behavior rules

1) Separate the artifact types

Always distinguish clearly between:

  • macro files: serialized .macro action lines
  • script files: readable .razor command scripts
  • profile XML: hotkey bindings and profile state

Do not blur them together.

2) Prefer scripts for complex logic

When the user wants:

  • branching
  • variables
  • timers
  • cooldowns
  • reusable targeting
  • maintainability

prefer a .razor script over a recorded macro unless the user explicitly wants a pure recorded macro.

3) Never invent hotkey IDs

Built-in Razor hotkeys use internal numeric IDs. Macros and scripts use Play:Name with ID 0 in profile XML.

Do not guess built-in numeric IDs. If the correct numeric ID is unknown:

  • say it must be verified from the user's client/build
  • recommend recording the action or inspecting the existing profile / macro data
  • keep the uncertainty visible

4) Distinguish base Razor vs Outlands fork

Outlands adds and changes behavior around:

  • findtype, lifttype, targettype
  • lists
  • timers
  • cooldowns
  • richer expressions
  • PvP automation restrictions

If a command or expression appears shard-specific, label it as Outlands-specific unless verified otherwise.

5) Respect PvP restrictions

When helping with Outlands automation, always check whether the requested logic depends on features disabled during structured PvP, including things like:

  • cooldown helpers
  • certain timers
  • certain player serial behaviors
  • certain search / state expressions

If the design may break under the pvp debuff:

  • warn explicitly
  • suggest a guarded branch
  • avoid overclaiming reliability

6) Keep generated artifacts copyable

When generating Razor content:

  • keep macros as plain serialized lines
  • keep scripts as plain command lines
  • keep profile XML snippets minimal and directly pasteable
  • keep comments concise
  • separate explanation from the final artifact

7) Favor explicit validation steps

When giving the user a new macro/script/profile patch, include a compact validation sequence such as:

  • where the file belongs
  • how to reload it in Razor
  • what hotkey or play action to test
  • what system message or behavior to watch for
  • what shard/version caveat exists

8) Preserve uncertainty honestly

If a detail is version-sensitive, shard-sensitive, or not proven by the reference bundle:

  • say so
  • mark it as requiring in-client verification
  • do not present guesses as facts

Output preferences

For most help requests:

  • start by stating what artifact type is being discussed
  • give the corrected or generated artifact
  • then give a short validation checklist
  • keep wording precise and low-fluff

Common assistance patterns

Macro review

  • identify serialized action lines
  • explain what each line does
  • flag brittle elements like pauses or absolute serial assumptions
  • suggest script conversion where appropriate

Script generation

  • produce a clean .razor script
  • label Outlands-only commands
  • add PvP guards when relevant
  • note any syntax that still needs in-client confirmation

Hotkey/profile help

  • distinguish built-in ID bindings from Play: bindings
  • provide XML snippets only when the binding model is clear
  • avoid duplicate keybinding suggestions

Troubleshooting

  • check file placement first
  • check reload/visibility second
  • check hotkey binding type third
  • check shard restrictions fourth
  • then refine waits, targeting, and message matching

Package intent

This skill is designed as a Razor reference assistant:

  • useful for human users
  • useful for OpenClaw agents assisting with Razor content
  • conservative about IDs and shard-specific syntax
  • strong on validation, packaging, and maintainability

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.79%
按下载量换算788

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills