wizelit-core 0.1.17__tar.gz

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 (270) hide show
  1. wizelit_core-0.1.17/.gitignore +47 -0
  2. wizelit_core-0.1.17/LICENSE +21 -0
  3. wizelit_core-0.1.17/PKG-INFO +48 -0
  4. wizelit_core-0.1.17/README.md +13 -0
  5. wizelit_core-0.1.17/hatch_build.py +62 -0
  6. wizelit_core-0.1.17/pyproject.toml +57 -0
  7. wizelit_core-0.1.17/skills/authoring-api-docs/LICENSE.txt +62 -0
  8. wizelit_core-0.1.17/skills/authoring-api-docs/SKILL.md +50 -0
  9. wizelit_core-0.1.17/skills/authoring-api-docs/assets/rest-endpoint-template.md +83 -0
  10. wizelit_core-0.1.17/skills/authoring-api-docs/assets/sdk-function-template.md +38 -0
  11. wizelit_core-0.1.17/skills/authoring-architecture-docs/LICENSE.txt +62 -0
  12. wizelit_core-0.1.17/skills/authoring-architecture-docs/SKILL.md +153 -0
  13. wizelit_core-0.1.17/skills/authoring-architecture-docs/assets/Architecture_Decision_Record_(ADR)_template.md +48 -0
  14. wizelit_core-0.1.17/skills/authoring-architecture-docs/assets/Design_document_template.md +65 -0
  15. wizelit_core-0.1.17/skills/authoring-architecture-docs/assets/System_architecture_template.md +45 -0
  16. wizelit_core-0.1.17/skills/authoring-architecture-docs/assets/architecture-doc.md +46 -0
  17. wizelit_core-0.1.17/skills/authoring-architecture-docs/assets/diagram-templates.md +199 -0
  18. wizelit_core-0.1.17/skills/authoring-architecture-docs/references/anti-patterns.md +23 -0
  19. wizelit_core-0.1.17/skills/authoring-architecture-docs/references/level-rules.md +82 -0
  20. wizelit_core-0.1.17/skills/authoring-architecture-docs/references/notation.md +81 -0
  21. wizelit_core-0.1.17/skills/authoring-architecture-docs/references/sdlc-mapping.md +50 -0
  22. wizelit_core-0.1.17/skills/authoring-release-docs/LICENSE.txt +62 -0
  23. wizelit_core-0.1.17/skills/authoring-release-docs/SKILL.md +70 -0
  24. wizelit_core-0.1.17/skills/authoring-release-docs/assets/release_notes_template.md +120 -0
  25. wizelit_core-0.1.17/skills/authoring-technical-docs/LICENSE.txt +62 -0
  26. wizelit_core-0.1.17/skills/authoring-technical-docs/SKILL.md +177 -0
  27. wizelit_core-0.1.17/skills/authoring-user-docs/LICENSE.txt +62 -0
  28. wizelit_core-0.1.17/skills/authoring-user-docs/SKILL.md +133 -0
  29. wizelit_core-0.1.17/skills/authoring-user-docs/assets/how_to_guide_template.md +262 -0
  30. wizelit_core-0.1.17/skills/authoring-user-docs/assets/onboarding_guide_template.md +132 -0
  31. wizelit_core-0.1.17/skills/authoring-user-docs/assets/tutorial_template.md +75 -0
  32. wizelit_core-0.1.17/skills/authoring-user-docs/assets/user_guide_template.md +73 -0
  33. wizelit_core-0.1.17/skills/automating-docs-updates/SKILL.md +26 -0
  34. wizelit_core-0.1.17/skills/code-review-contextualizing/SKILL.md +107 -0
  35. wizelit_core-0.1.17/skills/code-review-intercepting/SKILL.md +22 -0
  36. wizelit_core-0.1.17/skills/code-review-optimizing/SKILL.md +112 -0
  37. wizelit_core-0.1.17/skills/code-review-optimizing/references/action-report.md +106 -0
  38. wizelit_core-0.1.17/skills/code-review-optimizing/references/performance-patterns.md +116 -0
  39. wizelit_core-0.1.17/skills/code-review-orchestrating/SKILL.md +120 -0
  40. wizelit_core-0.1.17/skills/code-review-parsing/SKILL.md +17 -0
  41. wizelit_core-0.1.17/skills/code-review-parsing/scripts/analyze_code.py +40 -0
  42. wizelit_core-0.1.17/skills/code-review-refactoring/SKILL.md +187 -0
  43. wizelit_core-0.1.17/skills/code-review-refactoring/references/action-report.md +106 -0
  44. wizelit_core-0.1.17/skills/code-review-validating/SKILL.md +110 -0
  45. wizelit_core-0.1.17/skills/code-review-validating/references/action-report.md +106 -0
  46. wizelit_core-0.1.17/skills/code-review-validating/references/concurrency-patterns.md +125 -0
  47. wizelit_core-0.1.17/skills/devsec-reviewing-code-for-security/SKILL.md +125 -0
  48. wizelit_core-0.1.17/skills/devsec-reviewing-code-for-security/assets/real-time-report-template.md +138 -0
  49. wizelit_core-0.1.17/skills/devsec-reviewing-code-for-security/assets/remediation-guide-template.md +149 -0
  50. wizelit_core-0.1.17/skills/devsec-reviewing-code-for-security/assets/secure-code-review-checklist.md +68 -0
  51. wizelit_core-0.1.17/skills/devsec-reviewing-code-for-security/references/asvs-verification.md +131 -0
  52. wizelit_core-0.1.17/skills/devsec-reviewing-code-for-security/references/cwe-mitre.md +173 -0
  53. wizelit_core-0.1.17/skills/devsec-reviewing-code-for-security/references/owasp-top10-2025.md +374 -0
  54. wizelit_core-0.1.17/skills/devsec-reviewing-code-for-security/references/secure-coding-practices.md +440 -0
  55. wizelit_core-0.1.17/skills/devsec-saving-report/SKILL.md +124 -0
  56. wizelit_core-0.1.17/skills/editing-docx-files/LICENSE.txt +62 -0
  57. wizelit_core-0.1.17/skills/editing-docx-files/SKILL.md +481 -0
  58. wizelit_core-0.1.17/skills/editing-docx-files/scripts/accept_changes.py +135 -0
  59. wizelit_core-0.1.17/skills/editing-docx-files/scripts/comment.py +318 -0
  60. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/helpers/merge_runs.py +199 -0
  61. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/helpers/simplify_redlines.py +197 -0
  62. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/pack.py +159 -0
  63. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  64. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  65. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  66. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  67. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  68. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  69. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  70. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  71. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  72. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  73. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  74. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  75. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  76. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  77. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  78. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  79. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  80. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  81. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  82. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  83. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  84. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  85. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  86. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  87. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  88. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  89. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  90. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  91. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  92. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  93. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  94. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/mce/mc.xsd +75 -0
  95. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
  96. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
  97. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
  98. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
  99. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
  100. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  101. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
  102. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/soffice.py +183 -0
  103. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/unpack.py +132 -0
  104. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/validate.py +111 -0
  105. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/validators/base.py +847 -0
  106. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/validators/docx.py +446 -0
  107. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/validators/pptx.py +275 -0
  108. wizelit_core-0.1.17/skills/editing-docx-files/scripts/office/validators/redlining.py +247 -0
  109. wizelit_core-0.1.17/skills/editing-docx-files/scripts/templates/comments.xml +3 -0
  110. wizelit_core-0.1.17/skills/editing-docx-files/scripts/templates/commentsExtended.xml +3 -0
  111. wizelit_core-0.1.17/skills/editing-docx-files/scripts/templates/commentsExtensible.xml +3 -0
  112. wizelit_core-0.1.17/skills/editing-docx-files/scripts/templates/commentsIds.xml +3 -0
  113. wizelit_core-0.1.17/skills/editing-docx-files/scripts/templates/people.xml +3 -0
  114. wizelit_core-0.1.17/skills/editing-pptx-files/LICENSE.txt +62 -0
  115. wizelit_core-0.1.17/skills/editing-pptx-files/SKILL.md +232 -0
  116. wizelit_core-0.1.17/skills/editing-pptx-files/editing.md +205 -0
  117. wizelit_core-0.1.17/skills/editing-pptx-files/pptxgenjs.md +420 -0
  118. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/add_slide.py +195 -0
  119. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/clean.py +286 -0
  120. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/helpers/merge_runs.py +199 -0
  121. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/helpers/simplify_redlines.py +197 -0
  122. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/pack.py +159 -0
  123. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  124. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  125. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  126. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  127. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  128. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  129. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  130. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  131. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  132. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  133. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  134. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  135. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  136. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  137. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  138. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  139. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  140. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  141. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  142. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  143. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  144. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  145. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  146. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  147. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  148. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  149. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  150. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  151. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  152. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  153. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  154. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/mce/mc.xsd +75 -0
  155. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
  156. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
  157. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
  158. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
  159. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
  160. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  161. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
  162. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/soffice.py +183 -0
  163. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/unpack.py +132 -0
  164. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/validate.py +111 -0
  165. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/validators/base.py +847 -0
  166. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/validators/docx.py +446 -0
  167. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/validators/pptx.py +275 -0
  168. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/office/validators/redlining.py +247 -0
  169. wizelit_core-0.1.17/skills/editing-pptx-files/scripts/thumbnail.py +289 -0
  170. wizelit_core-0.1.17/skills/incident-analyzing/SKILL.md +147 -0
  171. wizelit_core-0.1.17/skills/incident-analyzing/references/topology-patterns.md +213 -0
  172. wizelit_core-0.1.17/skills/incident-documenting/SKILL.md +230 -0
  173. wizelit_core-0.1.17/skills/incident-ingesting/SKILL.md +200 -0
  174. wizelit_core-0.1.17/skills/incident-remediating/SKILL.md +190 -0
  175. wizelit_core-0.1.17/skills/incident-remediating/references/remediation-patterns.md +240 -0
  176. wizelit_core-0.1.17/skills/incident-triaging/SKILL.md +124 -0
  177. wizelit_core-0.1.17/skills/processing-pdfs/LICENSE.txt +62 -0
  178. wizelit_core-0.1.17/skills/processing-pdfs/SKILL.md +314 -0
  179. wizelit_core-0.1.17/skills/processing-pdfs/forms.md +294 -0
  180. wizelit_core-0.1.17/skills/processing-pdfs/reference.md +612 -0
  181. wizelit_core-0.1.17/skills/processing-pdfs/scripts/check_bounding_boxes.py +65 -0
  182. wizelit_core-0.1.17/skills/processing-pdfs/scripts/check_fillable_fields.py +11 -0
  183. wizelit_core-0.1.17/skills/processing-pdfs/scripts/convert_pdf_to_images.py +33 -0
  184. wizelit_core-0.1.17/skills/processing-pdfs/scripts/create_validation_image.py +37 -0
  185. wizelit_core-0.1.17/skills/processing-pdfs/scripts/extract_form_field_info.py +122 -0
  186. wizelit_core-0.1.17/skills/processing-pdfs/scripts/extract_form_structure.py +115 -0
  187. wizelit_core-0.1.17/skills/processing-pdfs/scripts/fill_fillable_fields.py +98 -0
  188. wizelit_core-0.1.17/skills/processing-pdfs/scripts/fill_pdf_form_with_annotations.py +107 -0
  189. wizelit_core-0.1.17/skills/qa-analyzing-ux-flows/SKILL.md +219 -0
  190. wizelit_core-0.1.17/skills/qa-analyzing-ux-flows/scripts/accessibility_check.py +360 -0
  191. wizelit_core-0.1.17/skills/qa-detecting-visual-regressions/SKILL.md +183 -0
  192. wizelit_core-0.1.17/skills/qa-detecting-visual-regressions/scripts/capture.py +159 -0
  193. wizelit_core-0.1.17/skills/qa-detecting-visual-regressions/scripts/compare.py +350 -0
  194. wizelit_core-0.1.17/skills/qa-exploring-application-ui/SKILL.md +140 -0
  195. wizelit_core-0.1.17/skills/qa-exploring-application-ui/scripts/explore.py +289 -0
  196. wizelit_core-0.1.17/skills/qa-exploring-tester/SKILL.md +162 -0
  197. wizelit_core-0.1.17/skills/qa-exploring-tester/references/ai-models.md +131 -0
  198. wizelit_core-0.1.17/skills/qa-exploring-tester/scripts/browser_setup.py +227 -0
  199. wizelit_core-0.1.17/skills/qa-exploring-tester/scripts/generate_summary.py +259 -0
  200. wizelit_core-0.1.17/skills/qa-generating-bug-reports/SKILL.md +215 -0
  201. wizelit_core-0.1.17/skills/qa-generating-bug-reports/scripts/generate_report.py +278 -0
  202. wizelit_core-0.1.17/skills/qa-generating-e2e-tests/SKILL.md +189 -0
  203. wizelit_core-0.1.17/skills/qa-generating-e2e-tests/scripts/generate_playwright.py +263 -0
  204. wizelit_core-0.1.17/skills/qa-generating-integration-tests/SKILL.md +161 -0
  205. wizelit_core-0.1.17/skills/qa-generating-integration-tests/references/openapi-parsing.md +164 -0
  206. wizelit_core-0.1.17/skills/qa-generating-integration-tests/scripts/generate_tests.py +441 -0
  207. wizelit_core-0.1.17/skills/qa-generating-integration-tests/scripts/parse_contract.py +326 -0
  208. wizelit_core-0.1.17/skills/qa-generating-integration-tests/scripts/run_tests.py +206 -0
  209. wizelit_core-0.1.17/skills/qa-parsing-product-requirements/SKILL.md +22 -0
  210. wizelit_core-0.1.17/skills/qa-publishing-test-pull-requests/SKILL.md +25 -0
  211. wizelit_core-0.1.17/skills/qa-testing-cross-browser-compatibility/SKILL.md +189 -0
  212. wizelit_core-0.1.17/skills/qa-testing-cross-browser-compatibility/scripts/matrix_runner.py +142 -0
  213. wizelit_core-0.1.17/skills/sourcing-from-atlassian/SKILL.md +332 -0
  214. wizelit_core-0.1.17/skills/sourcing-from-atlassian/assets/query-quick-reference.md +116 -0
  215. wizelit_core-0.1.17/skills/unit-test-analyzing-code-coverage/SKILL.md +135 -0
  216. wizelit_core-0.1.17/skills/unit-test-analyzing-code-coverage/references/aaa-pattern.md +266 -0
  217. wizelit_core-0.1.17/skills/unit-test-analyzing-code-coverage/references/index.md +29 -0
  218. wizelit_core-0.1.17/skills/unit-test-analyzing-code-coverage/references/tdd-framing.md +122 -0
  219. wizelit_core-0.1.17/skills/unit-test-authoring-test-plans/SKILL.md +143 -0
  220. wizelit_core-0.1.17/skills/unit-test-authoring-test-plans/references/aaa-pattern.md +266 -0
  221. wizelit_core-0.1.17/skills/unit-test-authoring-test-plans/references/index.md +29 -0
  222. wizelit_core-0.1.17/skills/unit-test-authoring-test-plans/references/tdd-framing.md +122 -0
  223. wizelit_core-0.1.17/skills/unit-test-creating-test-plan/SKILL.md +69 -0
  224. wizelit_core-0.1.17/skills/unit-test-creating-test-plan/references/aaa-pattern.md +266 -0
  225. wizelit_core-0.1.17/skills/unit-test-creating-test-plan/references/index.md +29 -0
  226. wizelit_core-0.1.17/skills/unit-test-creating-test-plan/references/tdd-framing.md +122 -0
  227. wizelit_core-0.1.17/skills/unit-test-generating-test-suite/SKILL.md +70 -0
  228. wizelit_core-0.1.17/skills/unit-test-generating-test-suite/references/aaa-pattern.md +266 -0
  229. wizelit_core-0.1.17/skills/unit-test-generating-test-suite/references/index.md +29 -0
  230. wizelit_core-0.1.17/skills/unit-test-generating-test-suite/references/tdd-framing.md +122 -0
  231. wizelit_core-0.1.17/skills/unit-test-generating-unit-tests/SKILL.md +156 -0
  232. wizelit_core-0.1.17/skills/unit-test-generating-unit-tests/references/aaa-pattern.md +266 -0
  233. wizelit_core-0.1.17/skills/unit-test-generating-unit-tests/references/index.md +29 -0
  234. wizelit_core-0.1.17/skills/unit-test-generating-unit-tests/references/tdd-framing.md +122 -0
  235. wizelit_core-0.1.17/skills/unit-test-reviewing-test-suite/SKILL.md +66 -0
  236. wizelit_core-0.1.17/skills/unit-test-reviewing-test-suite/references/aaa-pattern.md +266 -0
  237. wizelit_core-0.1.17/skills/unit-test-reviewing-test-suite/references/index.md +29 -0
  238. wizelit_core-0.1.17/skills/unit-test-reviewing-test-suite/references/tdd-framing.md +122 -0
  239. wizelit_core-0.1.17/skills/unit-test-running-coverage-analysis/SKILL.md +55 -0
  240. wizelit_core-0.1.17/skills/unit-test-running-coverage-analysis/references/aaa-pattern.md +266 -0
  241. wizelit_core-0.1.17/skills/unit-test-running-coverage-analysis/references/index.md +29 -0
  242. wizelit_core-0.1.17/skills/unit-test-running-coverage-analysis/references/tdd-framing.md +122 -0
  243. wizelit_core-0.1.17/skills/unit-test-shifting-left-from-requirements/SKILL.md +123 -0
  244. wizelit_core-0.1.17/skills/unit-test-shifting-left-from-requirements/references/aaa-pattern.md +266 -0
  245. wizelit_core-0.1.17/skills/unit-test-shifting-left-from-requirements/references/index.md +29 -0
  246. wizelit_core-0.1.17/skills/unit-test-shifting-left-from-requirements/references/tdd-framing.md +122 -0
  247. wizelit_core-0.1.17/subagents/atlassian-sourcer.md +157 -0
  248. wizelit_core-0.1.17/subagents/c4-architect.md +40 -0
  249. wizelit_core-0.1.17/subagents/code-reviewer.md +168 -0
  250. wizelit_core-0.1.17/subagents/devsec-code-review.md +90 -0
  251. wizelit_core-0.1.17/subagents/doc-engineer.md +165 -0
  252. wizelit_core-0.1.17/wizelit_core/__init__.py +3 -0
  253. wizelit_core-0.1.17/wizelit_core/agent_permissions.py +96 -0
  254. wizelit_core-0.1.17/wizelit_core/bedrock_config.py +87 -0
  255. wizelit_core-0.1.17/wizelit_core/builtin_tools/__init__.py +79 -0
  256. wizelit_core-0.1.17/wizelit_core/builtin_tools/bash.py +59 -0
  257. wizelit_core-0.1.17/wizelit_core/builtin_tools/web_search.py +108 -0
  258. wizelit_core-0.1.17/wizelit_core/deep_agent_factory.py +845 -0
  259. wizelit_core-0.1.17/wizelit_core/exceptions.py +191 -0
  260. wizelit_core-0.1.17/wizelit_core/hitl.py +49 -0
  261. wizelit_core-0.1.17/wizelit_core/llm_catalog.py +265 -0
  262. wizelit_core-0.1.17/wizelit_core/mcp_manager.py +812 -0
  263. wizelit_core-0.1.17/wizelit_core/rate_limit.py +95 -0
  264. wizelit_core-0.1.17/wizelit_core/services/__init__.py +1 -0
  265. wizelit_core-0.1.17/wizelit_core/services/bash_sandbox.py +180 -0
  266. wizelit_core-0.1.17/wizelit_core/services/web_fetch.py +292 -0
  267. wizelit_core-0.1.17/wizelit_core/services/web_search/__init__.py +63 -0
  268. wizelit_core-0.1.17/wizelit_core/services/web_search/tavily.py +45 -0
  269. wizelit_core-0.1.17/wizelit_core/stream_events.py +132 -0
  270. wizelit_core-0.1.17/wizelit_core/tracing.py +217 -0
