chore: repos - link skill seekers source

This commit is contained in:
tukuaiai
2026-04-29 00:33:54 +08:00
parent 133da9779a
commit dc4fd72b5c
145 changed files with 62 additions and 40362 deletions
+22 -3
View File
@@ -10,7 +10,26 @@ assets/repos/
├── README.md # 外部工具索引
├── .tmux/ # submoduleoh-my-tmux 配置
├── tmux/ # submoduletmux 源码
── claude-official-skills/ # submoduleClaude 官方 skills 仓库(Anthropic
── claude-official-skills/ # submoduleClaude 官方 skills 仓库(Anthropic
├── Skill_Seekers-development/ # submoduleSkill Seekers 工具来源
├── prompts-library/ # 普通目录:提示词转换工具
├── chat-vault/ # 普通目录:AI 聊天记录保存工具
├── html-tools-main/ # 普通目录:HTML 工具集
├── my-nvim/ # 普通目录:Neovim 配置
├── MCPlayerTransfer/ # 普通目录:MC 玩家迁移工具
├── XHS-image-to-PDF-conversion/ # 普通目录:图片合并 PDF 工具
└── backups/ # 普通目录:历史备份脚本快照
```
## 当前软链接显示
```text
assets/skills/claude-official-skills -> ../repos/claude-official-skills
assets/skills/tmux-autopilot/assets/oh-my-tmux -> ../../../repos/.tmux
assets/skills/tmux-autopilot/assets/tmux-src -> ../../../repos/tmux
assets/skills/auto-skill/scripts/Skill_Seekers-development -> ../../../repos/Skill_Seekers-development
assets/skills/auto-skill/scripts/skill-seekers-configs -> Skill_Seekers-development/configs
assets/skills/auto-skill/scripts/skill-seekers-src -> Skill_Seekers-development/src
```
## 操作规范
@@ -19,7 +38,7 @@ assets/repos/
- 新增外部依赖(优先 Git submodule,确保可复现)
- 更新 submodule 指针(明确记录上游来源与用途)
- 用相对软链接把 submodule 暴露到其它资产目录,软链接目标必须仍在仓库内
- 用相对软链接把 `assets/repos/` 下的事实来源暴露到其它资产目录,软链接目标必须仍在仓库内
- 为已复制进主仓库的外部源码建立清退计划:上游 URL、保留理由、迁移方式、验证命令
### 禁止 / 不推荐
@@ -31,7 +50,7 @@ assets/repos/
## 仓库表达决策
1. **完整外部仓库**:使用 `git submodule`,主仓库只记录 commit 指针。
1. **完整外部仓库**优先使用 `git submodule`,主仓库只记录 commit 指针。
2. **同仓多入口展示**:使用相对软链接,例如 `assets/skills/<name> -> ../repos/<name>`
3. **项目内小工具**:只有在无上游、体量小、与本项目强耦合时才直接追踪源码。
4. **生成输出**:默认不跟踪;若必须保留样例,只提交最小样例和生成说明。