@waoooo/claude-skills 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (264) hide show
  1. package/README.md +48 -0
  2. package/package.json +28 -0
  3. package/registry.json +431 -0
  4. package/skills/acceptance-review/SKILL.md +537 -0
  5. package/skills/all-plan/SKILL.md +19 -0
  6. package/skills/all-plan/references/flow.md +750 -0
  7. package/skills/api-docs-generate/SKILL.md +204 -0
  8. package/skills/api-docs-generate/assets/templates/api.mdx +140 -0
  9. package/skills/api-docs-generate/scripts/generate-api-docs.ts +308 -0
  10. package/skills/ask/SKILL.md +42 -0
  11. package/skills/autonew/SKILL.md +34 -0
  12. package/skills/capability-analyze/SKILL.md +300 -0
  13. package/skills/capability-analyze/scripts/analyze-capabilities.ts +531 -0
  14. package/skills/capability-docs-generate/SKILL.md +155 -0
  15. package/skills/capability-docs-generate/assets/templates/capability.mdx +271 -0
  16. package/skills/capability-docs-generate/scripts/generate-capability-docs.ts +358 -0
  17. package/skills/capability-tree-query/SKILL.md +112 -0
  18. package/skills/capability-tree-query/scripts/build-capability-tree.ts +402 -0
  19. package/skills/changelog-generator/SKILL.md +104 -0
  20. package/skills/continue/SKILL.md +39 -0
  21. package/skills/continue/agents/openai.yaml +3 -0
  22. package/skills/creating-skills/SKILL.md +158 -0
  23. package/skills/creating-skills/references/official_best_practices.md +128 -0
  24. package/skills/creating-skills/references/skill_examples.md +199 -0
  25. package/skills/docx/LICENSE.txt +30 -0
  26. package/skills/docx/SKILL.md +197 -0
  27. package/skills/docx/docx-js.md +350 -0
  28. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  29. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  30. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  31. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  32. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  33. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  34. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  35. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  36. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  37. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  38. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  39. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  40. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  41. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  42. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  43. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  44. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  45. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  46. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  47. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  48. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  49. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  50. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  51. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  52. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  53. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  54. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  55. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  56. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  57. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  58. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  59. package/skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
  60. package/skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  61. package/skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  62. package/skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  63. package/skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  64. package/skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  65. package/skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  66. package/skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  67. package/skills/docx/ooxml/scripts/pack.py +159 -0
  68. package/skills/docx/ooxml/scripts/unpack.py +29 -0
  69. package/skills/docx/ooxml/scripts/validate.py +69 -0
  70. package/skills/docx/ooxml/scripts/validation/__init__.py +15 -0
  71. package/skills/docx/ooxml/scripts/validation/base.py +951 -0
  72. package/skills/docx/ooxml/scripts/validation/docx.py +274 -0
  73. package/skills/docx/ooxml/scripts/validation/pptx.py +315 -0
  74. package/skills/docx/ooxml/scripts/validation/redlining.py +279 -0
  75. package/skills/docx/ooxml.md +610 -0
  76. package/skills/docx/scripts/__init__.py +1 -0
  77. package/skills/docx/scripts/document.py +1276 -0
  78. package/skills/docx/scripts/templates/comments.xml +3 -0
  79. package/skills/docx/scripts/templates/commentsExtended.xml +3 -0
  80. package/skills/docx/scripts/templates/commentsExtensible.xml +3 -0
  81. package/skills/docx/scripts/templates/commentsIds.xml +3 -0
  82. package/skills/docx/scripts/templates/people.xml +3 -0
  83. package/skills/docx/scripts/utilities.py +374 -0
  84. package/skills/git-branch-create/SKILL.md +170 -0
  85. package/skills/git-branch-merge/SKILL.md +176 -0
  86. package/skills/git-commit/SKILL.md +56 -0
  87. package/skills/git-commit/references/commit_examples.md +311 -0
  88. package/skills/github-actions-trigger/SKILL.md +367 -0
  89. package/skills/github-issue-create/SKILL.md +294 -0
  90. package/skills/github-pr-creation/SKILL.md +137 -0
  91. package/skills/github-pr-creation/references/pr_templates.md +187 -0
  92. package/skills/github-pr-merge/SKILL.md +112 -0
  93. package/skills/github-pr-review/SKILL.md +110 -0
  94. package/skills/github-pr-review/references/severity_guide.md +168 -0
  95. package/skills/job-create/SKILL.md +294 -0
  96. package/skills/job-create/scripts/create-job.ts +105 -0
  97. package/skills/job-workflow/SKILL.md +212 -0
  98. package/skills/keyword-extract/SKILL.md +229 -0
  99. package/skills/mcp-builder/LICENSE.txt +202 -0
  100. package/skills/mcp-builder/SKILL.md +236 -0
  101. package/skills/mcp-builder/reference/evaluation.md +602 -0
  102. package/skills/mcp-builder/reference/mcp_best_practices.md +249 -0
  103. package/skills/mcp-builder/reference/node_mcp_server.md +970 -0
  104. package/skills/mcp-builder/reference/python_mcp_server.md +719 -0
  105. package/skills/mcp-builder/scripts/connections.py +151 -0
  106. package/skills/mcp-builder/scripts/evaluation.py +373 -0
  107. package/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
  108. package/skills/mcp-builder/scripts/requirements.txt +2 -0
  109. package/skills/mdx-to-openspec/SKILL.md +827 -0
  110. package/skills/mdx-to-openspec/scripts/mdx-to-openspec.ts +320 -0
  111. package/skills/mounted/SKILL.md +20 -0
  112. package/skills/multi-model-review/SKILL.md +459 -0
  113. package/skills/notion-automation/SKILL.md +215 -0
  114. package/skills/openspec-review/SKILL.md +513 -0
  115. package/skills/pdf/LICENSE.txt +30 -0
  116. package/skills/pdf/SKILL.md +294 -0
  117. package/skills/pdf/forms.md +205 -0
  118. package/skills/pdf/reference.md +612 -0
  119. package/skills/pdf/scripts/check_bounding_boxes.py +70 -0
  120. package/skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
  121. package/skills/pdf/scripts/check_fillable_fields.py +12 -0
  122. package/skills/pdf/scripts/convert_pdf_to_images.py +35 -0
  123. package/skills/pdf/scripts/create_validation_image.py +41 -0
  124. package/skills/pdf/scripts/extract_form_field_info.py +152 -0
  125. package/skills/pdf/scripts/fill_fillable_fields.py +114 -0
  126. package/skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
  127. package/skills/pend/SKILL.md +33 -0
  128. package/skills/ping/SKILL.md +39 -0
  129. package/skills/pptx/LICENSE.txt +30 -0
  130. package/skills/pptx/SKILL.md +484 -0
  131. package/skills/pptx/html2pptx.md +625 -0
  132. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  133. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  134. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  135. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  136. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  137. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  138. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  139. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  140. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  141. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  142. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  143. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  144. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  145. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  146. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  147. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  148. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  149. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  150. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  151. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  152. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  153. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  154. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  155. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  156. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  157. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  158. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  159. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  160. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  161. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  162. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  163. package/skills/pptx/ooxml/schemas/mce/mc.xsd +75 -0
  164. package/skills/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  165. package/skills/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  166. package/skills/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  167. package/skills/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  168. package/skills/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  169. package/skills/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  170. package/skills/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  171. package/skills/pptx/ooxml/scripts/pack.py +159 -0
  172. package/skills/pptx/ooxml/scripts/unpack.py +29 -0
  173. package/skills/pptx/ooxml/scripts/validate.py +69 -0
  174. package/skills/pptx/ooxml/scripts/validation/__init__.py +15 -0
  175. package/skills/pptx/ooxml/scripts/validation/base.py +951 -0
  176. package/skills/pptx/ooxml/scripts/validation/docx.py +274 -0
  177. package/skills/pptx/ooxml/scripts/validation/pptx.py +315 -0
  178. package/skills/pptx/ooxml/scripts/validation/redlining.py +279 -0
  179. package/skills/pptx/ooxml.md +427 -0
  180. package/skills/pptx/scripts/html2pptx.js +979 -0
  181. package/skills/pptx/scripts/inventory.py +1020 -0
  182. package/skills/pptx/scripts/rearrange.py +231 -0
  183. package/skills/pptx/scripts/replace.py +385 -0
  184. package/skills/pptx/scripts/thumbnail.py +450 -0
  185. package/skills/progress-update/SKILL.md +394 -0
  186. package/skills/progress-update/scripts/update-progress.ts +221 -0
  187. package/skills/release-automation/SKILL.md +306 -0
  188. package/skills/requirement-parse/SKILL.md +212 -0
  189. package/skills/requirement-parse/scripts/infer-builder-config.ts +346 -0
  190. package/skills/requirement-parse/scripts/merge-requirements.ts +228 -0
  191. package/skills/requirement-parse/scripts/parse-docs.ts +206 -0
  192. package/skills/requirement-parse/scripts/parse-openspec.ts +168 -0
  193. package/skills/roadmap-docs-generate/SKILL.md +483 -0
  194. package/skills/roadmap-docs-generate/assets/templates/ROADMAP.mdx +75 -0
  195. package/skills/roadmap-docs-generate/assets/templates/ROADMAP.mdx.template +330 -0
  196. package/skills/roadmap-docs-generate/assets/templates/TODO.mdx +56 -0
  197. package/skills/roadmap-docs-generate/assets/templates/TODO.mdx.template +363 -0
  198. package/skills/roadmap-docs-generate/scripts/json-to-mdx.ts +445 -0
  199. package/skills/roadmap-docs-generate/scripts/json-to-mdx.ts.backup +411 -0
  200. package/skills/roadmap-generate/SKILL.md +396 -0
  201. package/skills/roadmap-generate/scripts/generate-roadmap.ts +496 -0
  202. package/skills/skill-creator/LICENSE.txt +202 -0
  203. package/skills/skill-creator/SKILL.md +356 -0
  204. package/skills/skill-creator/references/output-patterns.md +82 -0
  205. package/skills/skill-creator/references/workflows.md +28 -0
  206. package/skills/skill-creator/scripts/init_skill.py +303 -0
  207. package/skills/skill-creator/scripts/package_skill.py +110 -0
  208. package/skills/skill-creator/scripts/quick_validate.py +95 -0
  209. package/skills/spec-generate/SKILL.md +408 -0
  210. package/skills/spec-generate/scripts/generate-specs.ts +538 -0
  211. package/skills/spec-generate/scripts/generate-tasks.ts +174 -0
  212. package/skills/specs-review/SKILL.md +370 -0
  213. package/skills/task-execute/SKILL.md +399 -0
  214. package/skills/task-update-status/SKILL.md +349 -0
  215. package/skills/task-update-status/scripts/update-task-status.ts +192 -0
  216. package/skills/task-verify/SKILL.md +407 -0
  217. package/skills/ui-ux-pro-max/SKILL.md +386 -0
  218. package/skills/ui-ux-pro-max/data/charts.csv +26 -0
  219. package/skills/ui-ux-pro-max/data/colors.csv +97 -0
  220. package/skills/ui-ux-pro-max/data/icons.csv +101 -0
  221. package/skills/ui-ux-pro-max/data/landing.csv +31 -0
  222. package/skills/ui-ux-pro-max/data/products.csv +97 -0
  223. package/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  224. package/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
  225. package/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  226. package/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  227. package/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  228. package/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  229. package/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  230. package/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  231. package/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  232. package/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  233. package/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  234. package/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  235. package/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  236. package/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  237. package/skills/ui-ux-pro-max/data/styles.csv +68 -0
  238. package/skills/ui-ux-pro-max/data/typography.csv +58 -0
  239. package/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  240. package/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  241. package/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
  242. package/skills/ui-ux-pro-max/scripts/core.py +253 -0
  243. package/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
  244. package/skills/ui-ux-pro-max/scripts/search.py +114 -0
  245. package/skills/vercel-automation/SKILL.md +226 -0
  246. package/skills/webapp-testing/LICENSE.txt +202 -0
  247. package/skills/webapp-testing/SKILL.md +96 -0
  248. package/skills/webapp-testing/examples/console_logging.py +35 -0
  249. package/skills/webapp-testing/examples/element_discovery.py +40 -0
  250. package/skills/webapp-testing/examples/static_html_automation.py +33 -0
  251. package/skills/webapp-testing/scripts/with_server.py +106 -0
  252. package/skills/worktree-manager/SKILL.md +725 -0
  253. package/skills/worktree-manager/config.json +15 -0
  254. package/skills/worktree-manager/scripts/allocate-ports.sh +100 -0
  255. package/skills/worktree-manager/scripts/cleanup.sh +185 -0
  256. package/skills/worktree-manager/scripts/launch-agent.sh +155 -0
  257. package/skills/worktree-manager/scripts/register.sh +125 -0
  258. package/skills/worktree-manager/scripts/release-ports.sh +48 -0
  259. package/skills/worktree-manager/scripts/status.sh +169 -0
  260. package/skills/worktree-manager/scripts/sync.sh +168 -0
  261. package/skills/worktree-manager/templates/worktree.json +23 -0
  262. package/skills/xlsx/LICENSE.txt +30 -0
  263. package/skills/xlsx/SKILL.md +289 -0
  264. package/skills/xlsx/recalc.py +178 -0
