🔄 卡若AI 同步 2026-07-19 10:29 | 更新:多目录更新 | 排除 >1MB: 515 个
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -583,6 +583,7 @@ Cursor持久对话_MCP_v1.6.34_20260531/图文教程/作图/Cursor持久对话-0
|
||||
运营中枢/scripts/aiye_im_bridge/.venv/lib/python3.14/site-packages/pydantic_core/_pydantic_core.cpython-314-darwin.so
|
||||
运营中枢/scripts/karuo_ai_gateway/.venv/lib/python3.14/site-packages/pydantic_core/_pydantic_core.cpython-314-darwin.so
|
||||
运营中枢/企业信息/厦门卡卡猫投资有限公司/合同资产/合同草稿专用样章.png
|
||||
运营中枢/企业信息/厦门卡卡猫投资有限公司/合同资产/合同草稿专用样章_v2.png
|
||||
运营中枢/使用手册/images/人设架构图.png
|
||||
运营中枢/使用手册/images/卡若AI_对话运转执行流程图.png
|
||||
运营中枢/使用手册/images/卡若AI核心功能介绍流程图.png
|
||||
@@ -1100,6 +1101,7 @@ Cursor持久对话_MCP_v1.6.34_20260531/图文教程/作图/Cursor持久对话-0
|
||||
运营中枢/scripts/aiye_im_bridge/.venv/lib/python3.14/site-packages/pydantic_core/_pydantic_core.cpython-314-darwin.so
|
||||
运营中枢/scripts/karuo_ai_gateway/.venv/lib/python3.14/site-packages/pydantic_core/_pydantic_core.cpython-314-darwin.so
|
||||
运营中枢/企业信息/厦门卡卡猫投资有限公司/合同资产/合同草稿专用样章.png
|
||||
运营中枢/企业信息/厦门卡卡猫投资有限公司/合同资产/合同草稿专用样章_v2.png
|
||||
运营中枢/使用手册/images/人设架构图.png
|
||||
运营中枢/使用手册/images/卡若AI_对话运转执行流程图.png
|
||||
运营中枢/使用手册/images/卡若AI核心功能介绍流程图.png
|
||||
@@ -1639,6 +1641,7 @@ Cursor持久对话_MCP_v1.6.34_20260531/图文教程/作图/Cursor持久对话-0
|
||||
运营中枢/scripts/aiye_im_bridge/.venv/lib/python3.14/site-packages/pydantic_core/_pydantic_core.cpython-314-darwin.so
|
||||
运营中枢/scripts/karuo_ai_gateway/.venv/lib/python3.14/site-packages/pydantic_core/_pydantic_core.cpython-314-darwin.so
|
||||
运营中枢/企业信息/厦门卡卡猫投资有限公司/合同资产/合同草稿专用样章.png
|
||||
运营中枢/企业信息/厦门卡卡猫投资有限公司/合同资产/合同草稿专用样章_v2.png
|
||||
运营中枢/使用手册/images/人设架构图.png
|
||||
运营中枢/使用手册/images/卡若AI_对话运转执行流程图.png
|
||||
运营中枢/使用手册/images/卡若AI核心功能介绍流程图.png
|
||||
|
||||
@@ -65,20 +65,33 @@ def label(p):
|
||||
return '根目录文档'
|
||||
return None
|
||||
|
||||
def describe(path):
|
||||
p = path.strip()
|
||||
name = Path(p).name
|
||||
if p == '.gitignore': return '更新大文件排除规则'
|
||||
if p.endswith('gitea_push.conf'): return 'Gitea局域网地址改为192.168.110.101'
|
||||
if p.endswith('自动同步.sh'): return '同步前检查、去重、本地主版本与受保护推送'
|
||||
if p.endswith('gitea_push_smart.sh'): return '局域网优先推送与本地主版本策略'
|
||||
if p.endswith('sync_wiki_to_gitea.sh'): return '百科同步地址切换到公司NAS'
|
||||
if p.endswith('SKILL.md'): return f'{p.rsplit("/",1)[0]} Skill规则更新'
|
||||
if p.endswith('agents/openai.yaml'): return '智能体配置更新'
|
||||
if '审核前检查清单' in p: return '新增审核前检查清单'
|
||||
if '审核经验库' in p: return '补充审核经验'
|
||||
if p == 'SKILL_REGISTRY.md': return '更新Skill登记索引'
|
||||
return f'更新{name}'
|
||||
|
||||
def main():
|
||||
raw = sys.stdin.buffer.read().decode('utf-8', errors='ignore').strip()
|
||||
lines = [s.strip() for s in raw.splitlines() if s.strip()]
|
||||
seen = []
|
||||
for p in lines:
|
||||
l = label(p)
|
||||
if l and l not in seen:
|
||||
seen.append(l)
|
||||
out = '、'.join(seen[:10])
|
||||
if len(seen) > 10:
|
||||
out += '等'
|
||||
if not out:
|
||||
out = '多目录更新'
|
||||
entries=[]
|
||||
for line in lines:
|
||||
parts=line.split('\t',1)
|
||||
path=parts[-1]
|
||||
item=describe(path)
|
||||
if item not in entries: entries.append(item)
|
||||
if not entries: print('无文件变更'); return
|
||||
out=';'.join(entries[:12])
|
||||
if len(entries)>12: out += f';其余{len(entries)-12}项见提交文件清单'
|
||||
print(out)
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
if __name__ == '__main__': main()
|
||||
|
||||
@@ -45,6 +45,7 @@
|
||||
| Cursor崩溃/code5/窗口崩溃 | `01_卡资(金)/金仓_存储备份/Cursor稳定性/SKILL.md` |
|
||||
| 系统状态/杀进程 | `01_卡资(金)/金仓_存储备份/系统监控/SKILL.md` |
|
||||
| MCP/连接MCP | `02_卡人(水)/水桥_平台对接/MCP管理/SKILL.md` |
|
||||
| **微信小程序审核/上传小程序/审核不通过/重新提审/审核模式** | W09a `02_卡人(水)/水桥_平台对接/小程序审核闭环/SKILL.md` |
|
||||
| **创建智能体/智能体开发/Codex智能体/多Agent/Agent开发/项目AI** | `运营中枢/工作台/Codex智能体开发入口.md` |
|
||||
| **Firecrawl/爬取/爬虫/抓取/网页采集/整站采集/网页转Markdown** | `02_卡人(水)/水桥_平台对接/Firecrawl网页采集/SKILL.md` |
|
||||
| **持续执行/永久执行/接着做/直到完成** | `04_卡火(火)/火炬_全栈消息/持续执行闭环/SKILL.md` |
|
||||
|
||||
@@ -513,3 +513,4 @@
|
||||
| 2026-04-02 18:23:25 | 🔄 卡若AI 同步 2026-04-02 18:23 | 更新:金仓Gitea脚本与配置、金仓、水溪整理归档、卡木、运营中枢工作台 | 排除 >20MB: 14 个 |
|
||||
| 2026-04-02 18:58:04 | 🔄 卡若AI 同步 2026-04-02 18:57 | 更新:金仓Gitea脚本与配置、金仓、水桥平台对接、运营中枢工作台 | 排除 >20MB: 14 个 |
|
||||
| 2026-04-02 19:01:21 | 🔄 卡若AI 同步 2026-04-02 19:01 | 更新:Cursor规则、金仓、水桥平台对接、总索引与入口、运营中枢参考资料、运营中枢工作台 | 排除 >20MB: 14 个 |
|
||||
| 2026-07-19 09:53:08 | 🔄 卡若AI 同步 2026-07-19 09:52 | 更新:总索引与入口、金仓Gitea脚本与配置、水桥平台对接、运营中枢 | 排除 >1MB: 514 个 |
|
||||
|
||||
@@ -517,3 +517,4 @@
|
||||
| 2026-04-02 18:23:25 | 成功 | 成功 | 🔄 卡若AI 同步 2026-04-02 18:23 | 更新:金仓Gitea脚本与配置、金仓、水溪整理归档、卡木、运营中枢工作台 | 排除 >20MB: 14 个 | [仓库](http://192.168.1.201:3000/fnvtk/karuo-ai) [百科](http://192.168.1.201:3000/fnvtk/karuo-ai/wiki) |
|
||||
| 2026-04-02 18:58:04 | 成功 | 成功 | 🔄 卡若AI 同步 2026-04-02 18:57 | 更新:金仓Gitea脚本与配置、金仓、水桥平台对接、运营中枢工作台 | 排除 >20MB: 14 个 | [仓库](http://192.168.1.201:3000/fnvtk/karuo-ai) [百科](http://192.168.1.201:3000/fnvtk/karuo-ai/wiki) |
|
||||
| 2026-04-02 19:01:21 | 成功 | 成功 | 🔄 卡若AI 同步 2026-04-02 19:01 | 更新:Cursor规则、金仓、水桥平台对接、总索引与入口、运营中枢参考资料、运营中枢工作台 | 排除 >20MB: 14 个 | [仓库](http://192.168.1.201:3000/fnvtk/karuo-ai) [百科](http://192.168.1.201:3000/fnvtk/karuo-ai/wiki) |
|
||||
| 2026-07-19 09:53:08 | 成功 | 成功 | 🔄 卡若AI 同步 2026-07-19 09:52 | 更新:总索引与入口、金仓Gitea脚本与配置、水桥平台对接、运营中枢 | 排除 >1MB: 514 个 | [仓库](http://192.168.110.101:3000/fnvtk/karuo-ai) [百科](http://192.168.110.101:3000/fnvtk/karuo-ai/wiki) |
|
||||
|
||||
Reference in New Issue
Block a user