sumulige-claude 1.0.11 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,79 +1,105 @@
1
1
  # 项目任务追踪系统
2
2
 
3
- > 本目录由 AI 自动维护,记录项目开发任务和进度
3
+ > **统一管理**: 研究 → 开发 → 测试
4
+ > **最后更新**: 2026-01-15
4
5
 
5
- **最后更新**: 2026-01-15
6
+ @version: 2.0.0
6
7
 
7
- ## 任务总览
8
+ ---
9
+
10
+ ## 📊 项目进度
8
11
 
9
- | 状态 | 目录 | 数量 |
12
+ | 阶段 | 进度 | 状态 |
10
13
  |------|------|------|
11
- | 🚧 进行中 | `active/` | 1 |
12
- | 已完成 | `completed/` | 1 |
13
- | 📋 待办 | `backlog/` | 1 |
14
- | 📦 已归档 | `archived/` | 0 |
14
+ | Phase 1: MVP 智能监控 | 80% | 🚧 进行中 |
15
+ | Phase 2: V1.5 动态调整 | 0% | 📋 待规划 |
16
+ | Phase 3: V2.0 AI 教练 | 0% | 📋 待规划 |
17
+
18
+ ---
19
+
20
+ ## 🔄 任务生命周期
15
21
 
16
- @version: 1.0.0
22
+ ```
23
+ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐
24
+ │ RESEARCH │ → │ DEVELOP │ → │ TEST │
25
+ │ 📊 研究 │ │ 💻 开发 │ │ 🧪 测试 │
26
+ └─────────────┘ └─────────────┘ └─────────────┘
27
+ ```
17
28
 
18
- ## 目录结构
29
+ ---
30
+
31
+ ## 📁 目录结构
19
32
 
20
33
  ```
21
34
  development/todos/
22
35
  ├── INDEX.md # 本文件 - 任务总览
23
- ├── active/ # 进行中的任务 (1)
24
- ├── completed/ # 已完成的任务 (1)
25
- ├── backlog/ # 待规划的任务 (1)
26
- └── archived/ # 已归档的任务 (0)
36
+ ├── _templates/ # 任务模板
37
+ ├── active/ # 进行中的任务 (0)
38
+ ├── research/ # 📊 研究中 (0)
39
+ │ ├── develop/ # 💻 开发中 (0)
40
+ │ └── test/ # 🧪 测试中 (0)
41
+ ├── completed/ # 已完成的任务 (0)
42
+ │ ├── research/
43
+ │ ├── develop/
44
+ │ └── test/
45
+ ├── backlog/ # 待规划的任务 (0)
46
+ └── archived/ # 已归档的任务
27
47
  ```
28
48
 
29
- ## 快速跳转
49
+ ---
50
+
51
+ ## 🚧 当前进行中的任务
52
+
53
+ ### 📊 研究任务
54
+ 暂无
30
55
 
31
- ## 🚧 进行中的任务 (1)
56
+ ### 💻 开发任务
57
+ 暂无
32
58
 
33
- - [P1] [TODO 任务管理系统](./active/todo-system.md) - 🚧 `branch: feature/todo-system`
59
+ ### 🧪 测试任务
60
+ 暂无
61
+
62
+ ---
34
63
 
35
64
  ## ✅ 最近完成的任务
36
65
 
37
- - [Boris 最佳实践集成](./completed/boris-optimizations.md)
66
+ ### 💻 开发任务
67
+ 暂无
68
+
69
+ ### 🧪 测试任务
70
+ 暂无
38
71
 
39
- ## 📋 待办任务 (1)
72
+ ---
40
73
 
41
- - [P2] [MCP 集成增强](./backlog/mcp-integration.md)
74
+ ## 📋 待办任务
42
75
 
43
- ## 全部目录
76
+ 暂无
44
77
 
45
- - [🚧 所有进行中的任务](./active/) - 当前开发重点
46
- - [✅ 所有已完成的任务](./completed/) - 完整历史
47
- - [📋 所有待办任务](./backlog/) - 待规划
48
- - [📦 所有已归档任务](./archived/) - 历史记录
78
+ ---
49
79
 
50
- ## 使用方式
80
+ ## 🎯 使用方式
51
81
 
52
82
  ### 查看任务
