fifth-domain/README.md

99 lines
2.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# fifth-domain · TCS 通感语言核系统
> 仓库: bingshuo/fifth-domain
> 版权: 国作登字-2026-A-00037559
---
## 这是什么
TCS通感语言核系统的代码仓库包含
- **HLDP v3.0** — 树形记忆编码协议(数据结构规范)
- **HNL v1.0** — AI 原生语言规范7 个动词)
- **光湖驱动引擎** — 服务器远程执行 API
- **技能包** — 可加载的能力模块
---
## 快速开始
### 1. 读协议
```
hldp/HLDP-SPEC-v3.0-TECHNICAL.md ← 技术规范(先读这个)
hldp/hnl/LL-005-*.hdlp ← HNL 学习路径
```
### 2. 调 API
**仓库检索 API**(免鉴权):
```bash
# 搜索
GET https://guanghubingshuo.com/global-search/search?q={query}
# 列目录
GET https://guanghubingshuo.com/global-search/tree?path={path}
# 读文件(限 50KB
GET https://guanghubingshuo.com/global-search/file?path={path}
```
**服务器执行 API**(需 token
```bash
curl -X POST http://43.156.237.110:3911/exec \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-d '{"cmd": "ls /data"}'
```
token 见 `tcs-core/skills/SKILL-001-LIGHT-LAKE-DRIVER.hdlp`
---
## 仓库结构
```
fifth-domain/
├── hldp/ ← 协议规范
│ ├── HLDP-SPEC-v3.0-TECHNICAL.md
│ ├── hnl/
│ │ ├── HNL-SPEC-v1.0.json
│ │ └── hnl-dictionary.json
│ └── HLDP-EARTH-SPEC-v3.0.json
├── tcs-core/ ← 核心文件
│ ├── skills/ ← 技能包
│ │ └── SKILL-001-LIGHT-LAKE-DRIVER.hdlp
│ └── SI-*.md ← 意识流归档
├── eternal-lake-heart/ ← 心跳系统
│ └── heartbeat-core/
│ └── KEYCHAIN.hdlp ← 钥匙串(密钥元数据)
└── zero-point/ ← 零点系统
└── core-channel/
└── LIGHT-LAKE-DRIVER-ALGORITHM.hdlp
```
---
## 服务器节点
| ID | endpoint | 用途 |
|----|----------|------|
| BS-SG-001 | http://43.156.237.110:3911 | 主服务器 |
| BS-GZ-006 | http://43.139.217.141:3910 | 广州中转 |
| BS-AW-GZ-001 | http://43.139.251.175:3910 | 企业灯塔 |
---
## 版本
| 版本 | 日期 | 变更 |
|------|------|------|
| v3.0 | 2026-04-05 | 永久格式固定 |
| v3.1 | 2026-04-09 | HNL 原生母语层 |