with one click
lx-space
乐享知识库与团队管理。当用户需要查看、管理知识库(空间)或团队信息时使用。触发词:知识库、空间、团队、我的知识库、space、team
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
乐享知识库与团队管理。当用户需要查看、管理知识库(空间)或团队信息时使用。触发词:知识库、空间、团队、我的知识库、space、team
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
乐享页面正文与文档块编辑。当用户需要读取或修改页面正文、替换章节、增删块、编辑表格或导入导出内容时使用。触发词:block、编辑页面、修改正文、替换内容、表格、块、MDX
乐享知识库条目管理。当用户需要操作知识条目(创建、查看、编辑、删除页面/文件夹),导入内容,管理文件(上传、下载、版本控制),或处理 Markdown 草稿时使用。触发词:页面、文档、条目、文件夹、创建文档、导入、上传文件、草稿、版本
乐享智能表格管理。当用户需要创建或读取智能表格、修改 schema、增删改查记录或管理视图时使用。触发词:智能表格、smartsheet、字段、记录、视图、CREATE TABLE、ALTER TABLE
乐享页面评论管理。当用户需要查看文档评论时使用。触发词:评论、comment、查看评论、文档评论
乐享外部数据导入。支持腾讯会议记录导入到知识库。当用户需要从外部系统导入数据到知识库时使用。触发词:腾讯会议、会议记录、导入、外部数据
Git 风格的知识库本地工作流。支持克隆知识库到本地目录,用 git-like 命令管理版本(add/commit/push/pull/diff/log/reset/revert),以及多 worktree 管理。触发词:克隆、clone、push、pull、同步、推送、拉取、版本、提交、commit、worktree、工作区
| name | lx-space |
| version | 1.1.0 |
| description | 乐享知识库与团队管理。当用户需要查看、管理知识库(空间)或团队信息时使用。触发词:知识库、空间、团队、我的知识库、space、team |
| metadata | {"requires":{"bins":["lx"]}} |
前置条件: 需要
lxCLI 已配置并登录。
进入场景:
lx space mine禁止在本 skill 中执行:
识别场景 →
├── "我的知识库"/"帮我打开我的知识库"? → lx space mine(一等公民,最优先)
├── 不知道在哪个团队? → lx team list-teams 或 lx team list-frequent-teams
├── 知道团队,找知识库? → lx space list-spaces --team-id <ID>
├── 知道知识库 ID? → lx space describe-space --space-id <ID>
├── 快速定位最近用的知识库? → lx space list-recently-spaces
└── 需要获取知识库根节点(后续操作条目)? → lx space describe-space → 取 root_entry_id
"我的知识库"是一等公民工具:
lx space mine,这是最快的路径space_id 和 root_entry_idis_creating: true,说明知识库正在异步创建,需要用 task_id 轮询获取 root_entry_id 是关键:
lx space describe-space 拿到 root_entry_id默认优先路径:
lx space minelx space list-recently-spaces,不要走 team → space 全链路root_entry_id,再切换到 lx-entry skill层级关系:
| 命令 | 说明 | 参考 |
|---|---|---|
lx space mine | 🌟 获取我的知识库(自动创建) | space-team.md |
lx team list-teams | 列出用户可访问的所有团队 | space-team.md |
lx team list-frequent-teams | 获取常用团队(按频率排序) | space-team.md |
lx team describe-team | 获取团队详情 | space-team.md |
lx space list-spaces | 列出团队下的知识库 | space-team.md |
lx space describe-space | 获取知识库详情(含 root_entry_id) | space-team.md |
lx space list-recently-spaces | 获取最近访问的知识库 | space-team.md |
lx space mine,不需要先查团队或列表。lx space describe-space 拿到 root_entry_id。lx space list-recently-spaces,不要走 team → space 全链路。{domain}/t/{team_id}/spaces{domain}/spaces/{space_id}# 一键获取个人知识库(自动创建)
lx space mine
# 返回 space_id 和 root_entry_id,可直接后续操作
lx entry list-children --parent-id root_entry_xxx
# 获取团队列表,让用户选择目标团队
lx team list-teams
# 获取该团队下的知识库列表
lx space list-spaces --team-id team_xxx
# 获取知识库 root_entry_id
lx space describe-space --space-id sp_xxx
# 遍历文档目录树(→ lx-entry skill)
lx entry list-children --parent-id root_entry_xxx
# 获取最近访问的知识库
lx space list-recently-spaces
# 获取详情和 root_entry_id
lx space describe-space --space-id sp_xxx