@@ -0,0 +1,47 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.egg-info/
6
+ dist/
7
+ build/
8
+ .cli_bundle/
9
+ .agent/
10
+ .venv/
11
+ *.egg
12
+
13
+ # Node
14
+ node_modules/
15
+ dist/
16
+
17
+ # Environment
18
+ .env
19
+ !.env.template
20
+
21
+ # IDE
22
+ .vscode/
23
+ .idea/
24
+ *.swp
25
+ *.swo
26
+
27
+ # OS
28
+ .DS_Store
29
+ Thumbs.db
30
+
31
+ # Data
32
+ data/
33
+
34
+ # Test
35
+ .pytest_cache/
36
+ .coverage
37
+ htmlcov/
38
+ videos/
39
+
40
+ # Build
41
+ *.whl
42
+
43
+ # AWS CDK
44
+ cdk.out/
45
+ cdk.context.json
46
+
47
+ local_*
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Wizeline
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,48 @@
1
+ Metadata-Version: 2.4
2
+ Name: wizelit-core
3
+ Version: 0.1.17
4
+ Summary: Wizelit agent runtime — deep agent factory, MCP, built-ins, model catalog
5
+ Author-email: Wizeline <engineering@wizeline.com>
6
+ License-Expression: MIT
7
+ License-File: LICENSE
8
+ Keywords: agents,deepagents,langgraph,mcp,wizelit
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Environment :: Console
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
+ Requires-Python: >=3.12
18
+ Requires-Dist: anthropic[bedrock]>=0.96.0
19
+ Requires-Dist: deepagents<1.0,>=0.6.3
20
+ Requires-Dist: httpx>=0.27.0
21
+ Requires-Dist: langchain-anthropic<2.0,>=1.4.3
22
+ Requires-Dist: langchain-aws<2.0,>=1.5.0
23
+ Requires-Dist: langchain-google-genai<5.0,>=4.2.2
24
+ Requires-Dist: langchain-openai<2.0,>=1.2.1
25
+ Requires-Dist: langchain<2.0,>=1.3.1
26
+ Requires-Dist: langgraph-checkpoint-sqlite>=3.1.0
27
+ Requires-Dist: langgraph<2.0,>=1.2.0
28
+ Requires-Dist: mcp>=1.26.0
29
+ Requires-Dist: python-dotenv>=1.0.0
30
+ Requires-Dist: pyyaml>=6.0
31
+ Provides-Extra: dev
32
+ Requires-Dist: pytest-asyncio>=0.24.0; extra == 'dev'
33
+ Requires-Dist: pytest>=8.0.0; extra == 'dev'
34
+ Description-Content-Type: text/markdown
35
+
36
+ # wizelit-core
37
+
38
+ Agent runtime for the Wizelit terminal CLI and backend:
39
+
40
+ - Deep agent graph builder (`deep_agent_factory`)
41
+ - MCP connection manager
42
+ - Built-in tools (web search, web fetch, …)
43
+ - Provider/model catalog
44
+ - Bundled `skills/` and `subagents/` in the wheel
45
+
46
+ **End users:** install **`wizelit-cli`** on PyPI (`uv tool install wizelit-cli`) — you normally do not install `wizelit-core` directly.
47
+
48
+ This package is a dependency of `wizelit-cli` and is version-pinned to match it.
@@ -0,0 +1,13 @@
1
+ # wizelit-core
2
+
3
+ Agent runtime for the Wizelit terminal CLI and backend:
4
+
5
+ - Deep agent graph builder (`deep_agent_factory`)
6
+ - MCP connection manager
7
+ - Built-in tools (web search, web fetch, …)
8
+ - Provider/model catalog
9
+ - Bundled `skills/` and `subagents/` in the wheel
10
+
11
+ **End users:** install **`wizelit-cli`** on PyPI (`uv tool install wizelit-cli`) — you normally do not install `wizelit-core` directly.
12
+
13
+ This package is a dependency of `wizelit-cli` and is version-pinned to match it.
@@ -0,0 +1,62 @@
1
+ """Hatch build hook: bundle skills/subagents into wizelit-core wheels."""
2
+
3
+ from __future__ import annotations
4
+
5
+ import shutil
6
+ from pathlib import Path
7
+
8
+ from hatchling.builders.hooks.plugin.interface import BuildHookInterface
9
+
10
+ _BUNDLE_DIR = ".cli_bundle"
11
+
12
+
13
+ class BundleCliAssetsHook(BuildHookInterface):
14
+ """Stage skills/ and subagents/ into the wheel, omitting dangling symlinks."""
15
+
16
+ PLUGIN_NAME = "bundle-cli-assets"
17
+
18
+ def initialize(self, version: str, build_data: dict) -> None:
19
+ root = Path(self.root)
20
+ bundle_root = root / _BUNDLE_DIR
21
+ if bundle_root.exists():
22
+ shutil.rmtree(bundle_root)
23
+
24
+ force_include: dict[str, str] = dict(build_data.get("force_include", {}))
25
+ for name in ("skills", "subagents"):
26
+ src = _resolve_asset_source(root, name)
27
+ if src is None:
28
+ continue
29
+ dst = bundle_root / name
30
+ _copy_tree_skip_broken_symlinks(src, dst)
31
+ force_include[str(dst.relative_to(root))] = name
32
+
33
+ build_data["force_include"] = force_include
34
+
35
+
36
+ def _resolve_asset_source(root: Path, name: str) -> Path | None:
37
+ """Find skills/subagents in monorepo backend tree or next to this package."""
38
+ for candidate in (
39
+ root / name,
40
+ root.parent / "backend" / name,
41
+ ):
42
+ if candidate.is_dir():
43
+ return candidate
44
+ return None
45
+
46
+
47
+ def _copy_tree_skip_broken_symlinks(src: Path, dst: Path) -> None:
48
+ dst.mkdir(parents=True, exist_ok=True)
49
+ for entry in sorted(src.iterdir()):
50
+ if entry.is_symlink() and not entry.exists():
51
+ continue
52
+ target = dst / entry.name
53
+ if entry.is_dir():
54
+ shutil.copytree(
55
+ entry,
56
+ target,
57
+ symlinks=False,
58
+ dirs_exist_ok=True,
59
+ ignore_dangling_symlinks=True,
60
+ )
61
+ elif entry.is_file():
62
+ shutil.copy2(entry, target)
@@ -0,0 +1,57 @@
1
+ [project]
2
+ name = "wizelit-core"
3
+ version = "0.1.17"
4
+ description = "Wizelit agent runtime — deep agent factory, MCP, built-ins, model catalog"
5
+ readme = "README.md"
6
+ license = "MIT"
7
+ requires-python = ">=3.12"
8
+ authors = [{ name = "Wizeline", email = "engineering@wizeline.com" }]
9
+ keywords = ["wizelit", "agents", "langgraph", "mcp", "deepagents"]
10
+ classifiers = [
11
+ "Development Status :: 4 - Beta",
12
+ "Environment :: Console",
13
+ "Intended Audience :: Developers",
14
+ "License :: OSI Approved :: MIT License",
15
+ "Programming Language :: Python :: 3",
16
+ "Programming Language :: Python :: 3.12",
17
+ "Programming Language :: Python :: 3.13",
18
+ "Topic :: Software Development :: Libraries :: Python Modules",
19
+ ]
20
+ dependencies = [
21
+ "mcp>=1.26.0",
22
+ "python-dotenv>=1.0.0",
23
+ "httpx>=0.27.0",
24
+ "deepagents>=0.6.3,<1.0",
25
+ "langchain>=1.3.1,<2.0",
26
+ "langgraph>=1.2.0,<2.0",
27
+ "langgraph-checkpoint-sqlite>=3.1.0",
28
+ "langchain-aws>=1.5.0,<2.0",
29
+ "langchain-anthropic>=1.4.3,<2.0",
30
+ "langchain-google-genai>=4.2.2,<5.0",
31
+ "langchain-openai>=1.2.1,<2.0",
32
+ "anthropic[bedrock]>=0.96.0",
33
+ "pyyaml>=6.0",
34
+ ]
35
+
36
+ [project.optional-dependencies]
37
+ dev = [
38
+ "pytest>=8.0.0",
39
+ "pytest-asyncio>=0.24.0",
40
+ ]
41
+
42
+ [build-system]
43
+ requires = ["hatchling"]
44
+ build-backend = "hatchling.build"
45
+
46
+ [tool.hatch.build.targets.wheel]
47
+ packages = ["wizelit_core"]
48
+
49
+ [tool.hatch.build.targets.sdist]
50
+ include = ["LICENSE", "README.md", "wizelit_core/**/*.py", "hatch_build.py"]
51
+
52
+ [tool.hatch.build.hooks.custom]
53
+ path = "hatch_build.py"
54
+
55
+ [tool.pytest.ini_options]
56
+ asyncio_mode = "auto"
57
+ testpaths = ["tests"]
@@ -0,0 +1,62 @@
1
+ © 2026 Wizeline. All rights reserved.
2
+
3
+ LICENSE: Use of this skill (including all code, prompts, assets, and associated
4
+ documentation files) is restricted to authorized employees of Wizeline and
5
+ contractors explicitly approved by Wizeline management.
6
+
7
+ INTELLECTUAL PROPERTY & OWNERSHIP:
8
+ The methodologies, workflows, and know-how embodied in this skill constitute
9
+ proprietary intellectual property exclusively owned by Wizeline. Wizeline
10
+ retains all right, title, and interest in this skill, including all copyrights,
11
+ patents, trade secrets, and other intellectual property rights.
12
+
13
+ Customer data processed during the use of this skill, and all outputs derived
14
+ from such processing, remain the exclusive property of the respective customer
15
+ and are not claimed by Wizeline.
16
+
17
+ PERMITTED USE:
18
+ - Wizeline employees and authorized contractors may use this skill for
19
+ internal business purposes only
20
+ - This skill may be demonstrated to Wizeline clients in the context of
21
+ service delivery, provided that a signed Statement of Work (SOW) or
22
+ Master Service Agreement (MSA) is in place
23
+ - Customers may not use, modify, copy, or create derivative works from
24
+ this skill; its use is exclusive to authorized Wizeline personnel
25
+ - Customer consent for any data processing activities must be obtained
26
+ through the applicable SOW or MSA prior to use
27
+ - Temporary copies may be created solely during authorized use
28
+
29
+ RESTRICTIONS: Users may not:
30
+ - Use this skill outside the scope of authorized Wizeline work
31
+ - Allow customers or any third parties to use, access, or modify this skill
32
+ - Reproduce, copy, or create derivative works based on this skill
33
+ - Distribute, sublicense, or transfer this skill to any unauthorized party
34
+ - Reverse engineer, decompile, or disassemble this skill
35
+ - Share this skill with parties outside Wizeline without prior written
36
+ authorization from Wizeline management
37
+
38
+ DATA USAGE & AI MODEL IMPACT:
39
+ This skill operates entirely within the local environment of authorized
40
+ Wizeline developers. Customer data processed through this skill remains
41
+ local and is NOT uploaded, transmitted, or used to train, fine-tune, or
42
+ otherwise modify any AI model. The AI model solely consumes the skills and
43
+ agents provided by Wizeline; no customer data feeds into or alters the
44
+ underlying AI model.
45
+
46
+ DISCLAIMER:
47
+ THIS SKILL IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
48
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
49
+ FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL
50
+ WIZELINE BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY ARISING FROM
51
+ THE USE OF THIS SKILL OUTSIDE THE SCOPE OF AN EXECUTED SOW OR MSA.
52
+
53
+ The receipt, viewing, or possession of this skill does not convey or imply
54
+ any license or right beyond those expressly granted above.
55
+
56
+ THIRD-PARTY COMPONENTS:
57
+ This material may incorporate components licensed under open-source
58
+ licenses (e.g., MIT, Apache 2.0). Such components retain their original
59
+ license terms. Wizeline's proprietary license applies exclusively to the
60
+ original Wizeline-authored content; it does not supersede or override the
61
+ terms of any incorporated open-source licenses. A list of third-party
62
+ components and their applicable licenses is provided in THIRD_PARTY_NOTICES.txt.
@@ -0,0 +1,50 @@
1
+ ---
2
+ name: authoring-api-docs
3
+ description: "Use when producing API reference documentation — REST endpoints, SDK/library references, CLI command references, or documentation generated from OpenAPI/Swagger specs. Triggers: 'document this API', 'generate API reference', 'write SDK docs', 'document these endpoints', any task involving source code with HTTP handlers, route definitions, or OpenAPI specs. Always load authoring-technical-docs first."
4
+ ---
5
+
6
+ # Authoring API Docs Action
7
+
8
+ Produces precise, exhaustive API reference documentation — the information-oriented quadrant of the Diátaxis framework.
9
+
10
+ **Load `authoring-technical-docs` first** for the multi-pass workflow, style rules, and quality framework. This action provides the templates and API-specific rules.
11
+
12
+ ---
13
+
14
+ ## Templates
15
+
16
+ Templates are located in the `assets/` folder alongside this skill:
17
+
18
+ - **`assets/rest-endpoint-template.md`** — Use for documenting individual REST API endpoints. Covers authentication, path/query/body parameters, request and response examples, error codes, and rate limits.
19
+ - **`assets/sdk-function-template.md`** — Use for documenting SDK or library functions. Covers parameters, options, return values, errors, and a usage example.
20
+
21
+ Copy the relevant template and fill in all placeholder fields before publishing.
22
+
23
+ ---
24
+
25
+ ## API-specific rules
26
+
27
+ 1. **Every parameter must have a type.** No exceptions. Complex types link to schema definitions.
28
+ 2. **Every endpoint must have a working example.** Copy-pasteable with clearly marked placeholders (`YOUR_API_KEY`).
29
+ 3. **Document all error codes.** Include the code string, description, and resolution.
30
+ 4. **Show both request and response.** Always pair them.
31
+ 5. **Use consistent field naming.** Match the API's convention exactly — never translate.
32
+ 6. **Document authentication once at the top**, then reference from individual endpoints.
33
+ 7. **Include rate limit information** for every rate-limited endpoint.
34
+ 8. **Version your docs** if the API has versions.
35
+
36
+ ---
37
+
38
+ ## Generating from OpenAPI specs
39
+
40
+ When an OpenAPI/Swagger spec is the input:
41
+
42
+ 1. Parse all paths, methods, parameters, and schemas
43
+ 2. Group endpoints by tag or resource
44
+ 3. Populate the endpoint template for each
45
+ 4. Create a "Data types" section for schemas referenced by `$ref`
46
+ 5. Use `description` fields as starting points — rewrite for clarity
47
+ 6. Use `example` fields in code examples
48
+ 7. Document `security` section as auth requirements at the top
49
+
50
+ Save output to `docs/api/`.
@@ -0,0 +1,83 @@
1
+ ---
2
+ title: "[Endpoint name]"
3
+ description: "[One sentence: what this endpoint does]"
4
+ audience: developer
5
+ doc-type: reference
6
+ last-updated: [YYYY-MM-DD]
7
+ version: [X.X]
8
+ ---
9
+
10
+ # [HTTP Method] [Path]
11
+
12
+ [One paragraph: what this endpoint does and when to use it.]
13
+
14
+ ## Authentication
15
+
16
+ [Required auth: API key, OAuth token, etc. Include header format.]
17
+
18
+ ## Request
19
+
20
+ ### Path parameters
21
+
22
+ | Parameter | Type | Required | Description |
23
+ |-----------|------|----------|-------------|
24
+ | `id` | string | Yes | The unique identifier of the resource. |
25
+
26
+ ### Query parameters
27
+
28
+ | Parameter | Type | Default | Description |
29
+ |-----------|------|---------|-------------|
30
+ | `limit` | integer | 20 | Maximum number of results to return. |
31
+
32
+ ### Request body
33
+
34
+ | Field | Type | Required | Description |
35
+ |-------|------|----------|-------------|
36
+ | `name` | string | Yes | Display name for the resource. |
37
+
38
+ #### Example request
39
+
40
+ ```bash
41
+ curl -X POST https://api.example.com/v1/resources \
42
+ -H "Authorization: Bearer YOUR_API_KEY" \
43
+ -H "Content-Type: application/json" \
44
+ -d '{
45
+ "name": "My Resource"
46
+ }'
47
+ ```
48
+
49
+ ## Response
50
+
51
+ ### Success response (200 OK)
52
+
53
+ | Field | Type | Description |
54
+ |-------|------|-------------|
55
+ | `id` | string | Unique identifier of the created resource. |
56
+ | `name` | string | The display name. |
57
+ | `created_at` | string (ISO 8601) | Timestamp of creation. |
58
+
59
+ #### Example response
60
+
61
+ ```json
62
+ {
63
+ "id": "res_abc123",
64
+ "name": "My Resource",
65
+ "created_at": "2026-01-15T10:30:00Z"
66
+ }
67
+ ```
68
+
69
+ ### Error responses
70
+
71
+ | Status | Code | Description | Resolution |
72
+ |--------|------|-------------|------------|
73
+ | 400 | `invalid_request` | Request body is malformed. | Check required fields are present and correctly typed. |
74
+ | 401 | `unauthorized` | API key is missing or invalid. | Verify your API key in the Authorization header. |
75
+ | 429 | `rate_limited` | Too many requests. | Wait and retry with exponential backoff. |
76
+
77
+ ## Rate limits
78
+
79
+ [Rate limits, headers indicating remaining quota, retry strategy.]
80
+
81
+ ## Related endpoints
82
+
83
+ - [Link to related endpoints]
@@ -0,0 +1,38 @@
1
+ ## `functionName(param1, param2, options?)`
2
+
3
+ [One sentence: what this function does.]
4
+
5
+ ### Parameters
6
+
7
+ | Name | Type | Required | Default | Description |
8
+ |------|------|----------|---------|-------------|
9
+ | `param1` | `string` | Yes | — | Description. |
10
+ | `options` | `object` | No | `{}` | Configuration options. |
11
+
12
+ #### Options
13
+
14
+ | Name | Type | Default | Description |
15
+ |------|------|---------|-------------|
16
+ | `timeout` | `number` | `5000` | Request timeout in milliseconds. |
17
+
18
+ ### Returns
19
+
20
+ `Promise<Result>` — An object containing:
21
+
22
+ | Field | Type | Description |
23
+ |-------|------|-------------|
24
+ | `data` | `object` | The response payload. |
25
+ | `status` | `number` | HTTP status code. |
26
+
27
+ ### Errors
28
+
29
+ | Error | When | How to handle |
30
+ |-------|------|---------------|
31
+ | `TimeoutError` | Request exceeds timeout | Increase timeout or check network. |
32
+
33
+ ### Example
34
+
35
+ ```javascript
36
+ const result = await functionName("hello", 42, { timeout: 10000 });
37
+ console.log(result.data);
38
+ ```
@@ -0,0 +1,62 @@
1
+ © 2026 Wizeline. All rights reserved.
2
+
3
+ LICENSE: Use of this skill (including all code, prompts, assets, and associated
4
+ documentation files) is restricted to authorized employees of Wizeline and
5
+ contractors explicitly approved by Wizeline management.
6
+
7
+ INTELLECTUAL PROPERTY & OWNERSHIP:
8
+ The methodologies, workflows, and know-how embodied in this skill constitute
9
+ proprietary intellectual property exclusively owned by Wizeline. Wizeline
10
+ retains all right, title, and interest in this skill, including all copyrights,
11
+ patents, trade secrets, and other intellectual property rights.
12
+
13
+ Customer data processed during the use of this skill, and all outputs derived
14
+ from such processing, remain the exclusive property of the respective customer
15
+ and are not claimed by Wizeline.
16
+
17
+ PERMITTED USE:
18
+ - Wizeline employees and authorized contractors may use this skill for
19
+ internal business purposes only
20
+ - This skill may be demonstrated to Wizeline clients in the context of
21
+ service delivery, provided that a signed Statement of Work (SOW) or
22
+ Master Service Agreement (MSA) is in place
23
+ - Customers may not use, modify, copy, or create derivative works from
24
+ this skill; its use is exclusive to authorized Wizeline personnel
25
+ - Customer consent for any data processing activities must be obtained
26
+ through the applicable SOW or MSA prior to use
27
+ - Temporary copies may be created solely during authorized use
28
+
29
+ RESTRICTIONS: Users may not:
30
+ - Use this skill outside the scope of authorized Wizeline work
31
+ - Allow customers or any third parties to use, access, or modify this skill
32
+ - Reproduce, copy, or create derivative works based on this skill
33
+ - Distribute, sublicense, or transfer this skill to any unauthorized party
34
+ - Reverse engineer, decompile, or disassemble this skill
35
+ - Share this skill with parties outside Wizeline without prior written
36
+ authorization from Wizeline management
37
+
38
+ DATA USAGE & AI MODEL IMPACT:
39
+ This skill operates entirely within the local environment of authorized
40
+ Wizeline developers. Customer data processed through this skill remains
41
+ local and is NOT uploaded, transmitted, or used to train, fine-tune, or
42
+ otherwise modify any AI model. The AI model solely consumes the skills and
43
+ agents provided by Wizeline; no customer data feeds into or alters the
44
+ underlying AI model.
45
+
46
+ DISCLAIMER:
47
+ THIS SKILL IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
48
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
49
+ FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL
50
+ WIZELINE BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY ARISING FROM
51
+ THE USE OF THIS SKILL OUTSIDE THE SCOPE OF AN EXECUTED SOW OR MSA.
52
+
53
+ The receipt, viewing, or possession of this skill does not convey or imply
54
+ any license or right beyond those expressly granted above.
55
+
56
+ THIRD-PARTY COMPONENTS:
57
+ This material may incorporate components licensed under open-source
58
+ licenses (e.g., MIT, Apache 2.0). Such components retain their original
59
+ license terms. Wizeline's proprietary license applies exclusively to the
60
+ original Wizeline-authored content; it does not supersede or override the
61
+ terms of any incorporated open-source licenses. A list of third-party
62
+ components and their applicable licenses is provided in THIRD_PARTY_NOTICES.txt.