@@ -0,0 +1,367 @@
1
+ ---
2
+ name: github-actions-trigger
3
+ description: Trigger and monitor GitHub Actions workflows. Use when you need to run tests, build, deploy, or check workflow status. Can wait for completion and report results.
4
+ ---
5
+
6
+ # GitHub Actions Trigger
7
+
8
+ Trigger GitHub Actions workflows and monitor their execution.
9
+
10
+ ## Current repository
11
+
12
+ !`gh repo view --json nameWithOwner -q '.nameWithOwner' 2>/dev/null || echo "Not in a git repository"`
13
+
14
+ ## Core workflow
15
+
16
+ ### 1. List available workflows
17
+
18
+ ```bash
19
+ gh workflow list
20
+ ```
21
+
22
+ ### 2. Trigger workflow
23
+
24
+ ```bash
25
+ gh workflow run <workflow-name-or-id> --ref <branch>
26
+ ```
27
+
28
+ ### 3. Monitor workflow run
29
+
30
+ ```bash
31
+ # Watch the latest run
32
+ gh run watch
33
+
34
+ # View specific run
35
+ gh run view <run-id>
36
+ ```
37
+
38
+ ## Common use cases
39
+
40
+ ### Use Case 1: Run tests (Product Builder Step 16)
41
+
42
+ When task verification needs to run tests:
43
+
44
+ ```bash
45
+ # Trigger test workflow
46
+ gh workflow run test.yml --ref feature/pricing-system
47
+
48
+ # Wait for completion
49
+ gh run watch
50
+
51
+ # Get result
52
+ gh run view --log
53
+ ```
54
+
55
+ ### Use Case 2: Run specific workflow with inputs
56
+
57
+ ```bash
58
+ gh workflow run deploy.yml \
59
+ --ref main \
60
+ --field environment=staging \
61
+ --field version=1.2.0
62
+ ```
63
+
64
+ ### Use Case 3: Check workflow status
65
+
66
+ ```bash
67
+ # List recent runs
68
+ gh run list --limit 5
69
+
70
+ # View specific run
71
+ gh run view 123456
72
+
73
+ # Get logs
74
+ gh run view 123456 --log
75
+ ```
76
+
77
+ ### Use Case 4: Re-run failed workflow
78
+
79
+ ```bash
80
+ # Re-run failed jobs
81
+ gh run rerun 123456 --failed
82
+
83
+ # Re-run all jobs
84
+ gh run rerun 123456
85
+ ```
86
+
87
+ ## Workflow commands
88
+
89
+ ### List workflows
90
+
91
+ ```bash
92
+ # List all workflows
93
+ gh workflow list
94
+
95
+ # List with more details
96
+ gh workflow list --all
97
+ ```
98
+
99
+ ### View workflow
100
+
101
+ ```bash
102
+ # View workflow details
103
+ gh workflow view <workflow-name-or-id>
104
+
105
+ # View workflow runs
106
+ gh run list --workflow=<workflow-name>
107
+ ```
108
+
109
+ ### Trigger workflow
110
+
111
+ ```bash
112
+ # Basic trigger
113
+ gh workflow run <workflow-name>
114
+
115
+ # With branch
116
+ gh workflow run <workflow-name> --ref feature/branch
117
+
118
+ # With inputs
119
+ gh workflow run <workflow-name> \
120
+ --field key1=value1 \
121
+ --field key2=value2
122
+ ```
123
+
124
+ ## Run commands
125
+
126
+ ### List runs
127
+
128
+ ```bash
129
+ # List recent runs
130
+ gh run list
131
+
132
+ # List runs for specific workflow
133
+ gh run list --workflow=test.yml
134
+
135
+ # List runs with status
136
+ gh run list --status=failure
137
+ ```
138
+
139
+ ### View run
140
+
141
+ ```bash
142
+ # View run summary
143
+ gh run view <run-id>
144
+
145
+ # View run logs
146
+ gh run view <run-id> --log
147
+
148
+ # View specific job logs
149
+ gh run view <run-id> --job=<job-id> --log
150
+ ```
151
+
152
+ ### Watch run
153
+
154
+ ```bash
155
+ # Watch latest run
156
+ gh run watch
157
+
158
+ # Watch specific run
159
+ gh run watch <run-id>
160
+ ```
161
+
162
+ ### Cancel run
163
+
164
+ ```bash
165
+ gh run cancel <run-id>
166
+ ```
167
+
168
+ ### Re-run
169
+
170
+ ```bash
171
+ # Re-run failed jobs
172
+ gh run rerun <run-id> --failed
173
+
174
+ # Re-run all jobs
175
+ gh run rerun <run-id>
176
+ ```
177
+
178
+ ## Integration with Product Builder
179
+
180
+ ### Step 16: Task Verification
181
+
182
+ After completing a task, trigger tests:
183
+
184
+ ```bash
185
+ # 1. Trigger test workflow
186
+ WORKFLOW_RUN=$(gh workflow run test.yml --ref $(git branch --show-current) --json)
187
+
188
+ # 2. Wait for completion
189
+ gh run watch
190
+
191
+ # 3. Check result
192
+ RESULT=$(gh run view --json conclusion -q '.conclusion')
193
+
194
+ if [ "$RESULT" = "success" ]; then
195
+ echo "✅ Tests passed"
196
+ else
197
+ echo "❌ Tests failed"
198
+ # Create issue for failure
199
+ gh issue create \
200
+ --title "Test failure in task verification" \
201
+ --body "Tests failed. See run: $(gh run view --json url -q '.url')" \
202
+ --label "test-failure,bug"
203
+ fi
204
+ ```
205
+
206
+ ## Workflow file examples
207
+
208
+ ### Basic test workflow (.github/workflows/test.yml)
209
+
210
+ ```yaml
211
+ name: Test
212
+
213
+ on:
214
+ workflow_dispatch: # Allow manual trigger
215
+ push:
216
+ branches: [feature/*]
217
+ pull_request:
218
+
219
+ jobs:
220
+ test:
221
+ runs-on: ubuntu-latest
222
+ steps:
223
+ - uses: actions/checkout@v3
224
+ - uses: actions/setup-node@v3
225
+ with:
226
+ node-version: '18'
227
+ - run: npm ci
228
+ - run: npm test
229
+ ```
230
+
231
+ ### Workflow with inputs (.github/workflows/deploy.yml)
232
+
233
+ ```yaml
234
+ name: Deploy
235
+
236
+ on:
237
+ workflow_dispatch:
238
+ inputs:
239
+ environment:
240
+ description: 'Environment to deploy to'
241
+ required: true
242
+ type: choice
243
+ options:
244
+ - staging
245
+ - production
246
+ version:
247
+ description: 'Version to deploy'
248
+ required: true
249
+ type: string
250
+
251
+ jobs:
252
+ deploy:
253
+ runs-on: ubuntu-latest
254
+ steps:
255
+ - uses: actions/checkout@v3
256
+ - run: echo "Deploying ${{ inputs.version }} to ${{ inputs.environment }}"
257
+ ```
258
+
259
+ ## Important rules
260
+
261
+ - **ALWAYS** specify branch with `--ref` when triggering
262
+ - **ALWAYS** wait for completion before checking results
263
+ - **ALWAYS** check workflow status before assuming success
264
+ - **NEVER** trigger workflows on main without confirmation
265
+ - Use `gh run watch` to monitor progress
266
+ - Create Issue if workflow fails
267
+
268
+ ## Error handling
269
+
270
+ ### Workflow not found
271
+
272
+ ```bash
273
+ # List available workflows
274
+ gh workflow list
275
+
276
+ # Use exact workflow name or ID
277
+ gh workflow run test.yml
278
+ ```
279
+
280
+ ### Workflow run failed
281
+
282
+ ```bash
283
+ # View logs to see error
284
+ gh run view <run-id> --log
285
+
286
+ # Create issue for tracking
287
+ gh issue create \
288
+ --title "Workflow failed: <workflow-name>" \
289
+ --body "Run: <run-url>" \
290
+ --label "ci-failure"
291
+ ```
292
+
293
+ ### Permission denied
294
+
295
+ ```bash
296
+ # Check authentication
297
+ gh auth status
298
+
299
+ # Re-authenticate if needed
300
+ gh auth login
301
+ ```
302
+
303
+ ## Examples
304
+
305
+ ### Example 1: Run tests and create issue if failed
306
+
307
+ ```bash
308
+ #!/bin/bash
309
+
310
+ # Trigger test workflow
311
+ echo "Triggering tests..."
312
+ gh workflow run test.yml --ref $(git branch --show-current)
313
+
314
+ # Wait a bit for run to start
315
+ sleep 5
316
+
317
+ # Watch the run
318
+ gh run watch
319
+
320
+ # Get the latest run result
321
+ RESULT=$(gh run list --limit 1 --json conclusion -q '.[0].conclusion')
322
+ RUN_URL=$(gh run list --limit 1 --json url -q '.[0].url')
323
+
324
+ if [ "$RESULT" != "success" ]; then
325
+ echo "❌ Tests failed, creating issue..."
326
+ gh issue create \
327
+ --title "Test failure: $(date +%Y-%m-%d)" \
328
+ --body "$(cat <<EOF
329
+ ## Test Failure
330
+
331
+ Tests failed in workflow run.
332
+
333
+ ## Details
334
+ - Branch: $(git branch --show-current)
335
+ - Commit: $(git rev-parse --short HEAD)
336
+ - Run: $RUN_URL
337
+
338
+ ## Action Required
339
+ Review logs and fix failing tests.
340
+ EOF
341
+ )" \
342
+ --label "test-failure,bug,priority:high" \
343
+ --assignee "@me"
344
+ else
345
+ echo "✅ Tests passed"
346
+ fi
347
+ ```
348
+
349
+ ### Example 2: Deploy to staging
350
+
351
+ ```bash
352
+ gh workflow run deploy.yml \
353
+ --ref main \
354
+ --field environment=staging \
355
+ --field version=1.2.0
356
+
357
+ echo "Deployment triggered. Watching progress..."
358
+ gh run watch
359
+ ```
360
+
361
+ ## Notes
362
+
363
+ - Works in **current directory** (uses current repo)
364
+ - Uses `gh` CLI (GitHub CLI)
365
+ - Requires authentication (`gh auth login`)
366
+ - Requires workflow files in `.github/workflows/`
367
+ - Compatible with any GitHub repository
@@ -0,0 +1,294 @@
1
+ ---
2
+ name: github-issue-create
3
+ description: Create GitHub Issue for tracking problems. Use when multi-model review finds issues, tests fail, or problems need tracking. Automatically adds labels, assignees, and links to related context.
4
+ ---
5
+
6
+ # GitHub Issue Create
7
+
8
+ Create GitHub Issues to track problems, bugs, and tasks.
9
+
10
+ ## Current repository
11
+
12
+ !`gh repo view --json nameWithOwner -q '.nameWithOwner' 2>/dev/null || echo "Not in a git repository"`
13
+
14
+ ## Core workflow
15
+
16
+ ### 1. Prepare issue details
17
+
18
+ **Required information**:
19
+ - Title (clear and concise)
20
+ - Body (detailed description)
21
+
22
+ **Optional information**:
23
+ - Labels (comma-separated)
24
+ - Assignees (comma-separated usernames)
25
+ - Milestone
26
+ - Project
27
+
28
+ ### 2. Create issue
29
+
30
+ ```bash
31
+ gh issue create \
32
+ --title "Issue title" \
33
+ --body "Issue description" \
34
+ --label "bug,priority:high" \
35
+ --assignee "@me"
36
+ ```
37
+
38
+ ### 3. Get issue URL
39
+
40
+ The command returns the issue URL, which can be used for tracking.
41
+
42
+ ## Common use cases
43
+
44
+ ### Use Case 1: Multi-model review feedback
45
+
46
+ When multi-model review (OpenSpec/Specs/Acceptance) finds problems:
47
+
48
+ ```bash
49
+ gh issue create \
50
+ --title "Review feedback: [Brief description]" \
51
+ --body "$(cat <<'EOF'
52
+ ## Review Type
53
+ OpenSpec Review / Specs Review / Acceptance Review
54
+
55
+ ## Issues Found
56
+ - Issue 1
57
+ - Issue 2
58
+
59
+ ## Context
60
+ - Job: [job-name]
61
+ - Step: [step-number]
62
+ - Review file: [path-to-review-file]
63
+
64
+ ## Action Required
65
+ [What needs to be fixed]
66
+ EOF
67
+ )" \
68
+ --label "review-feedback,openspec" \
69
+ --assignee "@me"
70
+ ```
71
+
72
+ ### Use Case 2: Test failure
73
+
74
+ When Actions or tests fail:
75
+
76
+ ```bash
77
+ gh issue create \
78
+ --title "Test failure: [Test name]" \
79
+ --body "$(cat <<'EOF'
80
+ ## Failed Test
81
+ [Test name or suite]
82
+
83
+ ## Error Message
84
+ ```
85
+ [Error output]
86
+ ```
87
+
88
+ ## Context
89
+ - Commit: [commit-hash]
90
+ - Branch: [branch-name]
91
+ - Actions run: [actions-url]
92
+
93
+ ## Steps to Reproduce
94
+ 1. Step 1
95
+ 2. Step 2
96
+
97
+ ## Expected vs Actual
98
+ - Expected: [what should happen]
99
+ - Actual: [what happened]
100
+ EOF
101
+ )" \
102
+ --label "test-failure,bug" \
103
+ --assignee "@me"
104
+ ```
105
+
106
+ ### Use Case 3: Bug report
107
+
108
+ ```bash
109
+ gh issue create \
110
+ --title "Bug: [Brief description]" \
111
+ --body "$(cat <<'EOF'
112
+ ## Description
113
+ [Detailed description]
114
+
115
+ ## Steps to Reproduce
116
+ 1. Step 1
117
+ 2. Step 2
118
+
119
+ ## Expected Behavior
120
+ [What should happen]
121
+
122
+ ## Actual Behavior
123
+ [What actually happens]
124
+
125
+ ## Environment
126
+ - OS: [operating system]
127
+ - Version: [version]
128
+ EOF
129
+ )" \
130
+ --label "bug" \
131
+ --assignee "@me"
132
+ ```
133
+
134
+ ### Use Case 4: Feature request
135
+
136
+ ```bash
137
+ gh issue create \
138
+ --title "Feature: [Brief description]" \
139
+ --body "$(cat <<'EOF'
140
+ ## Feature Description
141
+ [What feature do you want]
142
+
143
+ ## Use Case
144
+ [Why is this needed]
145
+
146
+ ## Proposed Solution
147
+ [How should it work]
148
+
149
+ ## Alternatives Considered
150
+ [Other options]
151
+ EOF
152
+ )" \
153
+ --label "feature,enhancement"
154
+ ```
155
+
156
+ ## Important rules
157
+
158
+ - **ALWAYS** use clear, descriptive titles
159
+ - **ALWAYS** include context (commit, branch, file paths)
160
+ - **ALWAYS** use HEREDOC for multi-line body
161
+ - **ALWAYS** add appropriate labels
162
+ - **NEVER** create duplicate issues (check first with `gh issue list`)
163
+ - Use `@me` to assign to yourself
164
+
165
+ ## Check for duplicates
166
+
167
+ Before creating, check if similar issue exists:
168
+
169
+ ```bash
170
+ # Search by keyword
171
+ gh issue list --search "keyword"
172
+
173
+ # List open issues with label
174
+ gh issue list --label "bug" --state open
175
+ ```
176
+
177
+ ## Available labels
178
+
179
+ Check available labels in the repository:
180
+
181
+ ```bash
182
+ gh label list
183
+ ```
184
+
185
+ Common labels:
186
+ - `bug` - Bug reports
187
+ - `feature` - Feature requests
188
+ - `enhancement` - Improvements
189
+ - `docs` - Documentation
190
+ - `test-failure` - Test failures
191
+ - `review-feedback` - Review feedback
192
+ - `priority:critical` - Critical priority
193
+ - `priority:high` - High priority
194
+ - `priority:medium` - Medium priority
195
+ - `priority:low` - Low priority
196
+
197
+ ## Link to related items
198
+
199
+ ### Link to PR
200
+
201
+ ```bash
202
+ gh issue create \
203
+ --title "Issue title" \
204
+ --body "Related to #123" \
205
+ --label "bug"
206
+ ```
207
+
208
+ ### Link to commit
209
+
210
+ ```bash
211
+ gh issue create \
212
+ --title "Issue title" \
213
+ --body "Introduced in commit abc123" \
214
+ --label "bug"
215
+ ```
216
+
217
+ ## Close issue
218
+
219
+ When problem is fixed:
220
+
221
+ ```bash
222
+ gh issue close <issue-number> --comment "Fixed in #PR-number"
223
+ ```
224
+
225
+ ## Examples
226
+
227
+ ### Example 1: OpenSpec review found issues
228
+
229
+ ```bash
230
+ gh issue create \
231
+ --title "OpenSpec review: Missing validation for user input" \
232
+ --body "$(cat <<'EOF'
233
+ ## Review Type
234
+ OpenSpec Review (Step 5)
235
+
236
+ ## Issues Found
237
+ - Missing input validation for email field
238
+ - No error handling for API timeout
239
+
240
+ ## Context
241
+ - Job: pricing-system
242
+ - OpenSpec: openspec/changes/001-pricing-system/
243
+ - Review: exports/jobs/2026-02-11-pricing-system/reviews/openspec/gemini/review.md
244
+
245
+ ## Action Required
246
+ 1. Add email validation in proposal.md
247
+ 2. Add timeout handling in design.md
248
+ EOF
249
+ )" \
250
+ --label "review-feedback,openspec,priority:high" \
251
+ --assignee "@me"
252
+ ```
253
+
254
+ ### Example 2: Actions test failed
255
+
256
+ ```bash
257
+ gh issue create \
258
+ --title "Test failure: unit tests for payment gateway" \
259
+ --body "$(cat <<'EOF'
260
+ ## Failed Test
261
+ npm test -- payment-gateway.test.ts
262
+
263
+ ## Error Message
264
+ ```
265
+ FAIL src/payment-gateway.test.ts
266
+ ✕ should handle timeout (1234 ms)
267
+ Expected: 200
268
+ Received: 500
269
+ ```
270
+
271
+ ## Context
272
+ - Commit: abc123def
273
+ - Branch: feature/pricing-system
274
+ - Actions: https://github.com/owner/repo/actions/runs/123456
275
+
276
+ ## Steps to Reproduce
277
+ 1. Run npm test
278
+ 2. Test fails on timeout handling
279
+
280
+ ## Expected vs Actual
281
+ - Expected: Return 200 with retry
282
+ - Actual: Return 500 without retry
283
+ EOF
284
+ )" \
285
+ --label "test-failure,bug,priority:high" \
286
+ --assignee "@me"
287
+ ```
288
+
289
+ ## Notes
290
+
291
+ - Works in **current directory** (uses current repo)
292
+ - Uses `gh` CLI (GitHub CLI)
293
+ - Requires authentication (`gh auth login`)
294
+ - Compatible with any GitHub repository