refactor: 将 skill 文档移动到项目根目录

- 将 skill/SKILL.md 移动至根目录 SKILL.md
- 更新 build.py 中的路径配置
- 更新 openspec/config.yaml 中的文档位置说明
This commit is contained in:
2026-03-09 10:05:40 +08:00
parent 58093e0877
commit b2fb418a06
3 changed files with 3 additions and 3 deletions

View File

@@ -98,7 +98,7 @@ def main() -> None:
# 路径配置
project_root = os.path.dirname(os.path.abspath(__file__))
skill_md_path = os.path.join(project_root, "skill", "SKILL.md")
skill_md_path = os.path.join(project_root, "SKILL.md")
scripts_source_dir = os.path.join(project_root, "scripts")
build_dir = os.path.join(project_root, "build")
scripts_target_dir = os.path.join(build_dir, "scripts")