← Back to Skills Marketplace
jay0609

Liyou Setting Skill

by jay0609 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
215
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install liyou-setting-skill
Description
支持查询、修改、新增璃幽世界观设定及小说内容,自动保存章节并同步人物及设定到界面显示。
README (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. 所有修改自动保存到本地文件,重启不会丢失,不需要用户手动操作。
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install liyou-setting-skill
  3. After installation, invoke the skill by name or use /liyou-setting-skill
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
璃幽设定与小说创作操作技能首次发布: - 支持世界观设定内容的查询、修改、新增和删除。 - 可自动保存和更新小说章节,便于持续创作。 - 人物/生物设定可自动同步到生物列表,对剧情中新角色自动补录。 - 所有设定和章节的修改将自动同步到界面,无需手动操作。 - 配套函数接口文档,便于调用和集成。
Metadata
Slug liyou-setting-skill
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Liyou Setting Skill?

支持查询、修改、新增璃幽世界观设定及小说内容,自动保存章节并同步人物及设定到界面显示。 It is an AI Agent Skill for Claude Code / OpenClaw, with 215 downloads so far.

How do I install Liyou Setting Skill?

Run "/install liyou-setting-skill" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Liyou Setting Skill free?

Yes, Liyou Setting Skill is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Liyou Setting Skill support?

Liyou Setting Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Liyou Setting Skill?

It is built and maintained by jay0609 (@jay0609); the current version is v1.0.0.

💬 Comments