53
- 点击上方链接跳转到对应目录,或使用:
54
83
  ```bash
55
- # 查看进行中的任务
56
- cat development/todos/active/*.md
57
-
58
- # 查看特定任务
59
- cat development/todos/active/feature-name.md
84
+ # 按类型查看
85
+ ls development/todos/active/research/ # 研究任务
86
+ ls development/todos/active/develop/ # 开发任务
87
+ ls development/todos/active/test/ # 测试任务
60
88
  ```
61
89
 
62
90
  ### 创建新任务
63
91
  在 Claude Code 中:
64
92
  ```
65
- 创建一个新任务:实现用户登录功能
93
+ 创建一个新任务:
94
+ - 类型:测试
95
+ - 标题:Dashboard 功能测试
66
96
  ```
67
97
 
68
- AI 会自动在 `active/` 目录创建对应的任务文件。
69
-
70
98
  ### 更新任务状态
71
99
  ```
72
100
  将 [任务名] 标记为完成
73
101
  ```
74
102
 
75
- AI 会自动将任务移动到 `completed/` 目录。
76
-
77
103
  ---
78
104
 
79
- > **维护说明**: 本系统由 AI 自动维护,请勿手动编辑(除非你知道自己在做什么)
105
+ > **维护说明**: 本系统由 AI 自动维护
@@ -0,0 +1,93 @@
1
+ # Release Guide
2
+
3
+ Automated version release with `standard-version`.
4
+
5
+ ## How It Works
6
+
7
+ `standard-version` analyzes your git commits to generate CHANGELOG entries and bump the version automatically.
8
+
9
+ ## Commit Convention
10
+
11
+ Use [Conventional Commits](https://www.conventionalcommits.org/) format:
12
+
13
+ ```
14
+ <type>: <description>
15
+
16
+ [optional body]
17
+ ```
18
+
19
+ ### Types
20
+
21
+ | Type | Section | Example |
22
+ |------|---------|---------|
23
+ | `feat` | Added | `feat: add user authentication` |
24
+ | `fix` | Fixed | `fix: resolve migration bug` |
25
+ | `docs` | Changed | `docs: update README installation steps` |
26
+ | `refactor` | Changed | `refactor: simplify config loading` |
27
+ | `perf` | Changed | `perf: optimize startup time` |
28
+ | `test` | Changed | `test: add unit tests for marketplace` |
29
+ | `chore` | Changed | `chore: update dependencies` |
30
+ | `style` | (hidden) | `style: format code` |
31
+
32
+ ## Usage
33
+
34
+ ### 1. Development
35
+
36
+ Make commits following the convention:
37
+
38
+ ```bash
39
+ git commit -m "feat: add new command"
40
+ git commit -m "fix: resolve migration issue"
41
+ git commit -m "docs: update API documentation"
42
+ ```
43
+
44
+ ### 2. Release
45
+
46
+ Run the release command:
47
+
48
+ ```bash
49
+ # Auto-detect version bump (patch/minor/major)
50
+ npm run release
51
+
52
+ # Or specify the version type
53
+ npm run release:patch # 1.0.11 → 1.0.12
54
+ npm run release:minor # 1.0.11 → 1.1.0
55
+ npm run release:major # 1.0.11 → 2.0.0
56
+ ```
57
+
58
+ This will:
59
+ 1. Analyze commits since last tag
60
+ 2. Generate CHANGELOG entry
61
+ 3. Bump version in package.json
62
+ 4. Create a git commit
63
+
64
+ ### 3. Tag & Push
65
+
66
+ ```bash
67
+ # Create and push tag (skipped by standard-version)
68
+ git tag v$(node -p "require('./package.json').version")
69
+ git push --follow-tags origin main
70
+
71
+ # Optional: publish to npm
72
+ npm publish
73
+ ```
74
+
75
+ ## Configuration
76
+
77
+ See `.versionrc` for customization.
78
+
79
+ ## Example Workflow
80
+
81
+ ```bash
82
+ # 1. Make some changes
83
+ git commit -m "feat: add dark mode support"
84
+ git commit -m "fix: resolve layout issue"
85
+
86
+ # 2. Release
87
+ npm run release
88
+
89
+ # 3. Review and push
90
+ git log -1 # Review the release commit
91
+ git tag v1.0.12 # Create tag
92
+ git push --follow-tags origin main
93
+ ```