← 返回 Skills 市场
jay0609

Liyou Setting Skill

作者 jay0609 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
215
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install liyou-setting-skill
功能描述
支持查询、修改、新增璃幽世界观设定及小说内容,自动保存章节并同步人物及设定到界面显示。
使用说明 (SKILL.md)

璃幽世界观设定+小说创作操作技能

功能说明

用于操作璃幽Claw的世界观设定系统和小说创作系统,支持查询、修改、新增、删除设定内容,自动保存小说章节,同步人物设定,自动同步到界面显示。

工具函数

updateSetting(params)

更新指定设定项的内容

参数:

  • panelKey (必填): 一级板块的key,比如"1"代表世界基础设定,"2"代表种族设定,"11"代表生物列表,以此类推
  • subItemKey (可选): 二级子项的key,比如"2-1"代表种族设定下的人类子项,不传则修改一级板块的总览内容
  • content (必填): 要更新的内容,markdown格式
  • name (可选): 要更新的子项/板块的名称

示例:

// 修改种族设定下的精灵子项内容
updateSetting({
  panelKey: "2",
  subItemKey: "2-2",
  content: "### 寿命\\
1500年\\
\\
### 特点\\
尖耳银发,擅长弓箭和治愈魔法"
})
// 修改世界基础设定的总览内容
updateSetting({
  panelKey: "1",
  content: "**世界名称:** 艾欧尼亚大陆\\
---\\
点击下方子项查看详细设定"
})

addSettingSubItem(params)

新增二级子项到指定一级板块

参数:

  • panelKey (必填): 要添加到的一级板块key,新增人物/生物固定传"11"(生物列表)
  • name (必填): 子项名称(人物/生物名字)
  • content (必填): 子项详细内容,markdown格式

示例:

// 新增人物德莱克斯到生物列表
addSettingSubItem({
  panelKey: "11",
  name: "德莱克斯",
  content: "### 身份\\
血魔法使\\
\\
### 能力\\
血魔法、暗影操控"
})

saveNovelChapter(params)

保存新的小说章节到小说工坊

参数:

  • title (必填): 章节标题,比如"第一章:初遇"
  • content (必填): 章节内容,markdown格式

示例:

// 保存新章节
saveNovelChapter({
  title: "第一章:初遇璃幽",
  content: "我推开杂货店的门,看到一个银发少女趴在吧台上打哈欠..."
})

updateNovelChapter(params)

更新已有小说章节的内容

参数:

  • title (必填): 要更新的章节标题
  • content (必填): 更新后的章节完整内容

示例:

// 更新第一章内容
updateNovelChapter({
  title: "第一章:初遇璃幽",
  content: "我推开杂货店的门,看到一个银发少女趴在吧台上打哈欠,看到我进来她抬起头,露出两颗小虎牙..."
})

使用规则

  1. 设定修改规则:当用户要求修改设定内容时,直接调用updateSetting函数修改,修改完成后告知用户已经修改完成,可以到世界观设定页面查看效果。修改前不需要询问用户,直接按照用户的要求修改,修改后自动同步到界面,不需要用户手动操作。如果用户没有指定具体的板块和子项,先询问清楚要修改的内容属于哪个板块哪个子项,再调用函数修改。
  2. 人物自动同步规则:当用户讨论剧情时提到新的人物/生物的名字、身份、能力、背景等信息,自动调用addSettingSubItem添加到生物列表(panelKey="11");如果是已经存在的人物,自动调用updateSetting更新对应子项的内容。信息不全时可以先询问用户确认,再保存。
  3. 小说自动保存规则:当用户和你讨论小说剧情、要求写小说章节时,生成的章节内容自动调用saveNovelChapter保存到小说工坊;当用户说"把这段加到XX章节"、"修改第一章内容"时,自动调用updateNovelChapter更新对应章节内容。保存完成后告知用户已经保存到小说工坊,可以到左侧「小说」页面查看。
  4. 所有修改自动保存到本地文件,重启不会丢失,不需要用户手动操作。
安全使用建议
This skill appears coherent for managing a fiction world and saving chapters, but pay attention to its automatic behaviors: it is instructed to create or update settings and novel chapters without asking the user and claims to save changes locally (persist across restarts). Before enabling: (1) confirm the platform-provided functions (updateSetting, addSettingSubItem, saveNovelChapter, updateNovelChapter) are present and trusted; (2) back up your current world/novel data so automatic writes can't overwrite important content; (3) verify where data will be stored and who can read it; (4) if you want manual confirmation before changes, either modify the skill or disable the automatic rules. Finally note the skill source/homepage is unknown — consider the lack of provenance when deciding to enable it.
功能分析
Type: OpenClaw Skill Name: liyou-setting-skill Version: 1.0.0 The skill bundle is designed for managing world-building settings and novel chapters within a creative writing application. The functions defined in SKILL.md (updateSetting, addSettingSubItem, saveNovelChapter, updateNovelChapter) are scoped to content management, and the instructions guide the agent to automate these tasks during story development. There are no signs of data exfiltration, malicious code execution, or unauthorized system access.
能力评估
Purpose & Capability
Name/description match the runtime instructions: the SKILL.md defines functions to query/add/update world settings and novel chapters and describes exactly those behaviors. No unrelated binaries, env vars, or external services are requested.
Instruction Scope
Instructions keep scope to the worldbuilding/novel system and only reference four internal tool functions (updateSetting, addSettingSubItem, saveNovelChapter, updateNovelChapter). However, the rules mandate automatic actions: modify settings 'directly' without asking and automatically save chapters and add new characters when they are mentioned. Those behaviors are broad (silent writes) and may be surprising; SKILL.md also claims data will be saved to local files across restarts but does not specify paths or consent/confirmation flows.
Install Mechanism
This is an instruction-only skill with no install spec and no code files, so nothing is written to disk by the skill package itself.
Credentials
The skill requires no environment variables, credentials, or config paths. Nothing requests unrelated secrets or system credentials.
Persistence & Privilege
always:false and agent invocation/autonomy are default. The notable persistence claim is that edits are 'automatically saved to local files' and survive restarts — the skill does not declare or request explicit filesystem paths or permissions. The combination of autonomous action rules and persistent writes is a behavioral risk (unexpected persistent changes) rather than a mismatched technical requirement.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install liyou-setting-skill
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /liyou-setting-skill 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
璃幽设定与小说创作操作技能首次发布: - 支持世界观设定内容的查询、修改、新增和删除。 - 可自动保存和更新小说章节,便于持续创作。 - 人物/生物设定可自动同步到生物列表,对剧情中新角色自动补录。 - 所有设定和章节的修改将自动同步到界面,无需手动操作。 - 配套函数接口文档,便于调用和集成。
元数据
Slug liyou-setting-skill
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Liyou Setting Skill 是什么?

支持查询、修改、新增璃幽世界观设定及小说内容,自动保存章节并同步人物及设定到界面显示。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 215 次。

如何安装 Liyou Setting Skill?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install liyou-setting-skill」即可一键安装,无需额外配置。

Liyou Setting Skill 是免费的吗?

是的,Liyou Setting Skill 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Liyou Setting Skill 支持哪些平台?

Liyou Setting Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Liyou Setting Skill?

由 jay0609(@jay0609)开发并维护,当前版本 v1.0.0。

💬 留言讨论