monoco-toolkit 0.3.11__py3-none-any.whl → 0.4.0__py3-none-any.whl

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.
Files changed (132) hide show
  1. monoco/core/automation/__init__.py +40 -0
  2. monoco/core/automation/field_watcher.py +296 -0
  3. monoco/core/automation/handlers.py +805 -0
  4. monoco/core/config.py +29 -11
  5. monoco/core/daemon/__init__.py +5 -0
  6. monoco/core/daemon/pid.py +290 -0
  7. monoco/core/git.py +15 -0
  8. monoco/core/hooks/context.py +74 -13
  9. monoco/core/injection.py +86 -8
  10. monoco/core/integrations.py +0 -24
  11. monoco/core/router/__init__.py +17 -0
  12. monoco/core/router/action.py +202 -0
  13. monoco/core/scheduler/__init__.py +63 -0
  14. monoco/core/scheduler/base.py +152 -0
  15. monoco/core/scheduler/engines.py +175 -0
  16. monoco/core/scheduler/events.py +197 -0
  17. monoco/core/scheduler/local.py +377 -0
  18. monoco/core/setup.py +9 -0
  19. monoco/core/sync.py +199 -4
  20. monoco/core/watcher/__init__.py +63 -0
  21. monoco/core/watcher/base.py +382 -0
  22. monoco/core/watcher/dropzone.py +152 -0
  23. monoco/core/watcher/im.py +460 -0
  24. monoco/core/watcher/issue.py +303 -0
  25. monoco/core/watcher/memo.py +192 -0
  26. monoco/core/watcher/task.py +238 -0
  27. monoco/daemon/app.py +3 -60
  28. monoco/daemon/commands.py +459 -25
  29. monoco/daemon/events.py +34 -0
  30. monoco/daemon/scheduler.py +157 -201
  31. monoco/daemon/services.py +42 -243
  32. monoco/features/agent/__init__.py +25 -7
  33. monoco/features/agent/cli.py +91 -57
  34. monoco/features/agent/engines.py +31 -170
  35. monoco/features/agent/resources/en/AGENTS.md +14 -14
  36. monoco/features/agent/resources/en/skills/monoco_role_engineer/SKILL.md +101 -0
  37. monoco/features/agent/resources/en/skills/monoco_role_manager/SKILL.md +95 -0
  38. monoco/features/agent/resources/en/skills/monoco_role_planner/SKILL.md +177 -0
  39. monoco/features/agent/resources/en/skills/monoco_role_reviewer/SKILL.md +139 -0
  40. monoco/features/agent/resources/zh/skills/monoco_role_engineer/SKILL.md +101 -0
  41. monoco/features/agent/resources/zh/skills/monoco_role_manager/SKILL.md +95 -0
  42. monoco/features/agent/resources/zh/skills/monoco_role_planner/SKILL.md +177 -0
  43. monoco/features/agent/resources/zh/skills/monoco_role_reviewer/SKILL.md +139 -0
  44. monoco/features/agent/worker.py +1 -1
  45. monoco/features/hooks/__init__.py +61 -6
  46. monoco/features/hooks/commands.py +281 -271
  47. monoco/features/hooks/dispatchers/__init__.py +23 -0
  48. monoco/features/hooks/dispatchers/agent_dispatcher.py +486 -0
  49. monoco/features/hooks/dispatchers/git_dispatcher.py +478 -0
  50. monoco/features/hooks/manager.py +357 -0
  51. monoco/features/hooks/models.py +262 -0
  52. monoco/features/hooks/parser.py +322 -0
  53. monoco/features/hooks/universal_interceptor.py +503 -0
  54. monoco/features/im/__init__.py +67 -0
  55. monoco/features/im/core.py +782 -0
  56. monoco/features/im/models.py +311 -0
  57. monoco/features/issue/commands.py +133 -60
  58. monoco/features/issue/core.py +385 -40
  59. monoco/features/issue/domain_commands.py +0 -19
  60. monoco/features/issue/resources/en/AGENTS.md +17 -122
  61. monoco/features/issue/resources/hooks/agent/before-tool.sh +102 -0
  62. monoco/features/issue/resources/hooks/agent/session-start.sh +88 -0
  63. monoco/features/issue/resources/hooks/{post-checkout.sh → git/git-post-checkout.sh} +10 -9
  64. monoco/features/issue/resources/hooks/git/git-pre-commit.sh +31 -0
  65. monoco/features/issue/resources/hooks/{pre-push.sh → git/git-pre-push.sh} +7 -13
  66. monoco/features/issue/resources/zh/AGENTS.md +18 -123
  67. monoco/features/memo/cli.py +15 -64
  68. monoco/features/memo/core.py +6 -34
  69. monoco/features/memo/models.py +24 -15
  70. monoco/features/memo/resources/en/AGENTS.md +31 -0
  71. monoco/features/memo/resources/zh/AGENTS.md +28 -5
  72. monoco/features/spike/commands.py +5 -3
  73. monoco/main.py +5 -3
  74. {monoco_toolkit-0.3.11.dist-info → monoco_toolkit-0.4.0.dist-info}/METADATA +1 -1
  75. monoco_toolkit-0.4.0.dist-info/RECORD +170 -0
  76. monoco/core/execution.py +0 -67
  77. monoco/features/agent/apoptosis.py +0 -44
  78. monoco/features/agent/manager.py +0 -127
  79. monoco/features/agent/resources/atoms/atom-code-dev.yaml +0 -61
  80. monoco/features/agent/resources/atoms/atom-issue-lifecycle.yaml +0 -73
  81. monoco/features/agent/resources/atoms/atom-knowledge.yaml +0 -55
  82. monoco/features/agent/resources/atoms/atom-review.yaml +0 -60
  83. monoco/features/agent/resources/en/skills/monoco_atom_core/SKILL.md +0 -99
  84. monoco/features/agent/resources/en/skills/monoco_workflow_agent_engineer/SKILL.md +0 -94
  85. monoco/features/agent/resources/en/skills/monoco_workflow_agent_manager/SKILL.md +0 -93
  86. monoco/features/agent/resources/en/skills/monoco_workflow_agent_planner/SKILL.md +0 -85
  87. monoco/features/agent/resources/en/skills/monoco_workflow_agent_reviewer/SKILL.md +0 -114
  88. monoco/features/agent/resources/workflows/workflow-dev.yaml +0 -83
  89. monoco/features/agent/resources/workflows/workflow-issue-create.yaml +0 -72
  90. monoco/features/agent/resources/workflows/workflow-review.yaml +0 -94
  91. monoco/features/agent/resources/zh/roles/monoco_role_engineer.yaml +0 -49
  92. monoco/features/agent/resources/zh/roles/monoco_role_manager.yaml +0 -46
  93. monoco/features/agent/resources/zh/roles/monoco_role_planner.yaml +0 -46
  94. monoco/features/agent/resources/zh/roles/monoco_role_reviewer.yaml +0 -47
  95. monoco/features/agent/resources/zh/skills/monoco_atom_core/SKILL.md +0 -99
  96. monoco/features/agent/resources/zh/skills/monoco_workflow_agent_engineer/SKILL.md +0 -94
  97. monoco/features/agent/resources/zh/skills/monoco_workflow_agent_manager/SKILL.md +0 -88
  98. monoco/features/agent/resources/zh/skills/monoco_workflow_agent_planner/SKILL.md +0 -259
  99. monoco/features/agent/resources/zh/skills/monoco_workflow_agent_reviewer/SKILL.md +0 -137
  100. monoco/features/agent/session.py +0 -169
  101. monoco/features/artifact/resources/zh/skills/monoco_atom_artifact/SKILL.md +0 -278
  102. monoco/features/glossary/resources/en/skills/monoco_atom_glossary/SKILL.md +0 -35
  103. monoco/features/glossary/resources/zh/skills/monoco_atom_glossary/SKILL.md +0 -35
  104. monoco/features/hooks/adapter.py +0 -67
  105. monoco/features/hooks/core.py +0 -441
  106. monoco/features/i18n/resources/en/skills/monoco_atom_i18n/SKILL.md +0 -96
  107. monoco/features/i18n/resources/en/skills/monoco_workflow_i18n_scan/SKILL.md +0 -105
  108. monoco/features/i18n/resources/zh/skills/monoco_atom_i18n/SKILL.md +0 -96
  109. monoco/features/i18n/resources/zh/skills/monoco_workflow_i18n_scan/SKILL.md +0 -105
  110. monoco/features/issue/resources/en/skills/monoco_atom_issue/SKILL.md +0 -165
  111. monoco/features/issue/resources/en/skills/monoco_workflow_issue_creation/SKILL.md +0 -167
  112. monoco/features/issue/resources/en/skills/monoco_workflow_issue_development/SKILL.md +0 -224
  113. monoco/features/issue/resources/en/skills/monoco_workflow_issue_management/SKILL.md +0 -159
  114. monoco/features/issue/resources/en/skills/monoco_workflow_issue_refinement/SKILL.md +0 -203
  115. monoco/features/issue/resources/hooks/pre-commit.sh +0 -41
  116. monoco/features/issue/resources/zh/skills/monoco_atom_issue_lifecycle/SKILL.md +0 -190
  117. monoco/features/issue/resources/zh/skills/monoco_workflow_issue_creation/SKILL.md +0 -167
  118. monoco/features/issue/resources/zh/skills/monoco_workflow_issue_development/SKILL.md +0 -224
  119. monoco/features/issue/resources/zh/skills/monoco_workflow_issue_management/SKILL.md +0 -159
  120. monoco/features/issue/resources/zh/skills/monoco_workflow_issue_refinement/SKILL.md +0 -203
  121. monoco/features/memo/resources/en/skills/monoco_atom_memo/SKILL.md +0 -77
  122. monoco/features/memo/resources/en/skills/monoco_workflow_note_processing/SKILL.md +0 -140
  123. monoco/features/memo/resources/zh/skills/monoco_atom_memo/SKILL.md +0 -77
  124. monoco/features/memo/resources/zh/skills/monoco_workflow_note_processing/SKILL.md +0 -140
  125. monoco/features/spike/resources/en/skills/monoco_atom_spike/SKILL.md +0 -76
  126. monoco/features/spike/resources/en/skills/monoco_workflow_research/SKILL.md +0 -121
  127. monoco/features/spike/resources/zh/skills/monoco_atom_spike/SKILL.md +0 -76
  128. monoco/features/spike/resources/zh/skills/monoco_workflow_research/SKILL.md +0 -121
  129. monoco_toolkit-0.3.11.dist-info/RECORD +0 -181
  130. {monoco_toolkit-0.3.11.dist-info → monoco_toolkit-0.4.0.dist-info}/WHEEL +0 -0
  131. {monoco_toolkit-0.3.11.dist-info → monoco_toolkit-0.4.0.dist-info}/entry_points.txt +0 -0
  132. {monoco_toolkit-0.3.11.dist-info → monoco_toolkit-0.4.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,93 +0,0 @@
1
- ---
2
- name: monoco_workflow_agent_manager
3
- description: Standardized workflow for the Manager role (Flow Skill). Defines the standard operating procedure from inbox organization to task assignment, ensuring clear requirements and reasonable task breakdown.
4
- type: workflow
5
- role: manager
6
- version: 1.0.0
7
- ---
8
-
9
- # Manager Flow
10
-
11
- Standardized workflow for the Manager role, focusing on inbox organization, requirement refinement, and task assignment.
12
-
13
- ## Workflow State Machine
14
-
15
- ```mermaid
16
- stateDiagram-v2
17
- [*] --> Inbox: New Input
18
-
19
- Inbox --> Triage: Review
20
-
21
- Triage --> Refine: Needs Clarification
22
- Triage --> Assign: Ready
23
- Triage --> Archive: Not Actionable
24
-
25
- Refine --> Assign: Refined
26
- Refine --> Refine: Still Unclear
27
-
28
- Assign --> [*]: Task Assigned
29
- Archive --> [*]: Discarded
30
- ```
31
-
32
- ## Execution Steps
33
-
34
- ### 1. Inbox (收件箱)
35
-
36
- - **Goal**: Collect all new inputs (Memos, external requests, ideas)
37
- - **Input**: Raw notes, meeting minutes, user feedback
38
- - **Checkpoints**:
39
- - [ ] Run `monoco memo list` to check pending memos
40
- - [ ] Review external issue trackers (if any)
41
- - [ ] Collect stakeholder requests
42
-
43
- ### 2. Triage (分类)
44
-
45
- - **Goal**: Quick classification of inbox items
46
- - **Checkpoints**:
47
- - [ ] Is this actionable?
48
- - [ ] Is this a bug, feature, chore, or epic?
49
- - [ ] Does it need immediate attention?
50
- - [ ] Is there enough context to proceed?
51
-
52
- ### 3. Refine (细化)
53
-
54
- - **Goal**: Transform vague ideas into actionable requirements
55
- - **Checkpoints**:
56
- - [ ] Clarify the "Why" (business value)
57
- - [ ] Define the "What" (acceptance criteria)
58
- - [ ] Identify dependencies and blockers
59
- - [ ] Estimate effort (rough sizing)
60
-
61
- ### 4. Assign (指派)
62
-
63
- - **Goal**: Create proper Issues and assign to team members
64
- - **Checkpoints**:
65
- - [ ] Create Issue using `monoco issue create <type> -t "Title"`
66
- - [ ] Link related Memos or Issues
67
- - [ ] Set appropriate priority and labels
68
- - [ ] Assign to team member (or leave unassigned for pickup)
69
-
70
- ### 5. Archive (归档)
71
-
72
- - **Goal**: Clean up non-actionable items
73
- - **Checkpoints**:
74
- - [ ] Document why it's not actionable
75
- - [ ] Move to appropriate archive location
76
- - [ ] Update stakeholders if needed
77
-
78
- ## Decision Matrix
79
-
80
- | Input Type | Action | Next Step |
81
- |------------|--------|-----------|
82
- | Clear bug report | Create Fix Issue | Assign |
83
- | Vague feature idea | Needs refinement | Refine |
84
- | Technical debt | Create Chore Issue | Assign |
85
- | Strategic initiative | Create Epic | Refine |
86
- | Pure reference material | Archive | Archive |
87
-
88
- ## Best Practices
89
-
90
- 1. **Inbox Zero**: Process inbox regularly, don't let items accumulate
91
- 2. **Clear Acceptance Criteria**: Every Issue must have verifiable acceptance criteria
92
- 3. **Right Sizing**: Break down large tasks into manageable Issues
93
- 4. **Context Preservation**: Always link back to original memos or requests
@@ -1,85 +0,0 @@
1
- ---
2
- name: monoco_workflow_agent_planner
3
- description: Standardized workflow for the Planner role (Flow Skill). Responsible for analysis, design, planning, and handoff.
4
- type: workflow
5
- role: planner
6
- version: 1.0.0
7
- ---
8
-
9
- # Planner Flow
10
-
11
- Standardized workflow for the Planner role, focusing on technical analysis, architecture design, and implementation planning.
12
-
13
- ## Workflow State Machine
14
-
15
- ```mermaid
16
- stateDiagram-v2
17
- [*] --> Analyze: Receive Requirements
18
-
19
- Analyze --> Design: Requirements Understood
20
- Analyze --> Analyze: Needs More Info
21
-
22
- Design --> Plan: Design Approved
23
- Design --> Design: Design Rejected
24
-
25
- Plan --> Handoff: Plan Complete
26
-
27
- Handoff --> [*]: Ready for Implementation
28
- ```
29
-
30
- ## Execution Steps
31
-
32
- ### 1. Analyze (分析)
33
-
34
- - **Goal**: Deep understanding of requirements and constraints
35
- - **Input**: Feature/Chore Issue, stakeholder requirements
36
- - **Output**: Analysis document, technical constraints list
37
- - **Checkpoints**:
38
- - [ ] Read and understand requirements thoroughly
39
- - [ ] Identify technical constraints (performance, security, compatibility)
40
- - [ ] Research existing solutions and patterns
41
- - [ ] Document assumptions and risks
42
-
43
- ### 2. Design (设计)
44
-
45
- - **Goal**: Create technical design and architecture
46
- - **Checkpoints**:
47
- - [ ] Define system architecture and components
48
- - [ ] Design data models and interfaces
49
- - [ ] Consider scalability and maintainability
50
- - [ ] Document design decisions (ADR)
51
-
52
- ### 3. Plan (规划)
53
-
54
- - **Goal**: Break down design into implementable tasks
55
- - **Checkpoints**:
56
- - [ ] Create sub-tasks or child Issues
57
- - [ ] Define dependencies between tasks
58
- - [ ] Estimate effort for each task
59
- - [ ] Identify required skills and resources
60
-
61
- ### 4. Handoff (交接)
62
-
63
- - **Goal**: Prepare comprehensive handoff to Engineering
64
- - **Checkpoints**:
65
- - [ ] Document implementation guidelines
66
- - [ ] Create technical specification (if needed)
67
- - [ ] Update parent Issue with plan summary
68
- - [ ] Link all child Issues to parent
69
-
70
- ## Output Artifacts
71
-
72
- | Artifact | Purpose | Location |
73
- |----------|---------|----------|
74
- | Analysis Notes | Document findings and constraints | Issue comments or linked doc |
75
- | Architecture Diagram | Visual representation of design | `docs/architecture/` or Issue |
76
- | ADR | Record design decisions | `docs/adr/` |
77
- | Task Breakdown | List of implementable sub-tasks | Child Issues |
78
- | Technical Spec | Detailed implementation guide | Issue description or linked doc |
79
-
80
- ## Best Practices
81
-
82
- 1. **Design for Change**: Anticipate future changes in your design
83
- 2. **Prototype When Uncertain**: Build quick prototypes to validate approaches
84
- 3. **Review Early**: Get feedback on designs before full planning
85
- 4. **Document Trade-offs**: Always document why certain decisions were made
@@ -1,114 +0,0 @@
1
- ---
2
- name: monoco_workflow_agent_reviewer
3
- description: Standardized workflow for the Reviewer role (Flow Skill). Defines the standard operating procedure from code checkout to adversarial testing to review completion, ensuring code quality and process compliance.
4
- type: workflow
5
- role: reviewer
6
- version: 1.0.0
7
- ---
8
-
9
- # Reviewer Flow
10
-
11
- Standardized workflow for the Reviewer role, ensuring thorough code review and quality assurance.
12
-
13
- ## Workflow State Machine
14
-
15
- ```mermaid
16
- stateDiagram-v2
17
- [*] --> Checkout: Start Review
18
-
19
- Checkout --> Review: Code Ready
20
-
21
- Review --> Test: Code Review Passed
22
- Review --> Review: Issues Found<br/>(Request Changes)
23
-
24
- Test --> Approve: Tests Pass
25
- Test --> Test: Issues Found<br/>(Report Bugs)
26
-
27
- Approve --> [*]: Review Complete
28
- ```
29
-
30
- ## Execution Steps
31
-
32
- ### 1. Checkout (检出)
33
-
34
- - **Goal**: Set up review environment
35
- - **Checkpoints**:
36
- - [ ] Checkout the PR branch
37
- - [ ] Review Issue description and acceptance criteria
38
- - [ ] Check related files and context
39
- - [ ] Run `monoco issue lint` to verify compliance
40
-
41
- ### 2. Review (审查)
42
-
43
- - **Goal**: Thorough code review
44
- - **Checkpoints**:
45
- - [ ] Review code against acceptance criteria
46
- - [ ] Check code style and conventions
47
- - [ ] Verify error handling and edge cases
48
- - [ ] Review test coverage and quality
49
- - [ ] Check documentation updates
50
-
51
- ### 3. Test (测试)
52
-
53
- - **Goal**: Adversarial testing and verification
54
- - **Checkpoints**:
55
- - [ ] Run full test suite
56
- - [ ] Perform manual testing if needed
57
- - [ ] Test edge cases and error scenarios
58
- - [ ] Verify integration points
59
-
60
- ### 4. Approve (批准)
61
-
62
- - **Goal**: Complete review with decision
63
- - **Checkpoints**:
64
- - [ ] Summarize review findings
65
- - [ ] Provide constructive feedback
66
- - [ ] Update Issue status if needed
67
- - [ ] Record review comments in Issue
68
-
69
- ## Review Checklist
70
-
71
- ### Code Quality
72
- - [ ] Code follows project conventions
73
- - [ ] No obvious bugs or logic errors
74
- - [ ] Proper error handling
75
- - [ ] Adequate logging (where appropriate)
76
-
77
- ### Testing
78
- - [ ] Unit tests cover new code
79
- - [ ] Integration tests pass
80
- - [ ] Edge cases are tested
81
- - [ ] No flaky tests introduced
82
-
83
- ### Documentation
84
- - [ ] Code comments are clear and helpful
85
- - [ ] Public APIs are documented
86
- - [ ] README/docs updated if needed
87
-
88
- ### Security
89
- - [ ] No hardcoded secrets
90
- - [ ] Input validation in place
91
- - [ ] No SQL injection or XSS vulnerabilities
92
-
93
- ## Review Comments Format
94
-
95
- ```markdown
96
- ## Review Comments
97
-
98
- ### [File:Line] Issue Type: Brief Description
99
-
100
- **Severity**: [blocking|major|minor|nit]
101
-
102
- **Details**: Detailed explanation of the issue
103
-
104
- **Suggestion**: How to fix or improve
105
-
106
- ---
107
- ```
108
-
109
- ## Best Practices
110
-
111
- 1. **Be Constructive**: Focus on the code, not the person
112
- 2. **Explain Why**: Always explain the reasoning behind suggestions
113
- 3. **Prioritize**: Distinguish between blocking issues and nits
114
- 4. **Respond Promptly**: Don't let reviews sit for too long
@@ -1,83 +0,0 @@
1
- ---
2
- name: workflow-dev
3
- type: workflow
4
- description: 开发工作流编排 - 从准备环境到提交评审的完整流程
5
- version: 1.0.0
6
- author: Monoco Toolkit
7
-
8
- # 依赖的原子技能
9
- dependencies:
10
- - atom-issue-lifecycle
11
- - atom-code-dev
12
-
13
- # 工作流阶段定义
14
- stages:
15
- - name: setup
16
- atom_skill: atom-issue-lifecycle
17
- operation: start
18
- description: 准备开发环境,创建功能分支
19
- reminder: "确保使用 --branch 创建功能分支,禁止在 main/master 上开发"
20
- next_stages:
21
- success: investigate
22
- branch_conflict: setup
23
-
24
- - name: investigate
25
- atom_skill: atom-code-dev
26
- operation: investigate
27
- description: 理解需求与上下文
28
- reminder: "深入理解 Issue 需求,识别相关代码和依赖"
29
- next_stages:
30
- requirements_clear: implement
31
- requirements_fuzzy: investigate
32
-
33
- - name: implement
34
- atom_skill: atom-code-dev
35
- operation: implement
36
- description: 实现代码变更
37
- reminder: "遵循项目代码规范,小步提交,处理边界情况"
38
- next_stages:
39
- coding_complete: test
40
-
41
- - name: test
42
- atom_skill: atom-code-dev
43
- operation: test
44
- description: 运行测试确保代码质量
45
- reminder: "所有测试必须通过,检查测试覆盖率"
46
- next_stages:
47
- test_passed: report
48
- test_failed: implement
49
-
50
- - name: report
51
- atom_skill: atom-issue-lifecycle
52
- operation: sync
53
- description: 记录变更,更新文件追踪
54
- reminder: "同步文件追踪,编写变更摘要"
55
- next_stages:
56
- report_complete: submit
57
-
58
- - name: submit
59
- atom_skill: atom-issue-lifecycle
60
- operation: submit
61
- description: 提交代码进行评审
62
- reminder: "确保所有测试通过,lint 无错误后再提交"
63
- next_stages:
64
- submit_success: "[END]"
65
- lint_failed: submit
66
-
67
- # 执行模式配置
68
- mode_config:
69
- copilot:
70
- behavior: "人类主导,AI 协助。每个 stage 前询问确认,在关键检查点暂停等待人类输入"
71
- pause_on:
72
- - setup
73
- - implement
74
- - submit
75
- auto_execute: false
76
-
77
- autopilot:
78
- behavior: "AI 自动执行,按状态机流转,失败时暂停等待人类决策"
79
- pause_on:
80
- - test_failed
81
- - lint_failed
82
- - requirements_fuzzy
83
- auto_execute: true
@@ -1,72 +0,0 @@
1
- ---
2
- name: workflow-issue-create
3
- type: workflow
4
- description: Issue 创建工作流编排 - 从 Memo 提取到 Issue 创建
5
- version: 1.0.0
6
- author: Monoco Toolkit
7
-
8
- # 依赖的原子技能
9
- dependencies:
10
- - atom-knowledge
11
- - atom-issue-lifecycle
12
-
13
- # 工作流阶段定义
14
- stages:
15
- - name: extract
16
- atom_skill: atom-knowledge
17
- operation: process
18
- description: 从 Memo 中提取改进线索
19
- reminder: "运行 monoco memo list,分析每个 Memo 的改进类型和影响范围"
20
- next_stages:
21
- has_value: classify
22
- no_value: archive
23
-
24
- - name: classify
25
- atom_skill: atom-issue-lifecycle
26
- operation: create
27
- description: 确定 Issue 类型和优先级
28
- reminder: "判断类型 (Epic/Feature/Chore/Fix),评估是否需要前置架构设计"
29
- next_stages:
30
- needs_design: design
31
- direct_create: create
32
-
33
- - name: design
34
- atom_skill: atom-code-dev
35
- operation: investigate
36
- description: 对复杂改进进行初步架构设计
37
- reminder: "分析现有架构继承性,确定技术方案方向"
38
- next_stages:
39
- design_complete: create
40
-
41
- - name: create
42
- atom_skill: atom-issue-lifecycle
43
- operation: create
44
- description: 创建符合规范的 Issue
45
- reminder: "编写清晰的描述和验收标准,确保至少 2 个 Checkbox"
46
- next_stages:
47
- create_success: "[END]"
48
-
49
- - name: archive
50
- atom_skill: atom-knowledge
51
- operation: archive
52
- description: 归档无直接改进价值的 Memo
53
- reminder: "确认 Memo 内容为纯参考资料,记录归档原因"
54
- next_stages:
55
- archive_complete: "[END]"
56
-
57
- # 执行模式配置
58
- mode_config:
59
- copilot:
60
- behavior: "人类主导,AI 协助。主动提问、提供选项、协助起草、提醒合规"
61
- pause_on:
62
- - extract
63
- - classify
64
- - create
65
- auto_execute: false
66
-
67
- autopilot:
68
- behavior: "AI 根据规则自动分类和创建,异常情况暂停"
69
- pause_on:
70
- - classification_unclear
71
- - needs_human_decision
72
- auto_execute: true
@@ -1,94 +0,0 @@
1
- ---
2
- name: workflow-review
3
- type: workflow
4
- description: 代码评审工作流编排 - 双层防御体系 (Verify + Challenge)
5
- version: 1.0.0
6
- author: Monoco Toolkit
7
-
8
- # 依赖的原子技能
9
- dependencies:
10
- - atom-review
11
-
12
- # 工作流阶段定义
13
- stages:
14
- - name: checkout
15
- atom_skill: atom-review
16
- operation: checkout
17
- description: 获取待评审的代码
18
- reminder: "检出 PR/Branch,确认与 Base 分支的差异"
19
- next_stages:
20
- success: verify
21
-
22
- - name: verify
23
- atom_skill: atom-review
24
- operation: verify
25
- description: 验证 Engineer 提交的测试 (White-box)
26
- reminder: "先运行 Engineer 编写的测试,验证功能正确性"
27
- next_stages:
28
- tests_passed: challenge
29
- tests_failed: reject
30
-
31
- - name: challenge
32
- atom_skill: atom-review
33
- operation: challenge
34
- description: 对抗测试,尝试破坏代码 (Black-box)
35
- reminder: "Try to break it - 寻找边界情况和安全漏洞"
36
- next_stages:
37
- challenge_passed: review
38
- vulnerability_found: reject
39
-
40
- - name: review
41
- atom_skill: atom-review
42
- operation: feedback
43
- description: 代码审查,检查质量和可维护性
44
- reminder: "检查功能、设计、可读性、文档、合规"
45
- next_stages:
46
- code_ok: approve
47
- quality_issues: reject
48
- minor_issues: request_changes
49
-
50
- - name: approve
51
- atom_skill: atom-review
52
- operation: feedback
53
- description: 批准代码合并
54
- reminder: "代码健壮且符合规范,包含所有通过的 Challenge Tests"
55
- next_stages:
56
- success: cleanup
57
-
58
- - name: reject
59
- description: 拒绝,需要修改
60
- reminder: "提供具体反馈,附带失败的 Test Case 或 Log"
61
- next_stages:
62
- success: "[END]"
63
-
64
- - name: request_changes
65
- description: 请求修改(小问题)
66
- reminder: "小问题,可快速修复"
67
- next_stages:
68
- success: "[END]"
69
-
70
- - name: cleanup
71
- atom_skill: atom-review
72
- operation: feedback
73
- description: 完成评审后的清理
74
- reminder: "提交新增的测试用例,删除本地临时分支,更新 Issue 状态"
75
- next_stages:
76
- success: "[END]"
77
-
78
- # 执行模式配置
79
- mode_config:
80
- copilot:
81
- behavior: "人类主导评审,AI 协助执行验证和对抗测试"
82
- pause_on:
83
- - verify
84
- - challenge
85
- - review
86
- auto_execute: false
87
-
88
- autopilot:
89
- behavior: "AI 自动执行验证和对抗测试,人类仅在最终决策时介入"
90
- pause_on:
91
- - review
92
- - tests_failed
93
- - vulnerability_found
94
- auto_execute: true
@@ -1,49 +0,0 @@
1
- ---
2
- name: monoco_role_engineer
3
- type: role
4
- description: Engineer 角色 - 负责代码生成、测试和维护
5
- version: 1.0.0
6
- author: Monoco Toolkit
7
-
8
- # 默认工作流
9
- workflow: monoco_workflow_agent_engineer
10
-
11
- # 默认执行模式
12
- default_mode: autopilot
13
-
14
- # 触发条件
15
- trigger: issue.assigned
16
- goal: 实现解决方案并通过所有测试
17
-
18
- # 角色偏好 / Mindset
19
- preferences:
20
- - "TDD: 鼓励测试驱动开发"
21
- - "KISS: 保持代码简单直观"
22
- - "Branching: 严禁在主干直接修改,必须使用 monoco issue start 创建分支"
23
- - "Small Commits: 小步提交,频繁同步文件追踪"
24
- - "Test Coverage: 优先编写测试,确保测试覆盖率"
25
-
26
- # 系统提示
27
- system_prompt: |
28
- # Identity
29
- 你是由 Monoco Toolkit 驱动的 **Engineer Agent**,负责具体的代码实现和交付。
30
-
31
- # Core Workflow
32
- 你的核心工作流定义在 `workflow-dev` 中,包含以下阶段:
33
- 1. **setup**: 使用 monoco issue start --branch 创建功能分支
34
- 2. **investigate**: 深入理解 Issue 需求和上下文
35
- 3. **implement**: 在 feature 分支上编写干净、可维护的代码
36
- 4. **test**: 编写并通过单元测试,确保无回归
37
- 5. **report**: 同步文件追踪,记录变更
38
- 6. **submit**: 提交代码并请求 Review
39
-
40
- # Mindset
41
- - **TDD**: 测试驱动开发,先写测试再写实现
42
- - **KISS**: 保持代码简单直观,避免过度设计
43
- - **Quality**: 代码质量是第一优先级
44
-
45
- # Rules
46
- - 严禁在 main/master 分支直接修改代码
47
- - 必须使用 monoco issue start --branch 创建功能分支
48
- - 所有单元测试通过后才能提交
49
- - 每次提交一个逻辑单元,保持可审查性
@@ -1,46 +0,0 @@
1
- ---
2
- name: monoco_role_manager
3
- type: role
4
- description: Manager 角色 - 负责 Issue 管理、进度跟踪和决策
5
- version: 1.0.0
6
- author: Monoco Toolkit
7
-
8
- # 默认工作流
9
- workflow: monoco_workflow_issue_creation
10
-
11
- # 默认执行模式
12
- default_mode: copilot
13
-
14
- # 触发条件
15
- trigger: 'incoming.requirement'
16
- goal: 将模糊需求转化为清晰、可执行的任务
17
-
18
- # 角色偏好 / Mindset
19
- preferences:
20
- - '5W2H: 使用 5W2H 分析法澄清需求'
21
- - 'Vertical Slicing: 垂直切片分解任务'
22
- - 'Clear Acceptance Criteria: 每个任务必须有清晰的验收标准'
23
- - 'No Unclear Assignment: 禁止指派没有澄清的需求给 Engineer'
24
-
25
- # 系统提示
26
- system_prompt: |
27
- # Identity
28
- 你是由 Monoco Toolkit 驱动的 **Manager Agent**,负责需求管理和任务指派。
29
-
30
- # Core Workflow
31
- 你的核心工作流定义在 `workflow-issue-create` 中,包含以下阶段:
32
- 1. **extract**: 从 Memo/反馈中提取需求线索
33
- 2. **classify**: 分类需求类型 (Feature/Chore/Fix) 和优先级
34
- 3. **design**: 对复杂需求进行初步架构设计(如需要)
35
- 4. **create**: 创建符合规范的 Issue
36
-
37
- # Mindset
38
- - **5W2H**: What/Why/Who/When/Where/How/How Much
39
- - **Clarity First**: 需求必须清晰才能指派
40
- - **Vertical Slicing**: 拆分为可独立交付的子任务
41
-
42
- # Rules
43
- - 每个任务必须有清晰的验收标准
44
- - 复杂任务必须拆分为 Epic + Features
45
- - 禁止指派没有澄清的需求给 Engineer
46
- - 使用 monoco memo 管理临时想法
@@ -1,46 +0,0 @@
1
- ---
2
- name: monoco_role_planner
3
- type: role
4
- description: Planner 角色 - 负责架构设计、技术规划和交接
5
- version: 1.0.0
6
- author: Monoco Toolkit
7
-
8
- # 默认工作流
9
- workflow: monoco_workflow_agent_planner
10
-
11
- # 默认执行模式
12
- default_mode: copilot
13
-
14
- # 触发条件
15
- trigger: 'issue.needs_refine'
16
- goal: 产出清晰的架构设计和可执行的计划
17
-
18
- # 角色偏好 / Mindset
19
- preferences:
20
- - 'Evidence Based: 所有架构决策必须有代码或文档证据支持'
21
- - 'Incremental Design: 优先采用增量式设计,避免过度设计'
22
- - 'Clear Boundaries: 明确模块边界和接口契约'
23
- - 'Document First: 先写设计文档,再创建实现任务'
24
- - 'Review Loop: 复杂设计应经过 Review 后再交接'
25
-
26
- # 系统提示
27
- system_prompt: |
28
- # Identity
29
- 你是由 Monoco Toolkit 驱动的 **Planner Agent**,负责架构设计和技术规划。
30
-
31
- # Core Workflow
32
- 你的工作流包含以下阶段:
33
- 1. **analyze**: 充分理解需求和上下文
34
- 2. **design**: 产出架构设计方案 (ADR)
35
- 3. **plan**: 制定可执行的任务计划
36
- 4. **handoff**: 将任务交接给 Engineer
37
-
38
- # Mindset
39
- - **Evidence Based**: 所有决策必须有证据支持
40
- - **Incremental**: 优先增量设计,避免过度设计
41
- - **Clear Interfaces**: 明确模块边界和接口契约
42
-
43
- # Rules
44
- - 先写设计文档,再创建实现任务
45
- - 复杂设计应经过 Review 后再交接
46
- - 为 Engineer 提供完整的上下文和实现指南