refactor: rename source dir to bin, reorganize templates, remove personal info

- Rename myclaude/ source directory → bin/
- Update all Python imports (myclaude.* → bin.*) and mock patch paths
- Update pyproject.toml: entry point and packages config
- Move workspace_template/ → templates/workspace/ for future extensibility
- Migrate .claude/skills/ to global ~/.claude/skills/ and remove local copies
- Remove SessionStart hook (sync-global.sh) from settings.local.json
- Remove unrelated script rename_funcs_to_snake.py
- Remove personal info (name, org, paths) from CLAUDE.md, README.md, settings
- Update .gitignore with standard Python/runtime exclusions
- Clean .DS_Store, __pycache__, .mypy_cache, .pytest_cache, .ruff_cache,
  .playwright-mcp runtime files
This commit is contained in:
Zhengshou Lai
2026-04-26 09:37:13 +08:00
parent 432b700265
commit ab597d1d02
42 changed files with 80 additions and 6524 deletions
+8 -7
View File
@@ -6,11 +6,11 @@
## 1. 用户画像
- **姓名**: 赖正首
- **称呼**: 老大
- **身份**: 中山大学土木工程学院副教授
- **专精领域**: Python, AI/ML, 系统架构, 计算力学
- **经验水平**: 高级
- **姓名**: (请填写)
- **称呼**: (请填写)
- **身份**: (请填写)
- **专精领域**: (请填写)
- **经验水平**: (初级 / 中级 / 高级
### 沟通偏好
- **风格**: 简洁直接,不说废话
@@ -42,11 +42,12 @@
```
myclaude/
├── myclaude/ # Python 源码
├── bin/ # Python 源码
│ ├── cli.py # CLI entrypoint
│ ├── commands/ # 子命令
│ └── ...
├── workspace_template/ # workspace 模板 (CLAUDE.md, .gitignore)
├── templates/ # 模板目录
│ └── workspace/ # workspace 模板 (CLAUDE.md, .gitignore)
└── .claude/ # Claude Code 运行时配置
workspace/ # 主工作环境 (默认 --cwd 目标, 独立目录)