Initial commit: workspace files including MEMORY.md, skills, and core configs

This commit is contained in:
2026-04-03 19:13:29 +08:00
commit 73ed53d531
33 changed files with 2443 additions and 0 deletions

41
.gitignore vendored Normal file
View File

@@ -0,0 +1,41 @@
# 忽略一切
*
# 但下面这些例外
!MEMORY.md
!IDENTITY.md
!USER.md
!SOUL.md
!AGENTS.md
!TOOLS.md
!HEARTBEAT.md
!BOOTSTRAP.md
# 核心记忆
!memory/
# 排除 memory 内的非 md 文件
memory/**
!memory/*.md
!memory/*.json
# 业务技能
!skills/
!skills/**
skills/**/*.tar.gz
# 脚本
!scripts/
# 排除 pycache
scripts/**/__pycache__/
scripts/**/__pycache__
# 共享资源
!shared/
# 排除上传的临时文件
shared/upload/*
shared/upload/**
# 保留共享目录本身(空目录无法提交,可选)
# 如需保留,上传目录可放一个 .gitkeep
# .gitignore 自身要提交(否则下次可能被忽略)
!.gitignore