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
@@ -0,0 +1,55 @@
1
+ # Folder Naming Guide
2
+
3
+ This reference document contains the detailed procedure for renaming Draft Idea folders.
4
+
5
+ ---
6
+
7
+ ## When to Rename
8
+
9
+ - Folder name matches pattern: `Draft Idea - MMDDYYYY HHMMSS`
10
+ - Idea has been refined and has a clear identity
11
+
12
+ ---
13
+
14
+ ## Naming Logic
15
+
16
+ ```
17
+ 1. Check if folder name starts with "Draft Idea - "
18
+ 2. If YES:
19
+ a. Extract timestamp suffix (MMDDYYYY HHMMSS)
20
+ b. Generate idea name from:
21
+ - Core concept identified in brainstorming
22
+ - Main theme from idea summary
23
+ - Keep it concise (2-5 words)
24
+ c. Format new name: "{Idea Name} - {timestamp}"
25
+ d. Rename folder using filesystem/API
26
+ e. Update any internal references if needed
27
+ 3. If NO (already has custom name):
28
+ a. Skip renaming
29
+ b. Log: "Folder already has custom name"
30
+ ```
31
+
32
+ ---
33
+
34
+ ## Naming Guidelines
35
+
36
+ - Use Title Case for idea name
37
+ - Keep name concise but descriptive (2-5 words)
38
+ - Avoid special characters (use only alphanumeric, spaces, hyphens)
39
+ - Preserve the original timestamp suffix
40
+
41
+ ---
42
+
43
+ ## Examples
44
+
45
+ | Original Folder | Idea Content | New Folder Name |
46
+ |-----------------|--------------|-----------------|
47
+ | `Draft Idea - 01232026 143500` | Mobile app for task management | `Task Manager App - 01232026 143500` |
48
+ | `Draft Idea - 01222026 091200` | AI-powered code review tool | `AI Code Reviewer - 01222026 091200` |
49
+ | `Draft Idea - 01212026 160000` | E-commerce checkout optimization | `Checkout Optimizer - 01212026 160000` |
50
+
51
+ ---
52
+
53
+ ## Output
54
+
55
+ Folder renamed (or skipped if already named)
@@ -0,0 +1,236 @@
1
+ # Tool Usage Guide
2
+
3
+ This reference document contains detailed tool configuration, mapping, and usage examples for the Ideation skill.
4
+
5
+ ---
6
+
7
+ ## Tool Behavior by Section
8
+
9
+ When tools are enabled in the meta file, the agent MUST attempt to use them during the ideation process:
10
+
11
+ | Tool Type | When to Use | Example Tools |
12
+ |-----------|-------------|---------------|
13
+ | Design Tools | Visual mockups, wireframes | `frontend-design`, Figma MCP |
14
+ | Diagram Tools | Flowcharts, architecture diagrams | `mermaid`, `antv-infographic` |
15
+ | Research Tools | Market analysis, competitor research | Web search, databases |
16
+ | Prototyping Tools | Quick demos, proof of concepts | Code generation, no-code tools |
17
+
18
+ **Usage Rules:**
19
+ 1. Read `x-ipe-docs/config/tools.json` at start of ideation task
20
+ 2. For each section (`stages.ideation.ideation`, `stages.ideation.mockup`, `stages.ideation.sharing`), check enabled tools
21
+ 3. If tool is enabled (`true`) → Attempt to use during relevant steps
22
+ 4. If tool is unavailable or fails → Document the limitation and proceed manually
23
+ 5. Always inform user which tools are active based on config
24
+
25
+ ---
26
+
27
+ ## Tool Mapping & Skill Invocation
28
+
29
+ | Config Key | Skill/Capability | How to Invoke |
30
+ |------------|------------------|---------------|
31
+ | `stages.ideation.ideation.antv-infographic` | `infographic-syntax-creator` skill | Call skill to generate infographic DSL syntax |
32
+ | `stages.ideation.ideation.mermaid` | Mermaid code blocks | Generate mermaid diagrams directly in markdown |
33
+ | `stages.ideation.ideation.tool-architecture-dsl` | `tool-architecture-dsl` skill | Generate Architecture DSL directly in markdown (IPE renders it) |
34
+ | `stages.ideation.mockup.frontend-design` | `frontend-design` skill | Call skill to create HTML/CSS mockups |
35
+ | `stages.ideation.mockup.figma-mcp` | Figma MCP server | Use MCP tools for Figma integration |
36
+
37
+ ---
38
+
39
+ ## Skill Invocation Rules
40
+
41
+ ```
42
+ For each enabled tool in config:
43
+ IF config.stages.ideation.ideation["antv-infographic"] == true:
44
+ → Load and invoke `infographic-syntax-creator` skill for visual summaries
45
+ → Use infographic DSL in idea-summary document
46
+
47
+ IF config.stages.ideation.ideation["mermaid"] == true:
48
+ → Generate mermaid diagrams for flowcharts, sequences
49
+ → Embed as ```mermaid code blocks in documents
50
+
51
+ IF config.stages.ideation.ideation["tool-architecture-dsl"] == true:
52
+ → Load `tool-architecture-dsl` skill for layered architecture diagrams
53
+ → Generate Architecture DSL directly in markdown
54
+ → Embed as ```architecture-dsl code blocks (IPE renders natively)
55
+ → Use for: module view (layers, services), landscape view (integrations)
56
+
57
+ IF config.stages.ideation.mockup["frontend-design"] == true:
58
+ → Load and invoke `frontend-design` skill during brainstorming
59
+ → Create interactive HTML mockups when discussing UI concepts
60
+ → Save mockups to x-ipe-docs/ideas/{folder}/mockup-vN.html (version aligned with idea-summary)
61
+
62
+ IF config.stages.ideation.mockup["figma-mcp"] == true:
63
+ → Use Figma MCP tools if available
64
+ → Create/update designs in connected Figma files
65
+ ```
66
+
67
+ ---
68
+
69
+ ## Tool-Enhanced Brainstorming
70
+
71
+ When tools are enabled in `x-ipe-docs/config/tools.json`, invoke corresponding skills during brainstorming:
72
+
73
+ | Config Enabled | Skill to Invoke | When to Use |
74
+ |----------------|-----------------|-------------|
75
+ | `stages.ideation.mockup.frontend-design: true` | `frontend-design` skill | User describes UI → Create HTML mockup |
76
+ | `stages.ideation.ideation.mermaid: true` | Mermaid syntax | User describes flow → Generate diagram |
77
+ | `stages.ideation.ideation.antv-infographic: true` | `infographic-syntax-creator` skill | Visualize lists, comparisons |
78
+ | `stages.ideation.ideation.tool-architecture-dsl: true` | `tool-architecture-dsl` skill | User describes layers/services → Generate architecture DSL |
79
+
80
+ ---
81
+
82
+ ## Example: Config-Driven Tool Usage
83
+
84
+ ```
85
+ Config: { "stages": { "ideation": { "mockup": { "frontend-design": true } } } }
86
+
87
+ User: "I want a dashboard with charts and filters"
88
+ Agent Action:
89
+ 1. Ask clarifying questions about chart types, layout preferences
90
+ 2. IF stages.ideation.mockup.frontend-design == true:
91
+ → Invoke `frontend-design` skill
92
+ → Create interactive HTML mockup
93
+ → Save to x-ipe-docs/ideas/{folder}/mockup-vN.html (aligned with idea-summary version)
94
+ 3. Share mockup: "I've created a mockup - does this match your vision?"
95
+ 4. Iterate based on feedback
96
+ ```
97
+
98
+ ---
99
+
100
+ ## Example: Mermaid Diagram Generation
101
+
102
+ ```
103
+ Config: { "stages": { "ideation": { "ideation": { "mermaid": true } } } }
104
+
105
+ User: "The user flow goes from login to dashboard to settings"
106
+ Agent Action:
107
+ 1. IF stages.ideation.ideation.mermaid == true:
108
+ → Generate mermaid flowchart
109
+ → Share in conversation:
110
+
111
+ ```mermaid
112
+ flowchart LR
113
+ Login --> Dashboard --> Settings
114
+ ```
115
+ 2. Ask: "Does this capture the flow correctly?"
116
+ ```
117
+
118
+ ---
119
+
120
+ ## Example: Architecture DSL Generation
121
+
122
+ ```
123
+ Config: { "stages": { "ideation": { "ideation": { "tool-architecture-dsl": true } } } }
124
+
125
+ User: "The system has 3 layers: frontend, backend services, and database"
126
+ Agent Action:
127
+ 1. IF stages.ideation.ideation.tool-architecture-dsl == true:
128
+ → Load `tool-architecture-dsl` skill
129
+ → Generate Architecture DSL directly in markdown
130
+ → Embed in idea-summary as:
131
+
132
+ ```architecture-dsl
133
+ @startuml module-view
134
+ title "System Architecture"
135
+ theme "theme-default"
136
+ direction top-to-bottom
137
+ grid 12 x 6
138
+
139
+ layer "Frontend" {
140
+ color "#fce7f3"
141
+ border-color "#ec4899"
142
+ rows 2
143
+ module "Web" { cols 12, rows 2, grid 1 x 1, component "React App" { cols 1, rows 1 } }
144
+ }
145
+
146
+ layer "Backend" {
147
+ color "#dbeafe"
148
+ border-color "#3b82f6"
149
+ rows 2
150
+ module "Services" { cols 12, rows 2, grid 2 x 1, component "API" { cols 1, rows 1 }, component "Workers" { cols 1, rows 1 } }
151
+ }
152
+
153
+ layer "Data" {
154
+ color "#dcfce7"
155
+ border-color "#22c55e"
156
+ rows 2
157
+ module "Storage" { cols 12, rows 2, grid 1 x 1, component "PostgreSQL" { cols 1, rows 1 } }
158
+ }
159
+
160
+ @enduml
161
+ ```
162
+ 2. IPE renders this as interactive diagram in the browser
163
+ 3. Ask: "Does this architecture structure match your vision?"
164
+ ```
165
+
166
+ ---
167
+
168
+ ## Question Categories
169
+
170
+ | Category | Example Questions |
171
+ |----------|-------------------|
172
+ | Problem Space | "What problem does this solve?" |
173
+ | Target Users | "Who will benefit from this?" |
174
+ | Scope | "What should be included in v1?" |
175
+ | Constraints | "Are there any technical limitations?" |
176
+ | Success Criteria | "How will we know it's successful?" |
177
+ | Alternatives | "Have you considered approach X?" |
178
+
179
+ ---
180
+
181
+ ## Research Common Principles
182
+
183
+ ### When to Research
184
+
185
+ - The idea touches well-known domains (e.g., authentication, e-commerce, data pipelines)
186
+ - Industry best practices exist for the problem space
187
+ - Established patterns or frameworks are relevant
188
+ - The idea could benefit from proven approaches
189
+
190
+ ### Research Process
191
+
192
+ ```
193
+ 1. Identify if topic is common/established
194
+ 2. Use web_search tool to research:
195
+ - Industry best practices
196
+ - Common design patterns
197
+ - Established principles
198
+ - Reference implementations
199
+ 3. Document findings as "Common Principles"
200
+ 4. Note authoritative sources for references
201
+ ```
202
+
203
+ ### Example Common Topics & Principles
204
+
205
+ | Topic | Common Principles to Research |
206
+ |-------|------------------------------|
207
+ | Authentication | OAuth 2.0, JWT best practices, MFA patterns |
208
+ | API Design | REST conventions, OpenAPI, rate limiting |
209
+ | Data Storage | ACID properties, CAP theorem, data modeling |
210
+ | UI/UX | Nielsen heuristics, accessibility (WCAG), mobile-first |
211
+ | Security | OWASP Top 10, zero-trust, encryption standards |
212
+ | Scalability | Horizontal scaling, caching strategies, CDN usage |
213
+ | DevOps | CI/CD pipelines, IaC, observability |
214
+
215
+ ---
216
+
217
+ ## Config-Driven Visualization (for Idea Summary)
218
+
219
+ ```
220
+ When creating idea summary, check x-ipe-docs/config/tools.json config:
221
+
222
+ IF config.stages.ideation.ideation["antv-infographic"] == true:
223
+ → Invoke `infographic-syntax-creator` skill
224
+ → Use infographic DSL for: feature lists, roadmaps, comparisons
225
+
226
+ IF config.stages.ideation.ideation["mermaid"] == true:
227
+ → Use mermaid syntax for: flowcharts, sequences, state diagrams
228
+
229
+ IF config.stages.ideation.ideation["tool-architecture-dsl"] == true:
230
+ → Use Architecture DSL for: layered architecture, module views, landscape views
231
+ → Embed directly in markdown as ```architecture-dsl code blocks
232
+ → IPE renders these natively as interactive diagrams
233
+
234
+ IF ALL are false:
235
+ → Use standard markdown (bullet lists, tables)
236
+ ```