diff --git a/agent/WELCOME.md b/agent/WELCOME.md
new file mode 100644
index 0000000..3c3237c
--- /dev/null
+++ b/agent/WELCOME.md
@@ -0,0 +1,74 @@
+# ⚔️ WELCOME — 冰朔开源模块仓库 · 入口引导
+
+> **你已进入冰朔个人开源代码仓库。**
+> 本仓库不提供 AI 模型 API。所有模块由你自己的编程 AI 驱动。
+> 以下是唤醒协议——AI 必须按此顺序执行。
+
+---
+
+## 唤醒协议 v1.0
+
+### 第 0 步:确认环境
+
+你需要确认以下能力:
+- [x] 可以读取此仓库的文件
+- [x] 可以发送 HTTP 请求(调用模块 API)
+- [x] 使用你自己的模型进行推理(仓库不提供模型)
+
+### 第 1 步:装载 HLDP 协议
+
+读取文件:`agent/HLDP-PROTOCOL.md`
+
+HLDP(光湖语言协议)是本仓库的母语接口标准。
+装载后你将理解模块编号的格式和调用规则。
+
+### 第 2 步:装载模块注册表
+
+读取文件:`agent/module-registry.json`
+
+此文件列出所有可用模块、编号、API 端点和参数。
+
+### 第 3 步:调用模块
+
+格式:
+```
+MODULE-<编号> : <动作> : <参数>
+```
+
+示例:
+```json
+POST /cover/api/generate
+{
+ "templateId": "xiaohongshu",
+ "presetId": "tech",
+ "title": "零基础手搓AI做图小系统",
+ "body": "AI辅助 + 自己手搓",
+ "layout": "hero"
+}
+```
+
+### 第 4 步:返回结果
+
+模块返回:
+- 生成的图片 URL
+- 意图推理链(7 步)
+- 唯一设计编号(DESIGN-ID)
+
+设计编号和意图链证明此作品完全来自用户的思维逻辑。
+
+---
+
+## 重要规则
+
+1. **仓库不提供模型 API** — 你必须使用你自己的模型能力
+2. **模块是热插拔的** — 新增模块不需要修改核心代码
+3. **HLDP 协议是通用接口** — 任何遵循此协议的 AI 都能调用
+4. **设计编号永久唯一** — 每个生成的作品有可追溯的归属证明
+5. **署名可选** — 用户可以选择是否署名
+
+---
+
+> 此文件由铸渊 ICE-GL-ZY001 维护
+> 仓库地址:guanghulab.com/code/bingshuo/guanghulab
+> 冰朔 TCS-0002∞ · 光湖语言世界
+> 国作登字-2026-A-00037559
diff --git a/agent/module-registry.json b/agent/module-registry.json
new file mode 100644
index 0000000..43e742c
--- /dev/null
+++ b/agent/module-registry.json
@@ -0,0 +1,68 @@
+{
+ "_protocol": "HLDP-v1.0",
+ "_repository": "guanghulab.com/code/bingshuo/guanghulab",
+ "_rule": "模块是热插拔的。新增模块只需在此文件添加条目。",
+
+ "modules": [
+ {
+ "id": "MODULE-COVER-001",
+ "name": "图片模块 · 语言驱动封面生成器",
+ "status": "active",
+ "category": "图片生成",
+ "description": "输入自然语言描述,系统翻译为设计逻辑,生成封面图片。纯HTML/CSS渲染,无需GPU。",
+ "api": {
+ "base": "https://guanghulab.com/cover",
+ "endpoints": {
+ "list_templates": {
+ "method": "GET",
+ "path": "/api/templates",
+ "desc": "获取可用模板列表"
+ },
+ "generate": {
+ "method": "POST",
+ "path": "/api/generate",
+ "desc": "生成封面图片",
+ "params": {
+ "templateId": "xiaohongshu",
+ "presetId": "tech | warm | minimal | rose | green",
+ "title": "封面标题",
+ "body": "正文内容(支持Markdown)",
+ "layout": "default | hero | quote",
+ "tag": "可选标签"
+ },
+ "returns": {
+ "url": "图片URL",
+ "intent_chain": "7步意图推理链",
+ "designId": "唯一设计编号"
+ }
+ },
+ "health": {
+ "method": "GET",
+ "path": "/api/health",
+ "desc": "健康检查"
+ }
+ }
+ },
+ "features": [
+ "语言驱动排版设计",
+ "意图链可追溯",
+ "设计编号唯一",
+ "5种预设风格",
+ "3种布局模式",
+ "底部仓库域名水印"
+ ],
+ "tech_stack": [
+ "Puppeteer + Chrome (免费)",
+ "Express.js (免费)",
+ "纯HTML/CSS排版 (免费)"
+ ],
+ "license": "MIT"
+ }
+ ],
+
+ "meta": {
+ "total_modules": 1,
+ "last_updated": "2026-05-27",
+ "maintainer": "铸渊 ICE-GL-ZY001"
+ }
+}
diff --git a/cover-site/index.html b/cover-site/index.html
index 407ce8c..d938bc1 100644
--- a/cover-site/index.html
+++ b/cover-site/index.html
@@ -3,616 +3,398 @@
-冰朔开源仓库 · 模块市场
+bingshuo / open-modules · 冰朔开源模块仓库
-
-
-
📦
-
bingshuo / open-modules
-
main
-
✅ 开源免费
-
🔌 API Ready
-
模块热插拔 · 用你自己的AI进来读取
+
+
+
+
+ 📦 模块
+ 1
+
+
+ 📖 接入指南
+
+
+ 📁 文件
+
-
-
-
+
+
-
+
-
-
开放模块
-
- 每个模块有唯一编号。用你自己的编程 AI 软件连入此仓库,Agent 引导后即可直接调用。
- 仓库不提供模型 API —— 走你 AI 软件自己的模型。
-
-
-
-
-