x-ipe 1.0.24__py3-none-any.whl → 1.0.25__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 (139) hide show
  1. x_ipe/app.py +25 -3
  2. x_ipe/handlers/terminal_handlers.py +6 -0
  3. x_ipe/handlers/voice_handlers.py +5 -0
  4. x_ipe/resources/copilot-instructions.md +19 -6
  5. x_ipe/resources/skills/lesson-learned/SKILL.md +208 -0
  6. x_ipe/resources/skills/lesson-learned/references/examples.md +238 -0
  7. x_ipe/resources/skills/project-quality-board-management/SKILL.md +135 -298
  8. x_ipe/resources/skills/project-quality-board-management/references/evaluation-principles.md +213 -0
  9. x_ipe/resources/skills/project-quality-board-management/references/evaluation-procedures.md +214 -0
  10. x_ipe/resources/skills/project-quality-board-management/templates/quality-report.md +70 -18
  11. x_ipe/resources/skills/task-execution-guideline/SKILL.md +2 -2
  12. x_ipe/resources/skills/task-execution-guideline/templates/task-record.yaml +1 -1
  13. x_ipe/resources/skills/task-type-code-implementation/SKILL.md +72 -270
  14. x_ipe/resources/skills/task-type-code-implementation/references/implementation-guidelines.md +432 -0
  15. x_ipe/resources/skills/task-type-code-refactor-v2/SKILL.md +127 -353
  16. x_ipe/resources/skills/task-type-code-refactor-v2/references/refactoring-techniques.md +373 -0
  17. x_ipe/resources/skills/task-type-feature-breakdown/SKILL.md +31 -243
  18. x_ipe/resources/skills/task-type-feature-breakdown/references/breakdown-guidelines.md +330 -0
  19. x_ipe/resources/skills/task-type-feature-refinement/SKILL.md +27 -180
  20. x_ipe/resources/skills/task-type-feature-refinement/references/specification-writing-guide.md +267 -0
  21. x_ipe/resources/skills/task-type-idea-mockup/SKILL.md +38 -276
  22. x_ipe/resources/skills/task-type-idea-mockup/references/mockup-guidelines.md +299 -0
  23. x_ipe/resources/skills/task-type-idea-to-architecture/SKILL.md +20 -218
  24. x_ipe/resources/skills/task-type-idea-to-architecture/references/architecture-patterns.md +342 -0
  25. x_ipe/resources/skills/task-type-ideation/SKILL.md +10 -266
  26. x_ipe/resources/skills/task-type-ideation/references/folder-naming-guide.md +55 -0
  27. x_ipe/resources/skills/task-type-ideation/references/tool-usage-guide.md +236 -0
  28. x_ipe/resources/skills/task-type-ideation-v2/SKILL.md +488 -0
  29. x_ipe/resources/skills/task-type-ideation-v2/references/examples.md +377 -0
  30. x_ipe/resources/skills/task-type-ideation-v2/references/folder-naming-guide.md +74 -0
  31. x_ipe/resources/skills/task-type-ideation-v2/references/tool-usage-guide.md +145 -0
  32. x_ipe/resources/skills/task-type-ideation-v2/references/visualization-guide.md +160 -0
  33. x_ipe/resources/skills/task-type-ideation-v2/templates/idea-summary.md +86 -0
  34. x_ipe/resources/skills/task-type-refactoring-analysis/SKILL.md +83 -145
  35. x_ipe/resources/skills/task-type-refactoring-analysis/references/output-schema.md +172 -0
  36. x_ipe/resources/skills/task-type-technical-design/SKILL.md +28 -214
  37. x_ipe/resources/skills/task-type-technical-design/references/design-templates.md +422 -0
  38. x_ipe/resources/skills/task-type-test-generation/SKILL.md +47 -332
  39. x_ipe/resources/skills/task-type-test-generation/references/test-patterns.md +368 -0
  40. x_ipe/resources/skills/tool-tracing-creator/SKILL.md +312 -0
  41. x_ipe/resources/skills/tool-tracing-creator/references/examples.md +324 -0
  42. x_ipe/resources/skills/tool-tracing-instrumentation/SKILL.md +373 -0
  43. x_ipe/resources/skills/tool-tracing-instrumentation/references/examples.md +264 -0
  44. x_ipe/resources/skills/x-ipe-skill-creator-v3/SKILL.md +486 -0
  45. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/10. example-gate-conditions.md +73 -0
  46. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/11. reference-quality-standards.md +127 -0
  47. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/2. reference-section-order.md +127 -0
  48. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/3. example-step-based-code-review.md +84 -0
  49. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/4. example-step-based-feature-implementation.md +113 -0
  50. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/5. example-function-based-validation.md +73 -0
  51. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/6. example-function-based-analysis.md +94 -0
  52. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/7. example-task-io-code-implementation.md +36 -0
  53. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/8. example-structured-summary.md +43 -0
  54. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/9. example-dor-dod.md +77 -0
  55. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/examples.md +429 -0
  56. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/skill-general-guidelines-v2.md +611 -0
  57. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/skill-meta-x-ipe-meta.md +153 -0
  58. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/skill-meta-x-ipe-task-based.md +324 -0
  59. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/skill-meta-x-ipe-task-category.md +109 -0
  60. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/skill-meta-x-ipe-tool.md +205 -0
  61. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/x-ipe-meta.md +334 -0
  62. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/x-ipe-task-based.md +279 -0
  63. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/x-ipe-tool.md +175 -0
  64. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/x-ipe-workflow-orchestration.md +329 -0
  65. x_ipe/resources/skills/x-ipe-task-based-ideation/SKILL.md +487 -0
  66. x_ipe/resources/skills/x-ipe-task-based-ideation/references/examples.md +377 -0
  67. x_ipe/resources/skills/x-ipe-task-based-ideation/references/folder-naming-guide.md +74 -0
  68. x_ipe/resources/skills/x-ipe-task-based-ideation/references/tool-usage-guide.md +145 -0
  69. x_ipe/resources/skills/x-ipe-task-based-ideation/references/visualization-guide.md +160 -0
  70. x_ipe/resources/skills/x-ipe-task-based-ideation/templates/idea-summary.md +86 -0
  71. x_ipe/routes/__init__.py +2 -0
  72. x_ipe/routes/ideas_routes.py +17 -0
  73. x_ipe/routes/kb_routes.py +80 -0
  74. x_ipe/routes/main_routes.py +18 -0
  75. x_ipe/routes/project_routes.py +7 -0
  76. x_ipe/routes/proxy_routes.py +2 -0
  77. x_ipe/routes/quality_evaluation_routes.py +193 -0
  78. x_ipe/routes/settings_routes.py +6 -0
  79. x_ipe/routes/tools_routes.py +6 -0
  80. x_ipe/routes/tracing_routes.py +232 -0
  81. x_ipe/routes/uiux_feedback_routes.py +30 -0
  82. x_ipe/services/__init__.py +5 -0
  83. x_ipe/services/config_service.py +6 -0
  84. x_ipe/services/file_service.py +20 -0
  85. x_ipe/services/homepage_service.py +160 -0
  86. x_ipe/services/ideas_service.py +19 -0
  87. x_ipe/services/kb_service.py +378 -0
  88. x_ipe/services/proxy_service.py +4 -0
  89. x_ipe/services/settings_service.py +13 -0
  90. x_ipe/services/skills_service.py +4 -0
  91. x_ipe/services/terminal_service.py +24 -0
  92. x_ipe/services/themes_service.py +4 -0
  93. x_ipe/services/tools_config_service.py +4 -0
  94. x_ipe/services/tracing_service.py +333 -0
  95. x_ipe/services/uiux_feedback_service.py +32 -0
  96. x_ipe/services/voice_input_service_v2.py +11 -0
  97. x_ipe/static/css/base.css +7 -0
  98. x_ipe/static/css/homepage-infinity.css +330 -0
  99. x_ipe/static/css/kb-core.css +301 -0
  100. x_ipe/static/css/quality-evaluation.css +345 -0
  101. x_ipe/static/css/sidebar.css +14 -4
  102. x_ipe/static/css/terminal.css +1 -0
  103. x_ipe/static/css/tracing-dashboard.css +796 -0
  104. x_ipe/static/css/workplace.css +20 -0
  105. x_ipe/static/img/homepage-infinity-loop.png +0 -0
  106. x_ipe/static/js/features/homepage-infinity.js +314 -0
  107. x_ipe/static/js/features/kb-core.js +371 -0
  108. x_ipe/static/js/features/quality-evaluation.js +387 -0
  109. x_ipe/static/js/features/sidebar.js +255 -12
  110. x_ipe/static/js/features/tracing-dashboard.js +855 -0
  111. x_ipe/static/js/features/tracing-graph.js +1031 -0
  112. x_ipe/static/js/features/tree-search.js +6 -2
  113. x_ipe/static/js/features/workplace.js +200 -6
  114. x_ipe/static/js/init.js +76 -0
  115. x_ipe/static/js/uiux-feedback.js +18 -2
  116. x_ipe/templates/base.html +19 -0
  117. x_ipe/templates/index.html +7 -1
  118. x_ipe/templates/knowledge-base.html +110 -0
  119. x_ipe/templates/workplace.html +4 -0
  120. x_ipe/tracing/__init__.py +37 -0
  121. x_ipe/tracing/buffer.py +135 -0
  122. x_ipe/tracing/context.py +125 -0
  123. x_ipe/tracing/decorator.py +288 -0
  124. x_ipe/tracing/middleware.py +197 -0
  125. x_ipe/tracing/parser.py +235 -0
  126. x_ipe/tracing/redactor.py +111 -0
  127. x_ipe/tracing/writer.py +122 -0
  128. {x_ipe-1.0.24.dist-info → x_ipe-1.0.25.dist-info}/METADATA +2 -2
  129. {x_ipe-1.0.24.dist-info → x_ipe-1.0.25.dist-info}/RECORD +132 -62
  130. x_ipe/resources/skills/x-ipe-skill-creator/SKILL.md +0 -329
  131. x_ipe/resources/skills/x-ipe-skill-creator/references/output-patterns.md +0 -169
  132. x_ipe/resources/skills/x-ipe-skill-creator/references/skill-structure.md +0 -162
  133. x_ipe/resources/skills/x-ipe-skill-creator/references/workflows.md +0 -110
  134. x_ipe/resources/skills/x-ipe-skill-creator/templates/references/examples.md +0 -113
  135. x_ipe/resources/skills/x-ipe-skill-creator/templates/skill-category-skill.md +0 -296
  136. x_ipe/resources/skills/x-ipe-skill-creator/templates/task-type-skill.md +0 -269
  137. {x_ipe-1.0.24.dist-info → x_ipe-1.0.25.dist-info}/WHEEL +0 -0
  138. {x_ipe-1.0.24.dist-info → x_ipe-1.0.25.dist-info}/entry_points.txt +0 -0
  139. {x_ipe-1.0.24.dist-info → x_ipe-1.0.25.dist-info}/licenses/LICENSE +0 -0
@@ -1,269 +0,0 @@
1
- # Task Type Skill Template
2
-
3
- Use this template when creating a new task type skill.
4
-
5
- ---
6
-
7
- ```markdown
8
- ---
9
- name: task-type-{skill-name}
10
- description: {Brief description of what this task type does}. Use when {trigger conditions}. Triggers on requests like "{example trigger 1}", "{example trigger 2}".
11
- ---
12
-
13
- # Task Type: {Skill Name}
14
-
15
- ## Purpose
16
-
17
- {Brief description of what this task type accomplishes} by:
18
- 1. {Step 1}
19
- 2. {Step 2}
20
- 3. {Step 3}
21
- 4. {Step 4}
22
-
23
- ---
24
-
25
- ## Important Notes
26
-
27
- ### Skill Prerequisite
28
- - If you HAVE NOT learned `task-execution-guideline` skill, please learn it first before executing this skill.
29
-
30
- **Important:** If Agent DO NOT have skill capability, can directly go to `.github/skills/` folder to learn skills. And SKILL.md file is the entry point to understand each skill.
31
-
32
- ---
33
-
34
- ## Task Type Default Attributes
35
-
36
- | Attribute | Value |
37
- |-----------|-------|
38
- | Task Type | {Task Type Name} |
39
- | Category | {standalone \| feature-stage \| requirement-stage \| ideation-stage} |
40
- | Next Task Type | {Next Task Type \| null} |
41
- | Require Human Review | {Yes \| No} |
42
-
43
- ---
44
-
45
- ## Task Type Required Input Attributes
46
-
47
- | Attribute | Default Value |
48
- |-----------|---------------|
49
- | Auto Proceed | False |
50
- | {Additional Input 1} | {Default Value} |
51
- | {Additional Input 2} | {Default Value} |
52
-
53
- {If complex input structure, add description:}
54
- **{Input Name} Structure:**
55
- ```yaml
56
- {input_name}:
57
- - field1: "description"
58
- field2: "value"
59
- ```
60
-
61
- ---
62
-
63
- ## Skill/Task Completion Output Attributes
64
-
65
- This skill MUST return these attributes to the Task Data Model upon task completion:
66
-
67
- ```yaml
68
- Output:
69
- category: {standalone | feature-stage | requirement-stage | ideation-stage}
70
- status: completed | blocked
71
- next_task_type: {Next Task Type}
72
- require_human_review: {Yes | No}
73
- task_output_links: [{output file paths}]
74
- # Dynamic attributes for {category}
75
- {dynamic_attr_1}: {value}
76
- {dynamic_attr_2}: {value}
77
- ```
78
-
79
- ---
80
-
81
- ## Definition of Ready (DoR)
82
-
83
- | # | Checkpoint | Required |
84
- |---|------------|----------|
85
- | 1 | {Prerequisite 1} | Yes |
86
- | 2 | {Prerequisite 2} | Yes |
87
- | 3 | {Prerequisite 3} | {Yes \| No} |
88
-
89
- ---
90
-
91
- ## Execution Flow
92
-
93
- Execute {Task Type Name} by following these steps in order:
94
-
95
- | Step | Name | Action | Gate to Next |
96
- |------|------|--------|--------------|
97
- | 1 | {Step Name} | {Brief action description} | {Gate condition} |
98
- | 2 | {Step Name} | {Brief action description} | {Gate condition} |
99
- | 3 | {Step Name} | {Brief action description} | {Gate condition} |
100
- | 4 | {Step Name} | {Brief action description} | {Gate condition} |
101
- | 5 | Complete | Verify DoD, request human review | Human review |
102
-
103
- **⛔ BLOCKING RULES:**
104
- - {Rule 1}: {Description}
105
- - {Rule 2}: {Description}
106
-
107
- ---
108
-
109
- ## Execution Procedure
110
-
111
- ### Step 1: {Step Name}
112
-
113
- **Action:** {What to do}
114
-
115
- ```
116
- 1. {Detailed instruction 1}
117
- 2. {Detailed instruction 2}
118
- 3. {Detailed instruction 3}
119
- ```
120
-
121
- **Output:** {What this step produces}
122
-
123
- ### Step 2: {Step Name}
124
-
125
- **Action:** {What to do}
126
-
127
- {Instructions or rules}
128
-
129
- ### Step 3: {Step Name}
130
-
131
- **Action:** {What to do}
132
-
133
- **Rules:**
134
- - {Rule 1}
135
- - {Rule 2}
136
- - {Rule 3}
137
-
138
- ---
139
-
140
- ## Definition of Done (DoD)
141
-
142
- | # | Checkpoint | Required |
143
- |---|------------|----------|
144
- | 1 | {Output 1 created/updated} | Yes |
145
- | 2 | {Verification 1 passed} | Yes |
146
- | 3 | {Optional checkpoint} | {Recommended \| No} |
147
-
148
- **Important:** After completing this skill, always return to `task-execution-guideline` skill to continue the task execution flow and validate the DoD defined there.
149
-
150
- ---
151
-
152
- ## Patterns
153
-
154
- ### Pattern: {Pattern Name}
155
-
156
- **When:** {Condition}
157
- **Then:**
158
- ```
159
- 1. {Action 1}
160
- 2. {Action 2}
161
- 3. {Action 3}
162
- ```
163
-
164
- ### Pattern: {Pattern Name}
165
-
166
- **When:** {Condition}
167
- **Then:**
168
- ```
169
- 1. {Action 1}
170
- 2. {Action 2}
171
- 3. {Action 3}
172
- ```
173
-
174
- ---
175
-
176
- ## Anti-Patterns
177
-
178
- | Anti-Pattern | Why Bad | Do Instead |
179
- |--------------|---------|------------|
180
- | {Anti-pattern 1} | {Reason} | {Better approach} |
181
- | {Anti-pattern 2} | {Reason} | {Better approach} |
182
- | {Anti-pattern 3} | {Reason} | {Better approach} |
183
-
184
- ---
185
-
186
- ## Example
187
-
188
- See [references/examples.md](references/examples.md) for concrete execution examples.
189
-
190
- ```
191
- ```
192
-
193
- ---
194
-
195
- ## Template Usage Notes
196
-
197
- ### ⚠️ SKILL.md Line Limit: 500 Lines Max
198
-
199
- **CRITICAL:** SKILL.md body MUST stay under 500 lines to minimize context bloat.
200
-
201
- **What to keep in SKILL.md:**
202
- - Purpose, Attributes, DoR, DoD (core structure)
203
- - Execution Flow (overview table)
204
- - Execution Procedure (essential steps only)
205
- - Patterns and Anti-Patterns (concise tables)
206
-
207
- **What to move to references/:**
208
- - `references/examples.md` - Detailed execution examples (MANDATORY)
209
- - `references/detailed-procedures.md` - Complex step-by-step guides
210
- - `references/edge-cases.md` - Edge case handling details
211
-
212
- **If SKILL.md > 500 lines:**
213
- 1. Move Example section content to `references/examples.md`
214
- 2. Keep only reference link in SKILL.md
215
- 3. Move verbose procedure details to references
216
- 4. Simplify Patterns to essential info only
217
-
218
- ---
219
-
220
- ### Required Sections (Must Include - IN THIS ORDER)
221
-
222
- **⚠️ SECTION ORDER IS MANDATORY.** Sections must appear in this exact sequence:
223
-
224
- | # | Section Name | Validation |
225
- |---|--------------|------------|
226
- | 1 | Frontmatter | name and description |
227
- | 2 | Purpose | numbered list of what skill does |
228
- | 3 | Important Notes | skill prerequisite |
229
- | 4 | Task Type Default Attributes | 4 standard attributes |
230
- | 5 | Task Type Required Input Attributes | at least Auto Proceed |
231
- | 6 | Skill/Task Completion Output Attributes | YAML with `category` first |
232
- | 7 | Definition of Ready (DoR) | entry criteria table |
233
- | 8 | Execution Flow | overview table with gates + blocking rules |
234
- | 9 | Execution Procedure | detailed steps |
235
- | 10 | Definition of Done (DoD) | exit criteria table |
236
- | 11 | Patterns | at least 1-2 common patterns (concise) |
237
- | 12 | Anti-Patterns | at least 2-3 anti-patterns (table format) |
238
- | 13 | Example | **Link to references/examples.md** |
239
-
240
- **Validation Warnings:**
241
- - ⚠️ Section out of order → Reorder to match template
242
- - ⚠️ Section missing → Add required section
243
- - ⚠️ Section renamed → Use exact section name from template
244
- - ⚠️ Output YAML: `category` not first → Move `category` before `status`
245
- - ⚠️ **SKILL.md > 500 lines → Move examples to references/examples.md**
246
- - ⚠️ **Example section has inline content → Replace with link to references**
247
-
248
- ### Required Reference Files
249
-
250
- | File | Purpose | When Required |
251
- |------|---------|---------------|
252
- | `references/examples.md` | Concrete execution examples | **ALWAYS for Task Type Skills** |
253
-
254
- ### Optional Sections (Add if Needed)
255
-
256
- Insert optional sections AFTER the required section they relate to:
257
- - **Output Artifacts** - after Skill/Task Completion Output Attributes
258
- - **Templates** - after Execution Procedure
259
- - **References** - after Execution Procedure
260
- - **Best Practices** - before Patterns
261
-
262
- ### Category Values
263
-
264
- | Category | Description | Board Management |
265
- |----------|-------------|------------------|
266
- | standalone | No board tracking | None |
267
- | feature-stage | Updates feature board | feature-stage+feature-board-management |
268
- | requirement-stage | Updates requirement board | requirement-stage+requirement-board-management |
269
- | ideation-stage | Updates ideation board | ideation-stage+ideation-board-management |
File without changes