@bcelep/capint 0.4.2 → 0.7.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 (1344) hide show
  1. package/AGENT.md +11 -1
  2. package/CHANGELOG.md +124 -0
  3. package/README.md +38 -10
  4. package/bin/capint.js +22 -1
  5. package/docs/PRD-capint.md +94 -0
  6. package/docs/PRD-v0.5-agent-capability-activation.md +439 -0
  7. package/docs/architecture-decisions.md +2 -0
  8. package/docs/capint-rehber.md +439 -0
  9. package/docs/capint-stack.md +118 -0
  10. package/docs/community.md +19 -0
  11. package/docs/conventions/cli-scripting.md +60 -0
  12. package/docs/conventions/daily-use.md +146 -0
  13. package/docs/conventions/task-to-capability-cheatsheet.md +29 -0
  14. package/docs/eval/beginner-test-protocol.md +39 -0
  15. package/docs/eval/survey-template.md +16 -0
  16. package/docs/execution-intent-contract.md +31 -3
  17. package/docs/generated/README.md +6 -0
  18. package/docs/generated/execution-intent.v1.md +211 -0
  19. package/docs/generated/explanation.v1.md +127 -0
  20. package/docs/generated/explanation.v2.md +142 -0
  21. package/docs/generated/ui-api.v1.md +178 -0
  22. package/docs/kullanim-kilavuzu.md +374 -0
  23. package/docs/maintainer-dogfood.md +91 -0
  24. package/docs/recipes/memory-graph-pairing.md +200 -0
  25. package/docs/skill-audit-runbook.md +32 -0
  26. package/locales/en.json +27 -0
  27. package/locales/tr.json +27 -0
  28. package/package.json +14 -3
  29. package/projections/session-start.md +26 -6
  30. package/registry.json +117 -4
  31. package/schemas/execution-intent.v1.json +69 -0
  32. package/schemas/explanation.v1.json +48 -0
  33. package/schemas/explanation.v2.json +51 -0
  34. package/schemas/ui-api.v1.json +85 -0
  35. package/scripts/capint-task.ps1 +38 -0
  36. package/scripts/capint-task.sh +40 -0
  37. package/scripts/generate-schema-docs.mjs +104 -0
  38. package/scripts/release-check.mjs +24 -1
  39. package/scripts/validate-registry.mjs +44 -0
  40. package/skill-routing-matrix.json +50 -4
  41. package/skills/agent-browser/LICENSE +201 -0
  42. package/skills/agent-browser/SKILL.md +522 -0
  43. package/skills/agent-browser/agents/verdent.yaml +7 -0
  44. package/skills/agent-browser/assets/icon-dark.png +0 -0
  45. package/skills/agent-browser/assets/icon-light.png +0 -0
  46. package/skills/agent-browser/references/authentication.md +202 -0
  47. package/skills/agent-browser/references/commands.md +263 -0
  48. package/skills/agent-browser/references/profiling.md +120 -0
  49. package/skills/agent-browser/references/proxy-support.md +194 -0
  50. package/skills/agent-browser/references/session-management.md +193 -0
  51. package/skills/agent-browser/references/snapshot-refs.md +194 -0
  52. package/skills/agent-browser/references/video-recording.md +173 -0
  53. package/skills/agent-browser/templates/authenticated-session.sh +105 -0
  54. package/skills/agent-browser/templates/capture-workflow.sh +69 -0
  55. package/skills/agent-browser/templates/form-automation.sh +62 -0
  56. package/skills/algorithmic-art/LICENSE.txt +202 -0
  57. package/skills/algorithmic-art/SKILL.md +410 -0
  58. package/skills/algorithmic-art/agents/verdent.yaml +11 -0
  59. package/skills/algorithmic-art/assets/icon-dark.png +0 -0
  60. package/skills/algorithmic-art/assets/icon-light.png +0 -0
  61. package/skills/algorithmic-art/templates/generator_template.js +223 -0
  62. package/skills/algorithmic-art/templates/viewer.html +599 -0
  63. package/skills/api-and-interface-design/SKILL.md +294 -0
  64. package/skills/aspnet-core/LICENSE.txt +202 -0
  65. package/skills/aspnet-core/SKILL.md +67 -0
  66. package/skills/aspnet-core/agents/verdent.yaml +11 -0
  67. package/skills/aspnet-core/assets/dotnet-logo.png +0 -0
  68. package/skills/aspnet-core/assets/icon-dark.png +0 -0
  69. package/skills/aspnet-core/assets/icon-light.png +0 -0
  70. package/skills/aspnet-core/references/_sections.md +40 -0
  71. package/skills/aspnet-core/references/apis-minimal-and-controllers.md +81 -0
  72. package/skills/aspnet-core/references/data-state-and-services.md +69 -0
  73. package/skills/aspnet-core/references/program-and-pipeline.md +103 -0
  74. package/skills/aspnet-core/references/realtime-grpc-and-background-work.md +58 -0
  75. package/skills/aspnet-core/references/security-and-identity.md +75 -0
  76. package/skills/aspnet-core/references/source-map.md +43 -0
  77. package/skills/aspnet-core/references/stack-selection.md +63 -0
  78. package/skills/aspnet-core/references/testing-performance-and-operations.md +92 -0
  79. package/skills/aspnet-core/references/ui-blazor.md +53 -0
  80. package/skills/aspnet-core/references/ui-mvc.md +56 -0
  81. package/skills/aspnet-core/references/ui-razor-pages.md +55 -0
  82. package/skills/aspnet-core/references/versioning-and-upgrades.md +51 -0
  83. package/skills/auth-patterns/SKILL.md +549 -0
  84. package/skills/best-practices/SKILL.md +641 -0
  85. package/skills/better-auth-best-practices/SKILL.md +180 -0
  86. package/skills/better-auth-best-practices/agents/verdent.yaml +11 -0
  87. package/skills/better-auth-best-practices/assets/icon-dark.png +0 -0
  88. package/skills/better-auth-best-practices/assets/icon-light.png +0 -0
  89. package/skills/brainstorming/SKILL.md +164 -0
  90. package/skills/brainstorming/spec-document-reviewer-prompt.md +49 -0
  91. package/skills/brainstorming/visual-companion.md +287 -0
  92. package/skills/canvas-design/LICENSE.txt +202 -0
  93. package/skills/canvas-design/SKILL.md +135 -0
  94. package/skills/canvas-design/agents/verdent.yaml +11 -0
  95. package/skills/canvas-design/assets/icon-dark.png +0 -0
  96. package/skills/canvas-design/assets/icon-light.png +0 -0
  97. package/skills/canvas-design/canvas-fonts/ArsenalSC-OFL.txt +93 -0
  98. package/skills/canvas-design/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  99. package/skills/canvas-design/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  100. package/skills/canvas-design/canvas-fonts/BigShoulders-OFL.txt +93 -0
  101. package/skills/canvas-design/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  102. package/skills/canvas-design/canvas-fonts/Boldonse-OFL.txt +93 -0
  103. package/skills/canvas-design/canvas-fonts/Boldonse-Regular.ttf +0 -0
  104. package/skills/canvas-design/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  105. package/skills/canvas-design/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
  106. package/skills/canvas-design/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  107. package/skills/canvas-design/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  108. package/skills/canvas-design/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  109. package/skills/canvas-design/canvas-fonts/CrimsonPro-OFL.txt +93 -0
  110. package/skills/canvas-design/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  111. package/skills/canvas-design/canvas-fonts/DMMono-OFL.txt +93 -0
  112. package/skills/canvas-design/canvas-fonts/DMMono-Regular.ttf +0 -0
  113. package/skills/canvas-design/canvas-fonts/EricaOne-OFL.txt +94 -0
  114. package/skills/canvas-design/canvas-fonts/EricaOne-Regular.ttf +0 -0
  115. package/skills/canvas-design/canvas-fonts/GeistMono-Bold.ttf +0 -0
  116. package/skills/canvas-design/canvas-fonts/GeistMono-OFL.txt +93 -0
  117. package/skills/canvas-design/canvas-fonts/GeistMono-Regular.ttf +0 -0
  118. package/skills/canvas-design/canvas-fonts/Gloock-OFL.txt +93 -0
  119. package/skills/canvas-design/canvas-fonts/Gloock-Regular.ttf +0 -0
  120. package/skills/canvas-design/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  121. package/skills/canvas-design/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
  122. package/skills/canvas-design/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  123. package/skills/canvas-design/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  124. package/skills/canvas-design/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  125. package/skills/canvas-design/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  126. package/skills/canvas-design/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  127. package/skills/canvas-design/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  128. package/skills/canvas-design/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  129. package/skills/canvas-design/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  130. package/skills/canvas-design/canvas-fonts/InstrumentSans-OFL.txt +93 -0
  131. package/skills/canvas-design/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  132. package/skills/canvas-design/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  133. package/skills/canvas-design/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  134. package/skills/canvas-design/canvas-fonts/Italiana-OFL.txt +93 -0
  135. package/skills/canvas-design/canvas-fonts/Italiana-Regular.ttf +0 -0
  136. package/skills/canvas-design/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  137. package/skills/canvas-design/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
  138. package/skills/canvas-design/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  139. package/skills/canvas-design/canvas-fonts/Jura-Light.ttf +0 -0
  140. package/skills/canvas-design/canvas-fonts/Jura-Medium.ttf +0 -0
  141. package/skills/canvas-design/canvas-fonts/Jura-OFL.txt +93 -0
  142. package/skills/canvas-design/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
  143. package/skills/canvas-design/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  144. package/skills/canvas-design/canvas-fonts/Lora-Bold.ttf +0 -0
  145. package/skills/canvas-design/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  146. package/skills/canvas-design/canvas-fonts/Lora-Italic.ttf +0 -0
  147. package/skills/canvas-design/canvas-fonts/Lora-OFL.txt +93 -0
  148. package/skills/canvas-design/canvas-fonts/Lora-Regular.ttf +0 -0
  149. package/skills/canvas-design/canvas-fonts/NationalPark-Bold.ttf +0 -0
  150. package/skills/canvas-design/canvas-fonts/NationalPark-OFL.txt +93 -0
  151. package/skills/canvas-design/canvas-fonts/NationalPark-Regular.ttf +0 -0
  152. package/skills/canvas-design/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
  153. package/skills/canvas-design/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  154. package/skills/canvas-design/canvas-fonts/Outfit-Bold.ttf +0 -0
  155. package/skills/canvas-design/canvas-fonts/Outfit-OFL.txt +93 -0
  156. package/skills/canvas-design/canvas-fonts/Outfit-Regular.ttf +0 -0
  157. package/skills/canvas-design/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  158. package/skills/canvas-design/canvas-fonts/PixelifySans-OFL.txt +93 -0
  159. package/skills/canvas-design/canvas-fonts/PoiretOne-OFL.txt +93 -0
  160. package/skills/canvas-design/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  161. package/skills/canvas-design/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  162. package/skills/canvas-design/canvas-fonts/RedHatMono-OFL.txt +93 -0
  163. package/skills/canvas-design/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  164. package/skills/canvas-design/canvas-fonts/Silkscreen-OFL.txt +93 -0
  165. package/skills/canvas-design/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  166. package/skills/canvas-design/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  167. package/skills/canvas-design/canvas-fonts/SmoochSans-OFL.txt +93 -0
  168. package/skills/canvas-design/canvas-fonts/Tektur-Medium.ttf +0 -0
  169. package/skills/canvas-design/canvas-fonts/Tektur-OFL.txt +93 -0
  170. package/skills/canvas-design/canvas-fonts/Tektur-Regular.ttf +0 -0
  171. package/skills/canvas-design/canvas-fonts/WorkSans-Bold.ttf +0 -0
  172. package/skills/canvas-design/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  173. package/skills/canvas-design/canvas-fonts/WorkSans-Italic.ttf +0 -0
  174. package/skills/canvas-design/canvas-fonts/WorkSans-OFL.txt +93 -0
  175. package/skills/canvas-design/canvas-fonts/WorkSans-Regular.ttf +0 -0
  176. package/skills/canvas-design/canvas-fonts/YoungSerif-OFL.txt +93 -0
  177. package/skills/canvas-design/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  178. package/skills/ci-cd-and-automation/SKILL.md +390 -0
  179. package/skills/cloudflare/SKILL.md +233 -0
  180. package/skills/cloudflare/agents/verdent.yaml +12 -0
  181. package/skills/cloudflare/assets/icon-dark.png +0 -0
  182. package/skills/cloudflare/assets/icon-light.png +0 -0
  183. package/skills/cloudflare/references/agents-sdk/README.md +89 -0
  184. package/skills/cloudflare/references/agents-sdk/api.md +190 -0
  185. package/skills/cloudflare/references/agents-sdk/configuration.md +182 -0
  186. package/skills/cloudflare/references/agents-sdk/gotchas.md +158 -0
  187. package/skills/cloudflare/references/agents-sdk/patterns.md +192 -0
  188. package/skills/cloudflare/references/ai-gateway/README.md +175 -0
  189. package/skills/cloudflare/references/ai-gateway/configuration.md +111 -0
  190. package/skills/cloudflare/references/ai-gateway/dynamic-routing.md +82 -0
  191. package/skills/cloudflare/references/ai-gateway/features.md +96 -0
  192. package/skills/cloudflare/references/ai-gateway/sdk-integration.md +114 -0
  193. package/skills/cloudflare/references/ai-gateway/troubleshooting.md +88 -0
  194. package/skills/cloudflare/references/ai-search/README.md +138 -0
  195. package/skills/cloudflare/references/ai-search/api.md +87 -0
  196. package/skills/cloudflare/references/ai-search/configuration.md +88 -0
  197. package/skills/cloudflare/references/ai-search/gotchas.md +81 -0
  198. package/skills/cloudflare/references/ai-search/patterns.md +85 -0
  199. package/skills/cloudflare/references/analytics-engine/README.md +94 -0
  200. package/skills/cloudflare/references/analytics-engine/api.md +112 -0
  201. package/skills/cloudflare/references/analytics-engine/configuration.md +112 -0
  202. package/skills/cloudflare/references/analytics-engine/gotchas.md +85 -0
  203. package/skills/cloudflare/references/analytics-engine/patterns.md +83 -0
  204. package/skills/cloudflare/references/api/README.md +66 -0
  205. package/skills/cloudflare/references/api/api.md +204 -0
  206. package/skills/cloudflare/references/api/configuration.md +160 -0
  207. package/skills/cloudflare/references/api/gotchas.md +225 -0
  208. package/skills/cloudflare/references/api/patterns.md +204 -0
  209. package/skills/cloudflare/references/api-shield/README.md +44 -0
  210. package/skills/cloudflare/references/api-shield/api.md +141 -0
  211. package/skills/cloudflare/references/api-shield/configuration.md +192 -0
  212. package/skills/cloudflare/references/api-shield/gotchas.md +125 -0
  213. package/skills/cloudflare/references/api-shield/patterns.md +180 -0
  214. package/skills/cloudflare/references/argo-smart-routing/README.md +90 -0
  215. package/skills/cloudflare/references/argo-smart-routing/api.md +240 -0
  216. package/skills/cloudflare/references/argo-smart-routing/configuration.md +197 -0
  217. package/skills/cloudflare/references/argo-smart-routing/gotchas.md +111 -0
  218. package/skills/cloudflare/references/argo-smart-routing/patterns.md +104 -0
  219. package/skills/cloudflare/references/bindings/README.md +122 -0
  220. package/skills/cloudflare/references/bindings/api.md +203 -0
  221. package/skills/cloudflare/references/bindings/configuration.md +188 -0
  222. package/skills/cloudflare/references/bindings/gotchas.md +208 -0
  223. package/skills/cloudflare/references/bindings/patterns.md +200 -0
  224. package/skills/cloudflare/references/bot-management/README.md +94 -0
  225. package/skills/cloudflare/references/bot-management/api.md +169 -0
  226. package/skills/cloudflare/references/bot-management/configuration.md +163 -0
  227. package/skills/cloudflare/references/bot-management/gotchas.md +114 -0
  228. package/skills/cloudflare/references/bot-management/patterns.md +182 -0
  229. package/skills/cloudflare/references/browser-rendering/README.md +78 -0
  230. package/skills/cloudflare/references/browser-rendering/api.md +108 -0
  231. package/skills/cloudflare/references/browser-rendering/configuration.md +78 -0
  232. package/skills/cloudflare/references/browser-rendering/gotchas.md +88 -0
  233. package/skills/cloudflare/references/browser-rendering/patterns.md +91 -0
  234. package/skills/cloudflare/references/c3/README.md +111 -0
  235. package/skills/cloudflare/references/c3/api.md +71 -0
  236. package/skills/cloudflare/references/c3/configuration.md +81 -0
  237. package/skills/cloudflare/references/c3/gotchas.md +92 -0
  238. package/skills/cloudflare/references/c3/patterns.md +82 -0
  239. package/skills/cloudflare/references/cache-reserve/README.md +147 -0
  240. package/skills/cloudflare/references/cache-reserve/api.md +194 -0
  241. package/skills/cloudflare/references/cache-reserve/configuration.md +169 -0
  242. package/skills/cloudflare/references/cache-reserve/gotchas.md +132 -0
  243. package/skills/cloudflare/references/cache-reserve/patterns.md +197 -0
  244. package/skills/cloudflare/references/containers/README.md +85 -0
  245. package/skills/cloudflare/references/containers/api.md +187 -0
  246. package/skills/cloudflare/references/containers/configuration.md +188 -0
  247. package/skills/cloudflare/references/containers/gotchas.md +178 -0
  248. package/skills/cloudflare/references/containers/patterns.md +202 -0
  249. package/skills/cloudflare/references/cron-triggers/README.md +99 -0
  250. package/skills/cloudflare/references/cron-triggers/api.md +196 -0
  251. package/skills/cloudflare/references/cron-triggers/configuration.md +180 -0
  252. package/skills/cloudflare/references/cron-triggers/gotchas.md +199 -0
  253. package/skills/cloudflare/references/cron-triggers/patterns.md +190 -0
  254. package/skills/cloudflare/references/d1/README.md +133 -0
  255. package/skills/cloudflare/references/d1/api.md +196 -0
  256. package/skills/cloudflare/references/d1/configuration.md +188 -0
  257. package/skills/cloudflare/references/d1/gotchas.md +98 -0
  258. package/skills/cloudflare/references/d1/patterns.md +189 -0
  259. package/skills/cloudflare/references/ddos/README.md +41 -0
  260. package/skills/cloudflare/references/ddos/api.md +164 -0
  261. package/skills/cloudflare/references/ddos/configuration.md +93 -0
  262. package/skills/cloudflare/references/ddos/gotchas.md +107 -0
  263. package/skills/cloudflare/references/ddos/patterns.md +174 -0
  264. package/skills/cloudflare/references/do-storage/README.md +75 -0
  265. package/skills/cloudflare/references/do-storage/api.md +102 -0
  266. package/skills/cloudflare/references/do-storage/configuration.md +112 -0
  267. package/skills/cloudflare/references/do-storage/gotchas.md +150 -0
  268. package/skills/cloudflare/references/do-storage/patterns.md +194 -0
  269. package/skills/cloudflare/references/do-storage/testing.md +183 -0
  270. package/skills/cloudflare/references/durable-objects/README.md +185 -0
  271. package/skills/cloudflare/references/durable-objects/api.md +187 -0
  272. package/skills/cloudflare/references/durable-objects/configuration.md +160 -0
  273. package/skills/cloudflare/references/durable-objects/gotchas.md +197 -0
  274. package/skills/cloudflare/references/durable-objects/patterns.md +201 -0
  275. package/skills/cloudflare/references/email-routing/README.md +89 -0
  276. package/skills/cloudflare/references/email-routing/api.md +195 -0
  277. package/skills/cloudflare/references/email-routing/configuration.md +186 -0
  278. package/skills/cloudflare/references/email-routing/gotchas.md +196 -0
  279. package/skills/cloudflare/references/email-routing/patterns.md +229 -0
  280. package/skills/cloudflare/references/email-workers/README.md +151 -0
  281. package/skills/cloudflare/references/email-workers/api.md +237 -0
  282. package/skills/cloudflare/references/email-workers/configuration.md +112 -0
  283. package/skills/cloudflare/references/email-workers/gotchas.md +125 -0
  284. package/skills/cloudflare/references/email-workers/patterns.md +102 -0
  285. package/skills/cloudflare/references/graphql-api/README.md +147 -0
  286. package/skills/cloudflare/references/graphql-api/api.md +175 -0
  287. package/skills/cloudflare/references/graphql-api/configuration.md +118 -0
  288. package/skills/cloudflare/references/graphql-api/gotchas.md +110 -0
  289. package/skills/cloudflare/references/graphql-api/patterns.md +225 -0
  290. package/skills/cloudflare/references/hyperdrive/README.md +82 -0
  291. package/skills/cloudflare/references/hyperdrive/api.md +143 -0
  292. package/skills/cloudflare/references/hyperdrive/configuration.md +159 -0
  293. package/skills/cloudflare/references/hyperdrive/gotchas.md +77 -0
  294. package/skills/cloudflare/references/hyperdrive/patterns.md +190 -0
  295. package/skills/cloudflare/references/images/README.md +61 -0
  296. package/skills/cloudflare/references/images/api.md +96 -0
  297. package/skills/cloudflare/references/images/configuration.md +211 -0
  298. package/skills/cloudflare/references/images/gotchas.md +99 -0
  299. package/skills/cloudflare/references/images/patterns.md +115 -0
  300. package/skills/cloudflare/references/kv/README.md +89 -0
  301. package/skills/cloudflare/references/kv/api.md +160 -0
  302. package/skills/cloudflare/references/kv/configuration.md +144 -0
  303. package/skills/cloudflare/references/kv/gotchas.md +131 -0
  304. package/skills/cloudflare/references/kv/patterns.md +196 -0
  305. package/skills/cloudflare/references/miniflare/README.md +105 -0
  306. package/skills/cloudflare/references/miniflare/api.md +187 -0
  307. package/skills/cloudflare/references/miniflare/configuration.md +173 -0
  308. package/skills/cloudflare/references/miniflare/gotchas.md +160 -0
  309. package/skills/cloudflare/references/miniflare/patterns.md +181 -0
  310. package/skills/cloudflare/references/network-interconnect/README.md +99 -0
  311. package/skills/cloudflare/references/network-interconnect/api.md +199 -0
  312. package/skills/cloudflare/references/network-interconnect/configuration.md +114 -0
  313. package/skills/cloudflare/references/network-interconnect/gotchas.md +165 -0
  314. package/skills/cloudflare/references/network-interconnect/patterns.md +166 -0
  315. package/skills/cloudflare/references/observability/README.md +88 -0
  316. package/skills/cloudflare/references/observability/api.md +164 -0
  317. package/skills/cloudflare/references/observability/configuration.md +169 -0
  318. package/skills/cloudflare/references/observability/gotchas.md +115 -0
  319. package/skills/cloudflare/references/observability/patterns.md +105 -0
  320. package/skills/cloudflare/references/pages/README.md +88 -0
  321. package/skills/cloudflare/references/pages/api.md +204 -0
  322. package/skills/cloudflare/references/pages/configuration.md +201 -0
  323. package/skills/cloudflare/references/pages/gotchas.md +203 -0
  324. package/skills/cloudflare/references/pages/patterns.md +204 -0
  325. package/skills/cloudflare/references/pages-functions/README.md +98 -0
  326. package/skills/cloudflare/references/pages-functions/api.md +143 -0
  327. package/skills/cloudflare/references/pages-functions/configuration.md +122 -0
  328. package/skills/cloudflare/references/pages-functions/gotchas.md +94 -0
  329. package/skills/cloudflare/references/pages-functions/patterns.md +137 -0
  330. package/skills/cloudflare/references/pipelines/README.md +105 -0
  331. package/skills/cloudflare/references/pipelines/api.md +208 -0
  332. package/skills/cloudflare/references/pipelines/configuration.md +98 -0
  333. package/skills/cloudflare/references/pipelines/gotchas.md +80 -0
  334. package/skills/cloudflare/references/pipelines/patterns.md +87 -0
  335. package/skills/cloudflare/references/pulumi/README.md +100 -0
  336. package/skills/cloudflare/references/pulumi/api.md +200 -0
  337. package/skills/cloudflare/references/pulumi/configuration.md +198 -0
  338. package/skills/cloudflare/references/pulumi/gotchas.md +181 -0
  339. package/skills/cloudflare/references/pulumi/patterns.md +191 -0
  340. package/skills/cloudflare/references/queues/README.md +96 -0
  341. package/skills/cloudflare/references/queues/api.md +206 -0
  342. package/skills/cloudflare/references/queues/configuration.md +144 -0
  343. package/skills/cloudflare/references/queues/gotchas.md +206 -0
  344. package/skills/cloudflare/references/queues/patterns.md +220 -0
  345. package/skills/cloudflare/references/r2/README.md +95 -0
  346. package/skills/cloudflare/references/r2/api.md +200 -0
  347. package/skills/cloudflare/references/r2/configuration.md +165 -0
  348. package/skills/cloudflare/references/r2/gotchas.md +190 -0
  349. package/skills/cloudflare/references/r2/patterns.md +193 -0
  350. package/skills/cloudflare/references/r2-data-catalog/README.md +149 -0
  351. package/skills/cloudflare/references/r2-data-catalog/api.md +199 -0
  352. package/skills/cloudflare/references/r2-data-catalog/configuration.md +198 -0
  353. package/skills/cloudflare/references/r2-data-catalog/gotchas.md +170 -0
  354. package/skills/cloudflare/references/r2-data-catalog/patterns.md +191 -0
  355. package/skills/cloudflare/references/r2-sql/README.md +128 -0
  356. package/skills/cloudflare/references/r2-sql/SKILL.md.backup +512 -0
  357. package/skills/cloudflare/references/r2-sql/api.md +158 -0
  358. package/skills/cloudflare/references/r2-sql/configuration.md +147 -0
  359. package/skills/cloudflare/references/r2-sql/gotchas.md +212 -0
  360. package/skills/cloudflare/references/r2-sql/patterns.md +222 -0
  361. package/skills/cloudflare/references/realtime-sfu/README.md +65 -0
  362. package/skills/cloudflare/references/realtime-sfu/api.md +158 -0
  363. package/skills/cloudflare/references/realtime-sfu/configuration.md +137 -0
  364. package/skills/cloudflare/references/realtime-sfu/gotchas.md +133 -0
  365. package/skills/cloudflare/references/realtime-sfu/patterns.md +174 -0
  366. package/skills/cloudflare/references/realtimekit/README.md +113 -0
  367. package/skills/cloudflare/references/realtimekit/api.md +212 -0
  368. package/skills/cloudflare/references/realtimekit/configuration.md +203 -0
  369. package/skills/cloudflare/references/realtimekit/gotchas.md +169 -0
  370. package/skills/cloudflare/references/realtimekit/patterns.md +223 -0
  371. package/skills/cloudflare/references/sandbox/README.md +96 -0
  372. package/skills/cloudflare/references/sandbox/api.md +198 -0
  373. package/skills/cloudflare/references/sandbox/configuration.md +143 -0
  374. package/skills/cloudflare/references/sandbox/gotchas.md +194 -0
  375. package/skills/cloudflare/references/sandbox/patterns.md +201 -0
  376. package/skills/cloudflare/references/secrets-store/README.md +74 -0
  377. package/skills/cloudflare/references/secrets-store/api.md +200 -0
  378. package/skills/cloudflare/references/secrets-store/configuration.md +185 -0
  379. package/skills/cloudflare/references/secrets-store/gotchas.md +97 -0
  380. package/skills/cloudflare/references/secrets-store/patterns.md +207 -0
  381. package/skills/cloudflare/references/smart-placement/README.md +138 -0
  382. package/skills/cloudflare/references/smart-placement/api.md +183 -0
  383. package/skills/cloudflare/references/smart-placement/configuration.md +196 -0
  384. package/skills/cloudflare/references/smart-placement/gotchas.md +174 -0
  385. package/skills/cloudflare/references/smart-placement/patterns.md +183 -0
  386. package/skills/cloudflare/references/snippets/README.md +68 -0
  387. package/skills/cloudflare/references/snippets/api.md +198 -0
  388. package/skills/cloudflare/references/snippets/configuration.md +227 -0
  389. package/skills/cloudflare/references/snippets/gotchas.md +86 -0
  390. package/skills/cloudflare/references/snippets/patterns.md +135 -0
  391. package/skills/cloudflare/references/spectrum/README.md +52 -0
  392. package/skills/cloudflare/references/spectrum/api.md +181 -0
  393. package/skills/cloudflare/references/spectrum/configuration.md +194 -0
  394. package/skills/cloudflare/references/spectrum/gotchas.md +145 -0
  395. package/skills/cloudflare/references/spectrum/patterns.md +196 -0
  396. package/skills/cloudflare/references/static-assets/README.md +65 -0
  397. package/skills/cloudflare/references/static-assets/api.md +199 -0
  398. package/skills/cloudflare/references/static-assets/configuration.md +186 -0
  399. package/skills/cloudflare/references/static-assets/gotchas.md +162 -0
  400. package/skills/cloudflare/references/static-assets/patterns.md +189 -0
  401. package/skills/cloudflare/references/stream/README.md +114 -0
  402. package/skills/cloudflare/references/stream/api-live.md +195 -0
  403. package/skills/cloudflare/references/stream/api.md +199 -0
  404. package/skills/cloudflare/references/stream/configuration.md +141 -0
  405. package/skills/cloudflare/references/stream/gotchas.md +130 -0
  406. package/skills/cloudflare/references/stream/patterns.md +184 -0
  407. package/skills/cloudflare/references/tail-workers/README.md +89 -0
  408. package/skills/cloudflare/references/tail-workers/api.md +200 -0
  409. package/skills/cloudflare/references/tail-workers/configuration.md +176 -0
  410. package/skills/cloudflare/references/tail-workers/gotchas.md +192 -0
  411. package/skills/cloudflare/references/tail-workers/patterns.md +180 -0
  412. package/skills/cloudflare/references/terraform/README.md +102 -0
  413. package/skills/cloudflare/references/terraform/api.md +178 -0
  414. package/skills/cloudflare/references/terraform/configuration.md +197 -0
  415. package/skills/cloudflare/references/terraform/gotchas.md +150 -0
  416. package/skills/cloudflare/references/terraform/patterns.md +174 -0
  417. package/skills/cloudflare/references/tunnel/README.md +129 -0
  418. package/skills/cloudflare/references/tunnel/api.md +193 -0
  419. package/skills/cloudflare/references/tunnel/configuration.md +157 -0
  420. package/skills/cloudflare/references/tunnel/gotchas.md +147 -0
  421. package/skills/cloudflare/references/tunnel/networking.md +168 -0
  422. package/skills/cloudflare/references/tunnel/patterns.md +192 -0
  423. package/skills/cloudflare/references/turn/README.md +82 -0
  424. package/skills/cloudflare/references/turn/api.md +239 -0
  425. package/skills/cloudflare/references/turn/configuration.md +179 -0
  426. package/skills/cloudflare/references/turn/gotchas.md +231 -0
  427. package/skills/cloudflare/references/turn/patterns.md +213 -0
  428. package/skills/cloudflare/references/turnstile/README.md +99 -0
  429. package/skills/cloudflare/references/turnstile/api.md +240 -0
  430. package/skills/cloudflare/references/turnstile/configuration.md +222 -0
  431. package/skills/cloudflare/references/turnstile/gotchas.md +218 -0
  432. package/skills/cloudflare/references/turnstile/patterns.md +193 -0
  433. package/skills/cloudflare/references/vectorize/README.md +133 -0
  434. package/skills/cloudflare/references/vectorize/api.md +88 -0
  435. package/skills/cloudflare/references/vectorize/configuration.md +88 -0
  436. package/skills/cloudflare/references/vectorize/gotchas.md +76 -0
  437. package/skills/cloudflare/references/vectorize/patterns.md +90 -0
  438. package/skills/cloudflare/references/waf/README.md +113 -0
  439. package/skills/cloudflare/references/waf/api.md +202 -0
  440. package/skills/cloudflare/references/waf/configuration.md +203 -0
  441. package/skills/cloudflare/references/waf/gotchas.md +204 -0
  442. package/skills/cloudflare/references/waf/patterns.md +197 -0
  443. package/skills/cloudflare/references/web-analytics/README.md +141 -0
  444. package/skills/cloudflare/references/web-analytics/configuration.md +76 -0
  445. package/skills/cloudflare/references/web-analytics/gotchas.md +82 -0
  446. package/skills/cloudflare/references/web-analytics/integration.md +60 -0
  447. package/skills/cloudflare/references/web-analytics/patterns.md +91 -0
  448. package/skills/cloudflare/references/workerd/README.md +78 -0
  449. package/skills/cloudflare/references/workerd/api.md +185 -0
  450. package/skills/cloudflare/references/workerd/configuration.md +183 -0
  451. package/skills/cloudflare/references/workerd/gotchas.md +139 -0
  452. package/skills/cloudflare/references/workerd/patterns.md +192 -0
  453. package/skills/cloudflare/references/workers/README.md +108 -0
  454. package/skills/cloudflare/references/workers/api.md +195 -0
  455. package/skills/cloudflare/references/workers/configuration.md +185 -0
  456. package/skills/cloudflare/references/workers/frameworks.md +197 -0
  457. package/skills/cloudflare/references/workers/gotchas.md +136 -0
  458. package/skills/cloudflare/references/workers/patterns.md +198 -0
  459. package/skills/cloudflare/references/workers-ai/README.md +197 -0
  460. package/skills/cloudflare/references/workers-ai/api.md +112 -0
  461. package/skills/cloudflare/references/workers-ai/configuration.md +97 -0
  462. package/skills/cloudflare/references/workers-ai/gotchas.md +114 -0
  463. package/skills/cloudflare/references/workers-ai/patterns.md +120 -0
  464. package/skills/cloudflare/references/workers-for-platforms/README.md +89 -0
  465. package/skills/cloudflare/references/workers-for-platforms/api.md +196 -0
  466. package/skills/cloudflare/references/workers-for-platforms/configuration.md +167 -0
  467. package/skills/cloudflare/references/workers-for-platforms/gotchas.md +134 -0
  468. package/skills/cloudflare/references/workers-for-platforms/patterns.md +188 -0
  469. package/skills/cloudflare/references/workers-playground/README.md +127 -0
  470. package/skills/cloudflare/references/workers-playground/api.md +101 -0
  471. package/skills/cloudflare/references/workers-playground/configuration.md +163 -0
  472. package/skills/cloudflare/references/workers-playground/gotchas.md +88 -0
  473. package/skills/cloudflare/references/workers-playground/patterns.md +132 -0
  474. package/skills/cloudflare/references/workers-vpc/README.md +127 -0
  475. package/skills/cloudflare/references/workers-vpc/api.md +202 -0
  476. package/skills/cloudflare/references/workers-vpc/configuration.md +147 -0
  477. package/skills/cloudflare/references/workers-vpc/gotchas.md +167 -0
  478. package/skills/cloudflare/references/workers-vpc/patterns.md +209 -0
  479. package/skills/cloudflare/references/workflows/README.md +69 -0
  480. package/skills/cloudflare/references/workflows/api.md +185 -0
  481. package/skills/cloudflare/references/workflows/configuration.md +151 -0
  482. package/skills/cloudflare/references/workflows/gotchas.md +97 -0
  483. package/skills/cloudflare/references/workflows/patterns.md +175 -0
  484. package/skills/cloudflare/references/wrangler/README.md +135 -0
  485. package/skills/cloudflare/references/wrangler/api.md +188 -0
  486. package/skills/cloudflare/references/wrangler/configuration.md +197 -0
  487. package/skills/cloudflare/references/wrangler/gotchas.md +197 -0
  488. package/skills/cloudflare/references/wrangler/patterns.md +209 -0
  489. package/skills/cloudflare/references/zaraz/IMPLEMENTATION_SUMMARY.md +121 -0
  490. package/skills/cloudflare/references/zaraz/README.md +111 -0
  491. package/skills/cloudflare/references/zaraz/api.md +112 -0
  492. package/skills/cloudflare/references/zaraz/configuration.md +90 -0
  493. package/skills/cloudflare/references/zaraz/gotchas.md +81 -0
  494. package/skills/cloudflare/references/zaraz/patterns.md +74 -0
  495. package/skills/code-reviewer/SKILL.md +347 -0
  496. package/skills/code-simplifier/SKILL.md +124 -0
  497. package/skills/code-simplifier/agents/verdent.yaml +11 -0
  498. package/skills/code-simplifier/assets/icon-dark.png +0 -0
  499. package/skills/code-simplifier/assets/icon-light.png +0 -0
  500. package/skills/concept-modeler/SKILL.md +178 -0
  501. package/skills/context-engineering/SKILL.md +289 -0
  502. package/skills/copywriting/SKILL.md +252 -0
  503. package/skills/copywriting/evals/evals.json +111 -0
  504. package/skills/copywriting/references/copy-frameworks.md +344 -0
  505. package/skills/copywriting/references/natural-transitions.md +272 -0
  506. package/skills/core-web-vitals/SKILL.md +483 -0
  507. package/skills/core-web-vitals/references/LCP.md +208 -0
  508. package/skills/craft-authoring/SKILL.md +123 -0
  509. package/skills/create-design-system-rules/SKILL.md +530 -0
  510. package/skills/create-design-system-rules/agents/verdent.yaml +11 -0
  511. package/skills/create-design-system-rules/assets/icon-dark.png +0 -0
  512. package/skills/create-design-system-rules/assets/icon-light.png +0 -0
  513. package/skills/database-and-data-modeling/SKILL.md +515 -0
  514. package/skills/database-blueprints/SKILL.md +60 -0
  515. package/skills/database-blueprints/agents/verdent.yaml +13 -0
  516. package/skills/database-blueprints/assets/icon-dark.png +0 -0
  517. package/skills/database-blueprints/assets/icon-light.png +0 -0
  518. package/skills/database-blueprints/references/core-schema.md +68 -0
  519. package/skills/database-blueprints/references/migration-safety.md +55 -0
  520. package/skills/database-blueprints/references/mysql.md +50 -0
  521. package/skills/database-blueprints/references/prisma.md +47 -0
  522. package/skills/database-blueprints/references/supabase-postgres.md +63 -0
  523. package/skills/delivery-acceptance/SKILL.md +60 -0
  524. package/skills/delivery-acceptance/agents/verdent.yaml +12 -0
  525. package/skills/delivery-acceptance/assets/icon-dark.png +0 -0
  526. package/skills/delivery-acceptance/assets/icon-light.png +0 -0
  527. package/skills/delivery-acceptance/references/acceptance-checklist.md +44 -0
  528. package/skills/delivery-acceptance/references/mobile-print-file.md +19 -0
  529. package/skills/delivery-acceptance/references/playwright-smoke.md +35 -0
  530. package/skills/dependency-audit/SKILL.md +97 -0
  531. package/skills/deprecation-and-migration/SKILL.md +206 -0
  532. package/skills/design-reviewer/SKILL.md +189 -0
  533. package/skills/develop-web-game/LICENSE.txt +201 -0
  534. package/skills/develop-web-game/SKILL.md +154 -0
  535. package/skills/develop-web-game/agents/verdent.yaml +12 -0
  536. package/skills/develop-web-game/assets/game-small.svg +4 -0
  537. package/skills/develop-web-game/assets/game.png +0 -0
  538. package/skills/develop-web-game/assets/icon-dark.png +0 -0
  539. package/skills/develop-web-game/assets/icon-light.png +0 -0
  540. package/skills/develop-web-game/references/action_payloads.json +7 -0
  541. package/skills/develop-web-game/scripts/web_game_playwright_client.js +356 -0
  542. package/skills/dignified-python/SKILL.md +175 -0
  543. package/skills/dignified-python/agents/verdent.yaml +11 -0
  544. package/skills/dignified-python/assets/icon-dark.png +0 -0
  545. package/skills/dignified-python/assets/icon-light.png +0 -0
  546. package/skills/dignified-python/cli-patterns.md +156 -0
  547. package/skills/dignified-python/dignified-python-core.md +345 -0
  548. package/skills/dignified-python/references/README.md +319 -0
  549. package/skills/dignified-python/references/advanced/api-design.md +230 -0
  550. package/skills/dignified-python/references/advanced/exception-handling.md +185 -0
  551. package/skills/dignified-python/references/advanced/interfaces.md +183 -0
  552. package/skills/dignified-python/references/advanced/typing-advanced.md +158 -0
  553. package/skills/dignified-python/references/checklists.md +134 -0
  554. package/skills/dignified-python/references/module-design.md +214 -0
  555. package/skills/dignified-python/subprocess.md +99 -0
  556. package/skills/dignified-python/versions/python-3.10.md +520 -0
  557. package/skills/dignified-python/versions/python-3.11.md +538 -0
  558. package/skills/dignified-python/versions/python-3.12.md +664 -0
  559. package/skills/dignified-python/versions/python-3.13.md +657 -0
  560. package/skills/dispatching-parallel-agents/SKILL.md +182 -0
  561. package/skills/documentation-and-adrs/SKILL.md +278 -0
  562. package/skills/documentation-sync/SKILL.md +76 -0
  563. package/skills/documentation-writer/SKILL.md +50 -0
  564. package/skills/documentation-writer/agents/verdent.yaml +10 -0
  565. package/skills/documentation-writer/assets/icon-dark.png +0 -0
  566. package/skills/documentation-writer/assets/icon-light.png +0 -0
  567. package/skills/docx/SKILL.md +186 -0
  568. package/skills/docx/agents/verdent.yaml +9 -0
  569. package/skills/docx/assets/docx.png +0 -0
  570. package/skills/docx/assets/icon-dark.png +0 -0
  571. package/skills/docx/assets/icon-light.png +0 -0
  572. package/skills/docx/references/creation-guide.md +309 -0
  573. package/skills/docx/references/xml-editing-guide.md +237 -0
  574. package/skills/docx/scripts/docx_tool.py +164 -0
  575. package/skills/docx/scripts/fixtures/comments.xml +3 -0
  576. package/skills/docx/scripts/fixtures/commentsExtended.xml +3 -0
  577. package/skills/docx/scripts/fixtures/commentsExtensible.xml +3 -0
  578. package/skills/docx/scripts/fixtures/commentsIds.xml +3 -0
  579. package/skills/docx/scripts/fixtures/people.xml +3 -0
  580. package/skills/docx/scripts/internals/__init__.py +0 -0
  581. package/skills/docx/scripts/internals/content.py +307 -0
  582. package/skills/docx/scripts/internals/integrity/__init__.py +0 -0
  583. package/skills/docx/scripts/internals/integrity/foundation.py +559 -0
  584. package/skills/docx/scripts/internals/integrity/orchestrator.py +66 -0
  585. package/skills/docx/scripts/internals/integrity/revision_checker.py +181 -0
  586. package/skills/docx/scripts/internals/integrity/schema_checker.py +294 -0
  587. package/skills/docx/scripts/internals/packaging.py +193 -0
  588. package/skills/docx/scripts/internals/preprocessing/__init__.py +0 -0
  589. package/skills/docx/scripts/internals/preprocessing/revision_merger.py +193 -0
  590. package/skills/docx/scripts/internals/preprocessing/run_consolidator.py +179 -0
  591. package/skills/docx/scripts/internals/runtime/__init__.py +0 -0
  592. package/skills/docx/scripts/internals/runtime/converter.py +184 -0
  593. package/skills/docx/scripts/internals/runtime/renderer.py +60 -0
  594. package/skills/docx/scripts/internals/runtime/revision_acceptor.py +122 -0
  595. package/skills/docx/scripts/render_docx.py +296 -0
  596. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  597. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  598. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  599. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  600. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  601. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  602. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  603. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  604. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  605. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  606. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  607. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  608. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  609. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  610. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  611. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  612. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  613. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  614. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  615. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  616. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  617. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  618. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  619. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  620. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  621. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  622. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  623. package/skills/docx/scripts/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  624. package/skills/docx/scripts/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  625. package/skills/docx/scripts/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  626. package/skills/docx/scripts/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  627. package/skills/docx/scripts/schemas/mce/mc.xsd +75 -0
  628. package/skills/docx/scripts/schemas/microsoft/wml-2010.xsd +560 -0
  629. package/skills/docx/scripts/schemas/microsoft/wml-2012.xsd +67 -0
  630. package/skills/docx/scripts/schemas/microsoft/wml-2018.xsd +14 -0
  631. package/skills/docx/scripts/schemas/microsoft/wml-cex-2018.xsd +20 -0
  632. package/skills/docx/scripts/schemas/microsoft/wml-cid-2016.xsd +13 -0
  633. package/skills/docx/scripts/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  634. package/skills/docx/scripts/schemas/microsoft/wml-symex-2015.xsd +8 -0
  635. package/skills/doubt-driven-development/SKILL.md +243 -0
  636. package/skills/e2e-testing-guide/SKILL.md +204 -0
  637. package/skills/emil-design-eng/SKILL.md +679 -0
  638. package/skills/environment-and-config/SKILL.md +849 -0
  639. package/skills/error-handling/SKILL.md +757 -0
  640. package/skills/excalidraw-diagram-generator/SKILL.md +618 -0
  641. package/skills/excalidraw-diagram-generator/agents/verdent.yaml +11 -0
  642. package/skills/excalidraw-diagram-generator/assets/icon-dark.png +0 -0
  643. package/skills/excalidraw-diagram-generator/assets/icon-light.png +0 -0
  644. package/skills/excalidraw-diagram-generator/references/element-types.md +497 -0
  645. package/skills/excalidraw-diagram-generator/references/excalidraw-schema.md +350 -0
  646. package/skills/excalidraw-diagram-generator/scripts/README.md +193 -0
  647. package/skills/excalidraw-diagram-generator/scripts/add-arrow.py +312 -0
  648. package/skills/excalidraw-diagram-generator/scripts/add-icon-to-diagram.py +404 -0
  649. package/skills/excalidraw-diagram-generator/scripts/split-excalidraw-library.py +183 -0
  650. package/skills/excalidraw-diagram-generator/templates/business-flow-swimlane-template.excalidraw +334 -0
  651. package/skills/excalidraw-diagram-generator/templates/class-diagram-template.excalidraw +558 -0
  652. package/skills/excalidraw-diagram-generator/templates/data-flow-diagram-template.excalidraw +279 -0
  653. package/skills/excalidraw-diagram-generator/templates/er-diagram-template.excalidraw +662 -0
  654. package/skills/excalidraw-diagram-generator/templates/flowchart-template.excalidraw +179 -0
  655. package/skills/excalidraw-diagram-generator/templates/mindmap-template.excalidraw +244 -0
  656. package/skills/excalidraw-diagram-generator/templates/relationship-template.excalidraw +145 -0
  657. package/skills/excalidraw-diagram-generator/templates/sequence-diagram-template.excalidraw +509 -0
  658. package/skills/executing-plans/SKILL.md +245 -0
  659. package/skills/figma/LICENSE.txt +202 -0
  660. package/skills/figma/SKILL.md +53 -0
  661. package/skills/figma/agents/verdent.yaml +7 -0
  662. package/skills/figma/assets/figma.png +0 -0
  663. package/skills/figma/assets/icon-dark.png +0 -0
  664. package/skills/figma/assets/icon-light.png +0 -0
  665. package/skills/figma/assets/icon.svg +28 -0
  666. package/skills/figma/references/figma-mcp-config.md +49 -0
  667. package/skills/figma/references/figma-tools-and-prompts.md +39 -0
  668. package/skills/figma-implement-design/LICENSE.txt +202 -0
  669. package/skills/figma-implement-design/SKILL.md +265 -0
  670. package/skills/figma-implement-design/agents/verdent.yaml +7 -0
  671. package/skills/figma-implement-design/assets/figma.png +0 -0
  672. package/skills/figma-implement-design/assets/icon-dark.png +0 -0
  673. package/skills/figma-implement-design/assets/icon-light.png +0 -0
  674. package/skills/figma-implement-design/assets/icon.svg +28 -0
  675. package/skills/find-docs/SKILL.md +164 -0
  676. package/skills/find-docs/agents/verdent.yaml +11 -0
  677. package/skills/find-docs/assets/icon-dark.png +0 -0
  678. package/skills/find-docs/assets/icon-light.png +0 -0
  679. package/skills/find-skills/SKILL.md +142 -0
  680. package/skills/firecrawl/SKILL.md +131 -0
  681. package/skills/firecrawl/agents/verdent.yaml +11 -0
  682. package/skills/firecrawl/assets/icon-dark.png +0 -0
  683. package/skills/firecrawl/assets/icon-light.png +0 -0
  684. package/skills/firecrawl/rules/install.md +63 -0
  685. package/skills/firecrawl/rules/security.md +26 -0
  686. package/skills/flutter-architecting-apps/SKILL.md +164 -0
  687. package/skills/flutter-architecting-apps/agents/verdent.yaml +11 -0
  688. package/skills/flutter-architecting-apps/assets/icon-dark.png +0 -0
  689. package/skills/flutter-architecting-apps/assets/icon-light.png +0 -0
  690. package/skills/frontend-design-pro/SKILL.md +328 -0
  691. package/skills/frontend-slides/LICENSE +21 -0
  692. package/skills/frontend-slides/SKILL.md +1169 -0
  693. package/skills/frontend-slides/STYLE_PRESETS.md +561 -0
  694. package/skills/frontend-slides/agents/verdent.yaml +7 -0
  695. package/skills/frontend-slides/assets/icon-dark.png +0 -0
  696. package/skills/frontend-slides/assets/icon-light.png +0 -0
  697. package/skills/gh-cli/SKILL.md +2192 -0
  698. package/skills/gh-cli/agents/verdent.yaml +12 -0
  699. package/skills/gh-cli/assets/icon-dark.png +0 -0
  700. package/skills/gh-cli/assets/icon-light.png +0 -0
  701. package/skills/git-commit/SKILL.md +129 -0
  702. package/skills/git-commit/agents/verdent.yaml +11 -0
  703. package/skills/git-commit/assets/icon-dark.png +0 -0
  704. package/skills/git-commit/assets/icon-light.png +0 -0
  705. package/skills/git-workflow-and-versioning/SKILL.md +300 -0
  706. package/skills/graphql-operations/SKILL.md +247 -0
  707. package/skills/graphql-operations/agents/verdent.yaml +11 -0
  708. package/skills/graphql-operations/assets/icon-dark.png +0 -0
  709. package/skills/graphql-operations/assets/icon-light.png +0 -0
  710. package/skills/graphql-operations/references/fragments.md +536 -0
  711. package/skills/graphql-operations/references/mutations.md +435 -0
  712. package/skills/graphql-operations/references/queries.md +504 -0
  713. package/skills/graphql-operations/references/tooling.md +404 -0
  714. package/skills/graphql-operations/references/variables.md +440 -0
  715. package/skills/graphql-schema/SKILL.md +175 -0
  716. package/skills/graphql-schema/agents/verdent.yaml +11 -0
  717. package/skills/graphql-schema/assets/icon-dark.png +0 -0
  718. package/skills/graphql-schema/assets/icon-light.png +0 -0
  719. package/skills/graphql-schema/references/errors.md +388 -0
  720. package/skills/graphql-schema/references/naming.md +400 -0
  721. package/skills/graphql-schema/references/pagination.md +396 -0
  722. package/skills/graphql-schema/references/security.md +484 -0
  723. package/skills/graphql-schema/references/types.md +445 -0
  724. package/skills/hugging-face-model-trainer/SKILL.md +722 -0
  725. package/skills/hugging-face-model-trainer/agents/verdent.yaml +12 -0
  726. package/skills/hugging-face-model-trainer/assets/icon-dark.png +0 -0
  727. package/skills/hugging-face-model-trainer/assets/icon-light.png +0 -0
  728. package/skills/hugging-face-model-trainer/references/gguf_conversion.md +296 -0
  729. package/skills/hugging-face-model-trainer/references/hardware_guide.md +283 -0
  730. package/skills/hugging-face-model-trainer/references/hub_saving.md +364 -0
  731. package/skills/hugging-face-model-trainer/references/local_training_macos.md +231 -0
  732. package/skills/hugging-face-model-trainer/references/reliability_principles.md +371 -0
  733. package/skills/hugging-face-model-trainer/references/trackio_guide.md +189 -0
  734. package/skills/hugging-face-model-trainer/references/training_methods.md +150 -0
  735. package/skills/hugging-face-model-trainer/references/training_patterns.md +203 -0
  736. package/skills/hugging-face-model-trainer/references/troubleshooting.md +282 -0
  737. package/skills/hugging-face-model-trainer/references/unsloth.md +313 -0
  738. package/skills/hugging-face-model-trainer/scripts/convert_to_gguf.py +424 -0
  739. package/skills/hugging-face-model-trainer/scripts/dataset_inspector.py +417 -0
  740. package/skills/hugging-face-model-trainer/scripts/estimate_cost.py +150 -0
  741. package/skills/hugging-face-model-trainer/scripts/train_dpo_example.py +106 -0
  742. package/skills/hugging-face-model-trainer/scripts/train_grpo_example.py +89 -0
  743. package/skills/hugging-face-model-trainer/scripts/train_sft_example.py +122 -0
  744. package/skills/hugging-face-model-trainer/scripts/unsloth_sft_example.py +512 -0
  745. package/skills/imagegen/LICENSE.txt +201 -0
  746. package/skills/imagegen/SKILL.md +180 -0
  747. package/skills/imagegen/agents/verdent.yaml +11 -0
  748. package/skills/imagegen/assets/icon-dark.png +0 -0
  749. package/skills/imagegen/assets/icon-light.png +0 -0
  750. package/skills/imagegen/assets/imagegen-small.svg +5 -0
  751. package/skills/imagegen/assets/imagegen.png +0 -0
  752. package/skills/imagegen/references/cli.md +132 -0
  753. package/skills/imagegen/references/image-api.md +36 -0
  754. package/skills/imagegen/references/network-notes.md +28 -0
  755. package/skills/imagegen/references/prompting.md +81 -0
  756. package/skills/imagegen/references/sample-prompts.md +384 -0
  757. package/skills/imagegen/scripts/image_gen.py +876 -0
  758. package/skills/impeccable/SKILL.md +450 -0
  759. package/skills/impeccable/reference/adapt.md +190 -0
  760. package/skills/impeccable/reference/animate.md +175 -0
  761. package/skills/impeccable/reference/audit.md +133 -0
  762. package/skills/impeccable/reference/bolder.md +113 -0
  763. package/skills/impeccable/reference/brand.md +114 -0
  764. package/skills/impeccable/reference/clarify.md +174 -0
  765. package/skills/impeccable/reference/cognitive-load.md +106 -0
  766. package/skills/impeccable/reference/color-and-contrast.md +105 -0
  767. package/skills/impeccable/reference/colorize.md +154 -0
  768. package/skills/impeccable/reference/craft.md +193 -0
  769. package/skills/impeccable/reference/critique.md +213 -0
  770. package/skills/impeccable/reference/delight.md +302 -0
  771. package/skills/impeccable/reference/distill.md +111 -0
  772. package/skills/impeccable/reference/document.md +427 -0
  773. package/skills/impeccable/reference/extract.md +69 -0
  774. package/skills/impeccable/reference/harden.md +347 -0
  775. package/skills/impeccable/reference/heuristics-scoring.md +234 -0
  776. package/skills/impeccable/reference/interaction-design.md +195 -0
  777. package/skills/impeccable/reference/layout.md +141 -0
  778. package/skills/impeccable/reference/live.md +622 -0
  779. package/skills/impeccable/reference/motion-design.md +109 -0
  780. package/skills/impeccable/reference/onboard.md +234 -0
  781. package/skills/impeccable/reference/optimize.md +258 -0
  782. package/skills/impeccable/reference/overdrive.md +130 -0
  783. package/skills/impeccable/reference/personas.md +179 -0
  784. package/skills/impeccable/reference/polish.md +233 -0
  785. package/skills/impeccable/reference/product.md +62 -0
  786. package/skills/impeccable/reference/quieter.md +99 -0
  787. package/skills/impeccable/reference/responsive-design.md +114 -0
  788. package/skills/impeccable/reference/shape.md +151 -0
  789. package/skills/impeccable/reference/spatial-design.md +100 -0
  790. package/skills/impeccable/reference/teach.md +156 -0
  791. package/skills/impeccable/reference/typeset.md +124 -0
  792. package/skills/impeccable/reference/typography.md +159 -0
  793. package/skills/impeccable/reference/ux-writing.md +107 -0
  794. package/skills/impeccable/references/A11Y-PATTERNS.md +233 -0
  795. package/skills/impeccable/references/WCAG.md +191 -0
  796. package/skills/impeccable/scripts/cleanup-deprecated.mjs +284 -0
  797. package/skills/impeccable/scripts/command-metadata.json +94 -0
  798. package/skills/impeccable/scripts/design-parser.mjs +820 -0
  799. package/skills/impeccable/scripts/detect-csp.mjs +198 -0
  800. package/skills/impeccable/scripts/impeccable-paths.mjs +105 -0
  801. package/skills/impeccable/scripts/is-generated.mjs +69 -0
  802. package/skills/impeccable/scripts/live-accept.mjs +595 -0
  803. package/skills/impeccable/scripts/live-browser-session.js +123 -0
  804. package/skills/impeccable/scripts/live-browser.js +4860 -0
  805. package/skills/impeccable/scripts/live-complete.mjs +75 -0
  806. package/skills/impeccable/scripts/live-completion.mjs +18 -0
  807. package/skills/impeccable/scripts/live-inject.mjs +446 -0
  808. package/skills/impeccable/scripts/live-poll.mjs +200 -0
  809. package/skills/impeccable/scripts/live-resume.mjs +48 -0
  810. package/skills/impeccable/scripts/live-server.mjs +836 -0
  811. package/skills/impeccable/scripts/live-session-store.mjs +254 -0
  812. package/skills/impeccable/scripts/live-status.mjs +47 -0
  813. package/skills/impeccable/scripts/live-wrap.mjs +632 -0
  814. package/skills/impeccable/scripts/live.mjs +247 -0
  815. package/skills/impeccable/scripts/load-context.mjs +141 -0
  816. package/skills/impeccable/scripts/modern-screenshot.umd.js +14 -0
  817. package/skills/impeccable/scripts/pin.mjs +214 -0
  818. package/skills/improve-codebase-architecture/DEEPENING.md +37 -0
  819. package/skills/improve-codebase-architecture/INTERFACE-DESIGN.md +44 -0
  820. package/skills/improve-codebase-architecture/LANGUAGE.md +53 -0
  821. package/skills/improve-codebase-architecture/SKILL.md +331 -0
  822. package/skills/incident-response/SKILL.md +97 -0
  823. package/skills/interview-me/SKILL.md +221 -0
  824. package/skills/knowledge-base-update/SKILL.md +90 -0
  825. package/skills/langchain-rag/SKILL.md +522 -0
  826. package/skills/langchain-rag/agents/verdent.yaml +12 -0
  827. package/skills/langchain-rag/assets/icon-dark.png +0 -0
  828. package/skills/langchain-rag/assets/icon-light.png +0 -0
  829. package/skills/linear/LICENSE.txt +202 -0
  830. package/skills/linear/SKILL.md +102 -0
  831. package/skills/linear/agents/verdent.yaml +7 -0
  832. package/skills/linear/assets/icon-dark.png +0 -0
  833. package/skills/linear/assets/icon-light.png +0 -0
  834. package/skills/linear/assets/linear.png +0 -0
  835. package/skills/localization-hub/ai-batch.md +23 -0
  836. package/skills/localization-hub/key-naming.md +15 -0
  837. package/skills/localization-hub/route-slugs.md +14 -0
  838. package/skills/mcp-builder/LICENSE.txt +202 -0
  839. package/skills/mcp-builder/SKILL.md +260 -0
  840. package/skills/mcp-builder/agents/verdent.yaml +7 -0
  841. package/skills/mcp-builder/assets/icon-dark.png +0 -0
  842. package/skills/mcp-builder/assets/icon-light.png +0 -0
  843. package/skills/mcp-builder/reference/mcp_best_practices.md +269 -0
  844. package/skills/mcp-builder/reference/node_mcp_server.md +980 -0
  845. package/skills/mcp-builder/reference/python_mcp_server.md +737 -0
  846. package/skills/mcp-builder/scripts/connections.py +151 -0
  847. package/skills/netlify-deploy/LICENSE.txt +201 -0
  848. package/skills/netlify-deploy/SKILL.md +261 -0
  849. package/skills/netlify-deploy/agents/verdent.yaml +7 -0
  850. package/skills/netlify-deploy/assets/icon-dark.png +0 -0
  851. package/skills/netlify-deploy/assets/icon-light.png +0 -0
  852. package/skills/netlify-deploy/assets/netlify.png +0 -0
  853. package/skills/netlify-deploy/references/cli-commands.md +162 -0
  854. package/skills/netlify-deploy/references/deployment-patterns.md +319 -0
  855. package/skills/netlify-deploy/references/netlify-toml.md +259 -0
  856. package/skills/nexus-mapper/SKILL.md +314 -0
  857. package/skills/nexus-mapper/references/language-customization.md +164 -0
  858. package/skills/nexus-mapper/references/output-schema.md +298 -0
  859. package/skills/nexus-mapper/references/probe-protocol.md +246 -0
  860. package/skills/nexus-mapper/scripts/extract_ast.py +705 -0
  861. package/skills/nexus-mapper/scripts/git_detective.py +194 -0
  862. package/skills/nexus-mapper/scripts/languages.json +127 -0
  863. package/skills/nexus-mapper/scripts/query_graph.py +556 -0
  864. package/skills/nexus-mapper/scripts/requirements.txt +6 -0
  865. package/skills/notion-spec-to-implementation/LICENSE.txt +7 -0
  866. package/skills/notion-spec-to-implementation/SKILL.md +67 -0
  867. package/skills/notion-spec-to-implementation/agents/verdent.yaml +7 -0
  868. package/skills/notion-spec-to-implementation/assets/icon-dark.png +0 -0
  869. package/skills/notion-spec-to-implementation/assets/icon-light.png +0 -0
  870. package/skills/notion-spec-to-implementation/assets/notion.png +0 -0
  871. package/skills/notion-spec-to-implementation/evaluations/README.md +130 -0
  872. package/skills/notion-spec-to-implementation/evaluations/basic-spec-implementation.json +31 -0
  873. package/skills/notion-spec-to-implementation/evaluations/spec-to-tasks.json +34 -0
  874. package/skills/notion-spec-to-implementation/examples/api-feature.md +511 -0
  875. package/skills/notion-spec-to-implementation/examples/database-migration.md +89 -0
  876. package/skills/notion-spec-to-implementation/examples/ui-component.md +78 -0
  877. package/skills/notion-spec-to-implementation/reference/milestone-summary-template.md +31 -0
  878. package/skills/notion-spec-to-implementation/reference/progress-tracking.md +507 -0
  879. package/skills/notion-spec-to-implementation/reference/progress-update-template.md +29 -0
  880. package/skills/notion-spec-to-implementation/reference/quick-implementation-plan.md +30 -0
  881. package/skills/notion-spec-to-implementation/reference/spec-parsing.md +406 -0
  882. package/skills/notion-spec-to-implementation/reference/standard-implementation-plan.md +170 -0
  883. package/skills/notion-spec-to-implementation/reference/task-creation-template.md +40 -0
  884. package/skills/notion-spec-to-implementation/reference/task-creation.md +467 -0
  885. package/skills/pdf/LICENSE.txt +201 -0
  886. package/skills/pdf/SKILL.md +715 -0
  887. package/skills/pdf/agents/verdent.yaml +9 -0
  888. package/skills/pdf/assets/icon-dark.png +0 -0
  889. package/skills/pdf/assets/icon-light.png +0 -0
  890. package/skills/pdf/assets/pdf.png +0 -0
  891. package/skills/pdf/reference.md +221 -0
  892. package/skills/performance/SKILL.md +400 -0
  893. package/skills/playwright/LICENSE.txt +201 -0
  894. package/skills/playwright/NOTICE.txt +14 -0
  895. package/skills/playwright/SKILL.md +151 -0
  896. package/skills/playwright/agents/verdent.yaml +7 -0
  897. package/skills/playwright/assets/icon-dark.png +0 -0
  898. package/skills/playwright/assets/icon-light.png +0 -0
  899. package/skills/playwright/assets/playwright.png +0 -0
  900. package/skills/playwright/references/cli.md +116 -0
  901. package/skills/playwright/references/workflows.md +95 -0
  902. package/skills/playwright/scripts/playwright_cli.sh +25 -0
  903. package/skills/playwriter/SKILL.md +69 -0
  904. package/skills/playwriter/agents/verdent.yaml +7 -0
  905. package/skills/playwriter/assets/icon-dark.png +0 -0
  906. package/skills/playwriter/assets/icon-light.png +0 -0
  907. package/skills/pptx/SKILL.md +302 -0
  908. package/skills/pptx/agents/verdent.yaml +9 -0
  909. package/skills/pptx/assets/icon-dark.png +0 -0
  910. package/skills/pptx/assets/icon-light.png +0 -0
  911. package/skills/pptx/references/generate-with-js.md +412 -0
  912. package/skills/pptx/references/modify-workflow.md +157 -0
  913. package/skills/pptx/references/python-charts.md +91 -0
  914. package/skills/pptx/scripts/check_env.py +207 -0
  915. package/skills/pptx/scripts/deck.py +161 -0
  916. package/skills/pptx/scripts/internals/__init__.py +0 -0
  917. package/skills/pptx/scripts/internals/cleanup.py +194 -0
  918. package/skills/pptx/scripts/internals/content.py +62 -0
  919. package/skills/pptx/scripts/internals/create.py +122 -0
  920. package/skills/pptx/scripts/internals/gridshot.py +181 -0
  921. package/skills/pptx/scripts/internals/imaging.py +77 -0
  922. package/skills/pptx/scripts/internals/integrity/__init__.py +0 -0
  923. package/skills/pptx/scripts/internals/integrity/checks.py +318 -0
  924. package/skills/pptx/scripts/internals/packaging.py +127 -0
  925. package/skills/pptx/scripts/internals/runtime/__init__.py +0 -0
  926. package/skills/pptx/scripts/internals/runtime/converter.py +154 -0
  927. package/skills/pptx/scripts/internals/structure.py +162 -0
  928. package/skills/pr-creator/SKILL.md +98 -0
  929. package/skills/pr-creator/agents/verdent.yaml +11 -0
  930. package/skills/pr-creator/assets/icon-dark.png +0 -0
  931. package/skills/pr-creator/assets/icon-light.png +0 -0
  932. package/skills/prd/SKILL.md +148 -0
  933. package/skills/prd/agents/verdent.yaml +11 -0
  934. package/skills/prd/assets/icon-dark.png +0 -0
  935. package/skills/prd/assets/icon-light.png +0 -0
  936. package/skills/prismx-skill-gateway/SKILL.md +186 -0
  937. package/skills/prismx-skill-gateway/references/installed-skills.md +38 -0
  938. package/skills/prismx-skills-catalog/SKILL.md +51 -0
  939. package/skills/prismx-skills-catalog/references/inventory.json +1092 -0
  940. package/skills/prompt-enhancer/SKILL.md +90 -0
  941. package/skills/react-native-best-practices/SKILL.md +241 -0
  942. package/skills/react-native-best-practices/agents/verdent.yaml +11 -0
  943. package/skills/react-native-best-practices/assets/icon-dark.png +0 -0
  944. package/skills/react-native-best-practices/assets/icon-light.png +0 -0
  945. package/skills/react-native-best-practices/references/bundle-analyze-app.md +211 -0
  946. package/skills/react-native-best-practices/references/bundle-analyze-js.md +262 -0
  947. package/skills/react-native-best-practices/references/bundle-barrel-exports.md +248 -0
  948. package/skills/react-native-best-practices/references/bundle-code-splitting.md +224 -0
  949. package/skills/react-native-best-practices/references/bundle-hermes-mmap.md +167 -0
  950. package/skills/react-native-best-practices/references/bundle-library-size.md +177 -0
  951. package/skills/react-native-best-practices/references/bundle-native-assets.md +214 -0
  952. package/skills/react-native-best-practices/references/bundle-r8-android.md +225 -0
  953. package/skills/react-native-best-practices/references/bundle-tree-shaking.md +214 -0
  954. package/skills/react-native-best-practices/references/images/bundle-treemap-source-map-explorer.png +0 -0
  955. package/skills/react-native-best-practices/references/images/controlled-textinput-pingpong.png +0 -0
  956. package/skills/react-native-best-practices/references/images/devtools-flamegraph.png +0 -0
  957. package/skills/react-native-best-practices/references/images/emerge-xray-ios.png +0 -0
  958. package/skills/react-native-best-practices/references/images/expo-atlas-treemap.png +0 -0
  959. package/skills/react-native-best-practices/references/images/flashlight-flatlist-vs-flashlist.png +0 -0
  960. package/skills/react-native-best-practices/references/images/fps-drop-graph.png +0 -0
  961. package/skills/react-native-best-practices/references/images/memory-heap-snapshot.png +0 -0
  962. package/skills/react-native-best-practices/references/images/tti-warm-start-diagram.png +0 -0
  963. package/skills/react-native-best-practices/references/images/view-hierarchy-flattening.png +0 -0
  964. package/skills/react-native-best-practices/references/images/xcode-instruments-templates.png +0 -0
  965. package/skills/react-native-best-practices/references/images/xcode-thread-view.png +0 -0
  966. package/skills/react-native-best-practices/references/js-animations-reanimated.md +254 -0
  967. package/skills/react-native-best-practices/references/js-atomic-state.md +245 -0
  968. package/skills/react-native-best-practices/references/js-concurrent-react.md +236 -0
  969. package/skills/react-native-best-practices/references/js-lists-flatlist-flashlist.md +236 -0
  970. package/skills/react-native-best-practices/references/js-measure-fps.md +180 -0
  971. package/skills/react-native-best-practices/references/js-memory-leaks.md +205 -0
  972. package/skills/react-native-best-practices/references/js-profile-react.md +161 -0
  973. package/skills/react-native-best-practices/references/js-react-compiler.md +368 -0
  974. package/skills/react-native-best-practices/references/js-uncontrolled-components.md +216 -0
  975. package/skills/react-native-best-practices/references/native-android-16kb-alignment.md +113 -0
  976. package/skills/react-native-best-practices/references/native-measure-tti.md +262 -0
  977. package/skills/react-native-best-practices/references/native-memory-leaks.md +240 -0
  978. package/skills/react-native-best-practices/references/native-memory-patterns.md +274 -0
  979. package/skills/react-native-best-practices/references/native-platform-setup.md +110 -0
  980. package/skills/react-native-best-practices/references/native-profiling.md +176 -0
  981. package/skills/react-native-best-practices/references/native-sdks-over-polyfills.md +183 -0
  982. package/skills/react-native-best-practices/references/native-threading-model.md +234 -0
  983. package/skills/react-native-best-practices/references/native-turbo-modules.md +292 -0
  984. package/skills/react-native-best-practices/references/native-view-flattening.md +201 -0
  985. package/skills/redis-development/FULL_GUIDE.md +2216 -0
  986. package/skills/redis-development/SKILL.md +124 -0
  987. package/skills/redis-development/agents/verdent.yaml +12 -0
  988. package/skills/redis-development/assets/icon-dark.png +0 -0
  989. package/skills/redis-development/assets/icon-light.png +0 -0
  990. package/skills/redis-development/assets/logo.png +0 -0
  991. package/skills/redis-development/rules/_contributing.md +97 -0
  992. package/skills/redis-development/rules/_sections.md +50 -0
  993. package/skills/redis-development/rules/_template.md +52 -0
  994. package/skills/redis-development/rules/cluster-hash-tags.md +78 -0
  995. package/skills/redis-development/rules/cluster-read-replicas.md +55 -0
  996. package/skills/redis-development/rules/conn-blocking.md +75 -0
  997. package/skills/redis-development/rules/conn-client-cache.md +70 -0
  998. package/skills/redis-development/rules/conn-pipelining.md +58 -0
  999. package/skills/redis-development/rules/conn-pooling.md +71 -0
  1000. package/skills/redis-development/rules/conn-timeouts.md +41 -0
  1001. package/skills/redis-development/rules/data-choose-structure.md +76 -0
  1002. package/skills/redis-development/rules/data-hash-field-expiry.md +62 -0
  1003. package/skills/redis-development/rules/data-incr.md +76 -0
  1004. package/skills/redis-development/rules/data-key-naming.md +62 -0
  1005. package/skills/redis-development/rules/data-transactions.md +74 -0
  1006. package/skills/redis-development/rules/json-partial-updates.md +49 -0
  1007. package/skills/redis-development/rules/json-vs-hash.md +105 -0
  1008. package/skills/redis-development/rules/observe-commands.md +53 -0
  1009. package/skills/redis-development/rules/observe-metrics.md +39 -0
  1010. package/skills/redis-development/rules/ram-limits.md +42 -0
  1011. package/skills/redis-development/rules/ram-ttl.md +55 -0
  1012. package/skills/redis-development/rules/rqe-dialect.md +47 -0
  1013. package/skills/redis-development/rules/rqe-field-types.md +81 -0
  1014. package/skills/redis-development/rules/rqe-index-creation.md +73 -0
  1015. package/skills/redis-development/rules/rqe-index-management.md +49 -0
  1016. package/skills/redis-development/rules/rqe-query-optimization.md +49 -0
  1017. package/skills/redis-development/rules/rqe-skip-initial-scan.md +82 -0
  1018. package/skills/redis-development/rules/security-acls.md +41 -0
  1019. package/skills/redis-development/rules/security-auth.md +78 -0
  1020. package/skills/redis-development/rules/security-network.md +52 -0
  1021. package/skills/redis-development/rules/semantic-cache-best-practices.md +72 -0
  1022. package/skills/redis-development/rules/semantic-cache-langcache-usage.md +86 -0
  1023. package/skills/redis-development/rules/stream-choosing-pattern.md +44 -0
  1024. package/skills/redis-development/rules/vector-algorithm-choice.md +60 -0
  1025. package/skills/redis-development/rules/vector-hybrid-search.md +49 -0
  1026. package/skills/redis-development/rules/vector-index-creation.md +83 -0
  1027. package/skills/redis-development/rules/vector-rag-pattern.md +51 -0
  1028. package/skills/refactor/agents/verdent.yaml +11 -0
  1029. package/skills/refactor/assets/icon-dark.png +0 -0
  1030. package/skills/refactor/assets/icon-light.png +0 -0
  1031. package/skills/runtime-inspector/SKILL.md +99 -0
  1032. package/skills/schema-markup/SKILL.md +179 -0
  1033. package/skills/schema-markup/evals/evals.json +87 -0
  1034. package/skills/schema-markup/references/schema-examples.md +398 -0
  1035. package/skills/screenshot/LICENSE.txt +201 -0
  1036. package/skills/screenshot/SKILL.md +271 -0
  1037. package/skills/screenshot/agents/verdent.yaml +7 -0
  1038. package/skills/screenshot/assets/icon-dark.png +0 -0
  1039. package/skills/screenshot/assets/icon-light.png +0 -0
  1040. package/skills/screenshot/assets/screenshot.png +0 -0
  1041. package/skills/screenshot/scripts/ensure_macos_permissions.sh +54 -0
  1042. package/skills/screenshot/scripts/macos_display_info.swift +22 -0
  1043. package/skills/screenshot/scripts/macos_permissions.swift +40 -0
  1044. package/skills/screenshot/scripts/macos_window_info.swift +126 -0
  1045. package/skills/screenshot/scripts/take_screenshot.ps1 +163 -0
  1046. package/skills/screenshot/scripts/take_screenshot.py +585 -0
  1047. package/skills/security-and-hardening/SKILL.md +349 -0
  1048. package/skills/security-best-practices/LICENSE.txt +201 -0
  1049. package/skills/security-best-practices/SKILL.md +91 -0
  1050. package/skills/security-best-practices/agents/verdent.yaml +7 -0
  1051. package/skills/security-best-practices/assets/icon-dark.png +0 -0
  1052. package/skills/security-best-practices/assets/icon-light.png +0 -0
  1053. package/skills/security-best-practices/references/golang-general-backend-security.md +988 -0
  1054. package/skills/security-best-practices/references/javascript-express-web-server-security.md +1151 -0
  1055. package/skills/security-best-practices/references/javascript-general-web-frontend-security.md +725 -0
  1056. package/skills/security-best-practices/references/javascript-jquery-web-frontend-security.md +672 -0
  1057. package/skills/security-best-practices/references/javascript-typescript-nextjs-web-server-security.md +1138 -0
  1058. package/skills/security-best-practices/references/javascript-typescript-react-web-frontend-security.md +975 -0
  1059. package/skills/security-best-practices/references/javascript-typescript-vue-web-frontend-security.md +789 -0
  1060. package/skills/security-best-practices/references/python-django-web-server-security.md +880 -0
  1061. package/skills/security-best-practices/references/python-fastapi-web-server-security.md +1030 -0
  1062. package/skills/security-best-practices/references/python-flask-web-server-security.md +835 -0
  1063. package/skills/security-ownership-map/LICENSE.txt +201 -0
  1064. package/skills/security-ownership-map/SKILL.md +212 -0
  1065. package/skills/security-ownership-map/agents/verdent.yaml +12 -0
  1066. package/skills/security-ownership-map/assets/icon-dark.png +0 -0
  1067. package/skills/security-ownership-map/assets/icon-light.png +0 -0
  1068. package/skills/security-ownership-map/references/neo4j-import.md +60 -0
  1069. package/skills/security-ownership-map/scripts/build_ownership_map.py +956 -0
  1070. package/skills/security-ownership-map/scripts/community_maintainers.py +544 -0
  1071. package/skills/security-ownership-map/scripts/query_ownership.py +483 -0
  1072. package/skills/security-ownership-map/scripts/run_ownership_map.py +200 -0
  1073. package/skills/security-threat-model/LICENSE.txt +201 -0
  1074. package/skills/security-threat-model/SKILL.md +94 -0
  1075. package/skills/security-threat-model/agents/verdent.yaml +7 -0
  1076. package/skills/security-threat-model/assets/icon-dark.png +0 -0
  1077. package/skills/security-threat-model/assets/icon-light.png +0 -0
  1078. package/skills/security-threat-model/references/prompt-template.md +254 -0
  1079. package/skills/security-threat-model/references/security-controls-and-assets.md +35 -0
  1080. package/skills/seo-audit/SKILL.md +527 -0
  1081. package/skills/seo-audit/evals/evals.json +136 -0
  1082. package/skills/seo-audit/references/ai-writing-detection.md +200 -0
  1083. package/skills/seo-audit/references/international-seo.md +230 -0
  1084. package/skills/sequential-thinking/SKILL.md +224 -0
  1085. package/skills/session-context-primer/SKILL.md +69 -0
  1086. package/skills/shipping-and-launch/SKILL.md +309 -0
  1087. package/skills/source-driven-development/SKILL.md +194 -0
  1088. package/skills/spec-writer/SKILL.md +200 -0
  1089. package/skills/speech/LICENSE.txt +201 -0
  1090. package/skills/speech/SKILL.md +150 -0
  1091. package/skills/speech/agents/verdent.yaml +12 -0
  1092. package/skills/speech/assets/icon-dark.png +0 -0
  1093. package/skills/speech/assets/icon-light.png +0 -0
  1094. package/skills/speech/assets/speech-small.svg +3 -0
  1095. package/skills/speech/assets/speech.png +0 -0
  1096. package/skills/speech/references/accessibility.md +32 -0
  1097. package/skills/speech/references/audio-api.md +31 -0
  1098. package/skills/speech/references/cli.md +99 -0
  1099. package/skills/speech/references/ivr.md +32 -0
  1100. package/skills/speech/references/narration.md +31 -0
  1101. package/skills/speech/references/network-notes.md +28 -0
  1102. package/skills/speech/references/prompting.md +38 -0
  1103. package/skills/speech/references/sample-prompts.md +44 -0
  1104. package/skills/speech/references/voice-directions.md +80 -0
  1105. package/skills/speech/references/voiceover.md +31 -0
  1106. package/skills/speech/scripts/text_to_speech.py +528 -0
  1107. package/skills/system-architect/SKILL.md +677 -0
  1108. package/skills/system-designer/SKILL.md +601 -0
  1109. package/skills/systematic-debugging/CREATION-LOG.md +119 -0
  1110. package/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  1111. package/skills/systematic-debugging/condition-based-waiting.md +115 -0
  1112. package/skills/systematic-debugging/defense-in-depth.md +122 -0
  1113. package/skills/systematic-debugging/find-polluter.sh +63 -0
  1114. package/skills/systematic-debugging/root-cause-tracing.md +169 -0
  1115. package/skills/systematic-debugging/test-academic.md +14 -0
  1116. package/skills/systematic-debugging/test-pressure-1.md +58 -0
  1117. package/skills/systematic-debugging/test-pressure-2.md +68 -0
  1118. package/skills/systematic-debugging/test-pressure-3.md +69 -0
  1119. package/skills/task-planner/SKILL.md +699 -0
  1120. package/skills/task-reviewer/SKILL.md +387 -0
  1121. package/skills/task-skill-router/SKILL.md +105 -0
  1122. package/skills/tech-evaluator/SKILL.md +181 -0
  1123. package/skills/tech-evaluator/references/ADR_TEMPLATE.md +80 -0
  1124. package/skills/tech-evaluator/scripts/evaluate_matrix.py +190 -0
  1125. package/skills/test-driven-development/SKILL.md +383 -0
  1126. package/skills/test-driven-development/testing-anti-patterns.md +299 -0
  1127. package/skills/theme-factory/LICENSE.txt +202 -0
  1128. package/skills/theme-factory/SKILL.md +64 -0
  1129. package/skills/theme-factory/agents/verdent.yaml +11 -0
  1130. package/skills/theme-factory/assets/icon-dark.png +0 -0
  1131. package/skills/theme-factory/assets/icon-light.png +0 -0
  1132. package/skills/theme-factory/theme-showcase.pdf +0 -0
  1133. package/skills/theme-factory/themes/arctic-frost.md +19 -0
  1134. package/skills/theme-factory/themes/botanical-garden.md +19 -0
  1135. package/skills/theme-factory/themes/desert-rose.md +19 -0
  1136. package/skills/theme-factory/themes/forest-canopy.md +19 -0
  1137. package/skills/theme-factory/themes/golden-hour.md +19 -0
  1138. package/skills/theme-factory/themes/midnight-galaxy.md +19 -0
  1139. package/skills/theme-factory/themes/modern-minimalist.md +19 -0
  1140. package/skills/theme-factory/themes/ocean-depths.md +19 -0
  1141. package/skills/theme-factory/themes/sunset-boulevard.md +19 -0
  1142. package/skills/theme-factory/themes/tech-innovation.md +19 -0
  1143. package/skills/transcribe/LICENSE.txt +201 -0
  1144. package/skills/transcribe/SKILL.md +86 -0
  1145. package/skills/transcribe/agents/verdent.yaml +12 -0
  1146. package/skills/transcribe/assets/icon-dark.png +0 -0
  1147. package/skills/transcribe/assets/icon-light.png +0 -0
  1148. package/skills/transcribe/assets/transcribe-small.svg +3 -0
  1149. package/skills/transcribe/assets/transcribe.png +0 -0
  1150. package/skills/transcribe/references/api.md +8 -0
  1151. package/skills/transcribe/scripts/transcribe_diarize.py +276 -0
  1152. package/skills/vercel-composition-patterns/FULL_GUIDE.md +946 -0
  1153. package/skills/vercel-composition-patterns/SKILL.md +92 -0
  1154. package/skills/vercel-composition-patterns/agents/verdent.yaml +12 -0
  1155. package/skills/vercel-composition-patterns/assets/icon-dark.png +0 -0
  1156. package/skills/vercel-composition-patterns/assets/icon-light.png +0 -0
  1157. package/skills/vercel-composition-patterns/rules/_sections.md +29 -0
  1158. package/skills/vercel-composition-patterns/rules/_template.md +24 -0
  1159. package/skills/vercel-composition-patterns/rules/architecture-avoid-boolean-props.md +100 -0
  1160. package/skills/vercel-composition-patterns/rules/architecture-compound-components.md +112 -0
  1161. package/skills/vercel-composition-patterns/rules/patterns-children-over-render-props.md +87 -0
  1162. package/skills/vercel-composition-patterns/rules/patterns-explicit-variants.md +100 -0
  1163. package/skills/vercel-composition-patterns/rules/react19-no-forwardref.md +42 -0
  1164. package/skills/vercel-composition-patterns/rules/state-context-interface.md +191 -0
  1165. package/skills/vercel-composition-patterns/rules/state-decouple-implementation.md +113 -0
  1166. package/skills/vercel-composition-patterns/rules/state-lift-state.md +125 -0
  1167. package/skills/vercel-deploy/LICENSE.txt +21 -0
  1168. package/skills/vercel-deploy/SKILL.md +75 -0
  1169. package/skills/vercel-deploy/agents/verdent.yaml +7 -0
  1170. package/skills/vercel-deploy/assets/icon-dark.png +0 -0
  1171. package/skills/vercel-deploy/assets/icon-light.png +0 -0
  1172. package/skills/vercel-deploy/assets/vercel.png +0 -0
  1173. package/skills/vercel-deploy/scripts/deploy.sh +301 -0
  1174. package/skills/vercel-react-best-practices/FULL_GUIDE.md +3254 -0
  1175. package/skills/vercel-react-best-practices/SKILL.md +144 -0
  1176. package/skills/vercel-react-best-practices/agents/verdent.yaml +12 -0
  1177. package/skills/vercel-react-best-practices/assets/icon-dark.png +0 -0
  1178. package/skills/vercel-react-best-practices/assets/icon-light.png +0 -0
  1179. package/skills/vercel-react-best-practices/rules/_sections.md +46 -0
  1180. package/skills/vercel-react-best-practices/rules/_template.md +28 -0
  1181. package/skills/vercel-react-best-practices/rules/advanced-event-handler-refs.md +55 -0
  1182. package/skills/vercel-react-best-practices/rules/advanced-init-once.md +42 -0
  1183. package/skills/vercel-react-best-practices/rules/advanced-use-latest.md +39 -0
  1184. package/skills/vercel-react-best-practices/rules/async-api-routes.md +38 -0
  1185. package/skills/vercel-react-best-practices/rules/async-defer-await.md +80 -0
  1186. package/skills/vercel-react-best-practices/rules/async-dependencies.md +51 -0
  1187. package/skills/vercel-react-best-practices/rules/async-parallel.md +28 -0
  1188. package/skills/vercel-react-best-practices/rules/async-suspense-boundaries.md +99 -0
  1189. package/skills/vercel-react-best-practices/rules/bundle-barrel-imports.md +59 -0
  1190. package/skills/vercel-react-best-practices/rules/bundle-conditional.md +31 -0
  1191. package/skills/vercel-react-best-practices/rules/bundle-defer-third-party.md +49 -0
  1192. package/skills/vercel-react-best-practices/rules/bundle-dynamic-imports.md +35 -0
  1193. package/skills/vercel-react-best-practices/rules/bundle-preload.md +50 -0
  1194. package/skills/vercel-react-best-practices/rules/client-event-listeners.md +74 -0
  1195. package/skills/vercel-react-best-practices/rules/client-localstorage-schema.md +71 -0
  1196. package/skills/vercel-react-best-practices/rules/client-passive-event-listeners.md +48 -0
  1197. package/skills/vercel-react-best-practices/rules/client-swr-dedup.md +56 -0
  1198. package/skills/vercel-react-best-practices/rules/js-batch-dom-css.md +107 -0
  1199. package/skills/vercel-react-best-practices/rules/js-cache-function-results.md +80 -0
  1200. package/skills/vercel-react-best-practices/rules/js-cache-property-access.md +28 -0
  1201. package/skills/vercel-react-best-practices/rules/js-cache-storage.md +70 -0
  1202. package/skills/vercel-react-best-practices/rules/js-combine-iterations.md +32 -0
  1203. package/skills/vercel-react-best-practices/rules/js-early-exit.md +50 -0
  1204. package/skills/vercel-react-best-practices/rules/js-flatmap-filter.md +60 -0
  1205. package/skills/vercel-react-best-practices/rules/js-hoist-regexp.md +45 -0
  1206. package/skills/vercel-react-best-practices/rules/js-index-maps.md +37 -0
  1207. package/skills/vercel-react-best-practices/rules/js-length-check-first.md +49 -0
  1208. package/skills/vercel-react-best-practices/rules/js-min-max-loop.md +82 -0
  1209. package/skills/vercel-react-best-practices/rules/js-set-map-lookups.md +24 -0
  1210. package/skills/vercel-react-best-practices/rules/js-tosorted-immutable.md +57 -0
  1211. package/skills/vercel-react-best-practices/rules/rendering-activity.md +26 -0
  1212. package/skills/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
  1213. package/skills/vercel-react-best-practices/rules/rendering-conditional-render.md +40 -0
  1214. package/skills/vercel-react-best-practices/rules/rendering-content-visibility.md +38 -0
  1215. package/skills/vercel-react-best-practices/rules/rendering-hoist-jsx.md +46 -0
  1216. package/skills/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
  1217. package/skills/vercel-react-best-practices/rules/rendering-hydration-suppress-warning.md +30 -0
  1218. package/skills/vercel-react-best-practices/rules/rendering-resource-hints.md +85 -0
  1219. package/skills/vercel-react-best-practices/rules/rendering-script-defer-async.md +68 -0
  1220. package/skills/vercel-react-best-practices/rules/rendering-svg-precision.md +28 -0
  1221. package/skills/vercel-react-best-practices/rules/rendering-usetransition-loading.md +75 -0
  1222. package/skills/vercel-react-best-practices/rules/rerender-defer-reads.md +39 -0
  1223. package/skills/vercel-react-best-practices/rules/rerender-dependencies.md +45 -0
  1224. package/skills/vercel-react-best-practices/rules/rerender-derived-state-no-effect.md +40 -0
  1225. package/skills/vercel-react-best-practices/rules/rerender-derived-state.md +29 -0
  1226. package/skills/vercel-react-best-practices/rules/rerender-functional-setstate.md +74 -0
  1227. package/skills/vercel-react-best-practices/rules/rerender-lazy-state-init.md +58 -0
  1228. package/skills/vercel-react-best-practices/rules/rerender-memo-with-default-value.md +38 -0
  1229. package/skills/vercel-react-best-practices/rules/rerender-memo.md +44 -0
  1230. package/skills/vercel-react-best-practices/rules/rerender-move-effect-to-event.md +45 -0
  1231. package/skills/vercel-react-best-practices/rules/rerender-no-inline-components.md +82 -0
  1232. package/skills/vercel-react-best-practices/rules/rerender-simple-expression-in-memo.md +35 -0
  1233. package/skills/vercel-react-best-practices/rules/rerender-transitions.md +40 -0
  1234. package/skills/vercel-react-best-practices/rules/rerender-use-ref-transient-values.md +73 -0
  1235. package/skills/vercel-react-best-practices/rules/server-after-nonblocking.md +73 -0
  1236. package/skills/vercel-react-best-practices/rules/server-auth-actions.md +96 -0
  1237. package/skills/vercel-react-best-practices/rules/server-cache-lru.md +41 -0
  1238. package/skills/vercel-react-best-practices/rules/server-cache-react.md +76 -0
  1239. package/skills/vercel-react-best-practices/rules/server-dedup-props.md +65 -0
  1240. package/skills/vercel-react-best-practices/rules/server-hoist-static-io.md +142 -0
  1241. package/skills/vercel-react-best-practices/rules/server-parallel-fetching.md +83 -0
  1242. package/skills/vercel-react-best-practices/rules/server-serialization.md +38 -0
  1243. package/skills/verdent-image-cli/SKILL.md +218 -0
  1244. package/skills/verdent-image-cli/agents/verdent.yaml +11 -0
  1245. package/skills/verdent-image-cli/assets/icon-dark.png +0 -0
  1246. package/skills/verdent-image-cli/assets/icon-light.png +0 -0
  1247. package/skills/verdent-skills-catalog/SKILL.md +72 -0
  1248. package/skills/verdent-skills-catalog/references/categories.json +158 -0
  1249. package/skills/verdent-skills-catalog/references/inventory.json +493 -0
  1250. package/skills/verification-before-completion/SKILL.md +139 -0
  1251. package/skills/web-quality-audit/SKILL.md +172 -0
  1252. package/skills/web-quality-audit/scripts/analyze.sh +113 -0
  1253. package/skills/webapp-testing/LICENSE.txt +202 -0
  1254. package/skills/webapp-testing/SKILL.md +302 -0
  1255. package/skills/webapp-testing/examples/console_logging.py +35 -0
  1256. package/skills/webapp-testing/examples/element_discovery.py +40 -0
  1257. package/skills/webapp-testing/examples/static_html_automation.py +33 -0
  1258. package/skills/webapp-testing/scripts/with_server.py +110 -0
  1259. package/skills/workers-best-practices/SKILL.md +132 -0
  1260. package/skills/workers-best-practices/agents/verdent.yaml +11 -0
  1261. package/skills/workers-best-practices/assets/icon-dark.png +0 -0
  1262. package/skills/workers-best-practices/assets/icon-light.png +0 -0
  1263. package/skills/workers-best-practices/references/review.md +174 -0
  1264. package/skills/workers-best-practices/references/rules.md +463 -0
  1265. package/skills/xlsx/SKILL.md +318 -0
  1266. package/skills/xlsx/agents/verdent.yaml +9 -0
  1267. package/skills/xlsx/assets/icon-dark.png +0 -0
  1268. package/skills/xlsx/assets/icon-light.png +0 -0
  1269. package/skills/xlsx/assets/spreadsheet.png +0 -0
  1270. package/skills/xlsx/references/advanced-analysis.md +272 -0
  1271. package/skills/xlsx/references/examples/openpyxl/create_basic_spreadsheet.py +51 -0
  1272. package/skills/xlsx/references/examples/openpyxl/create_spreadsheet_with_styling.py +96 -0
  1273. package/skills/xlsx/references/examples/openpyxl/read_existing_spreadsheet.py +59 -0
  1274. package/skills/xlsx/references/examples/openpyxl/styling_spreadsheet.py +79 -0
  1275. package/skills/xlsx/scripts/formula_engine.py +219 -0
  1276. package/skills/xlsx/scripts/profile.py +62 -0
  1277. package/src/commands/doctor.js +9 -0
  1278. package/src/commands/feedback.js +29 -0
  1279. package/src/commands/init.js +39 -3
  1280. package/src/commands/pipeline.js +31 -0
  1281. package/src/commands/providers.js +54 -0
  1282. package/src/commands/recover.js +62 -0
  1283. package/src/commands/route.js +7 -0
  1284. package/src/commands/scaffold.js +7 -1
  1285. package/src/commands/skill.js +141 -0
  1286. package/src/commands/stack.js +97 -0
  1287. package/src/commands/ui.js +50 -0
  1288. package/src/commands/upgrade.js +2 -2
  1289. package/src/lib/audit.js +9 -1
  1290. package/src/lib/capability-router.js +4 -3
  1291. package/src/lib/contract.js +58 -0
  1292. package/src/lib/disabled-skills.js +86 -0
  1293. package/src/lib/doctor.js +100 -3
  1294. package/src/lib/env-flags.js +35 -0
  1295. package/src/lib/execution-policy.js +80 -4
  1296. package/src/lib/explanation-plain.js +72 -0
  1297. package/src/lib/explanation.js +183 -0
  1298. package/src/lib/feedback.js +65 -0
  1299. package/src/lib/i18n.js +43 -0
  1300. package/src/lib/ide-sync.js +4 -3
  1301. package/src/lib/pipeline.js +68 -0
  1302. package/src/lib/providers/doctor.js +205 -0
  1303. package/src/lib/recover.js +93 -0
  1304. package/src/lib/registry.js +79 -0
  1305. package/src/lib/route-engine.js +21 -1
  1306. package/src/lib/scaffold/index.js +24 -7
  1307. package/src/lib/scaffold/presets.js +213 -24
  1308. package/src/lib/skill-audit.js +141 -0
  1309. package/src/lib/stack/index.js +259 -0
  1310. package/src/lib/ui-server.js +226 -0
  1311. package/src/lib/upgrade-matrix.js +16 -1
  1312. package/src/lib/workspace-boundary.js +60 -0
  1313. package/templates/minimal/AGENT.md +10 -1
  1314. package/templates/minimal/DONE.md +10 -0
  1315. package/templates/minimal/GUNLUK.md +26 -0
  1316. package/templates/minimal/docs/conventions/daily-use.md +132 -0
  1317. package/templates/minimal/docs/conventions/task-to-capability-cheatsheet.md +29 -0
  1318. package/templates/minimal/docs/kullanim-kilavuzu.md +374 -0
  1319. package/ui/app.js +257 -0
  1320. package/ui/index.html +96 -0
  1321. package/ui/styles.css +227 -0
  1322. package/workflows/audit.md +143 -0
  1323. package/workflows/blueprint.md +374 -0
  1324. package/workflows/challenge.md +322 -0
  1325. package/workflows/change.md +162 -0
  1326. package/workflows/craft.md +135 -0
  1327. package/workflows/design-system.md +248 -0
  1328. package/workflows/explore.md +226 -0
  1329. package/workflows/forge.md +570 -34
  1330. package/workflows/genesis.md +307 -0
  1331. package/workflows/ingest.md +145 -0
  1332. package/workflows/init.md +216 -0
  1333. package/workflows/probe.md +181 -0
  1334. package/workflows/query-to-page.md +134 -0
  1335. package/workflows/quickstart.md +111 -0
  1336. package/workflows/retro.md +78 -0
  1337. package/workflows/upgrade.md +146 -0
  1338. package/workflows/wiki-lint.md +159 -0
  1339. package/templates/bundle/skills/capability-router/SKILL.md +0 -12
  1340. package/templates/bundle/skills/context-memory-bridge/SKILL.md +0 -17
  1341. package/templates/bundle/skills/localization-hub/SKILL.md +0 -17
  1342. package/templates/bundle/skills/refactor/SKILL.md +0 -17
  1343. package/templates/bundle/skills/systematic-debugging/SKILL.md +0 -19
  1344. package/templates/bundle/workflows/forge.md +0 -51
@@ -0,0 +1,2192 @@
1
+ ---
2
+ name: gh-cli
3
+ description: GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.
4
+ metadata:
5
+ version: '1.0.1'
6
+ origin: verdent
7
+ prismx_bundle: verdent
8
+ prismx_imported_at: 2026-05-27
9
+ ---
10
+
11
+ # GitHub CLI (gh)
12
+
13
+ Comprehensive reference for GitHub CLI (gh) - work seamlessly with GitHub from the command line.
14
+
15
+ **Version:** 2.85.0 (current as of January 2026)
16
+
17
+ ## Prerequisites
18
+
19
+ ### Installation
20
+
21
+ ```bash
22
+ # macOS
23
+ brew install gh
24
+
25
+ # Linux
26
+ curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg
27
+ echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
28
+ sudo apt update
29
+ sudo apt install gh
30
+
31
+ # Windows
32
+ winget install --id GitHub.cli
33
+
34
+ # Verify installation
35
+ gh --version
36
+ ```
37
+
38
+ ### Authentication
39
+
40
+ ```bash
41
+ # Interactive login (default: github.com)
42
+ gh auth login
43
+
44
+ # Login with specific hostname
45
+ gh auth login --hostname enterprise.internal
46
+
47
+ # Login with token
48
+ gh auth login --with-token < mytoken.txt
49
+
50
+ # Check authentication status
51
+ gh auth status
52
+
53
+ # Switch accounts
54
+ gh auth switch --hostname github.com --user username
55
+
56
+ # Logout
57
+ gh auth logout --hostname github.com --user username
58
+ ```
59
+
60
+ ### Setup Git Integration
61
+
62
+ ```bash
63
+ # Configure git to use gh as credential helper
64
+ gh auth setup-git
65
+
66
+ # View active token
67
+ gh auth token
68
+
69
+ # Refresh authentication scopes
70
+ gh auth refresh --scopes write:org,read:public_key
71
+ ```
72
+
73
+ ## CLI Structure
74
+
75
+ ```
76
+ gh # Root command
77
+ ├── auth # Authentication
78
+ │ ├── login
79
+ │ ├── logout
80
+ │ ├── refresh
81
+ │ ├── setup-git
82
+ │ ├── status
83
+ │ ├── switch
84
+ │ └── token
85
+ ├── browse # Open in browser
86
+ ├── codespace # GitHub Codespaces
87
+ │ ├── code
88
+ │ ├── cp
89
+ │ ├── create
90
+ │ ├── delete
91
+ │ ├── edit
92
+ │ ├── jupyter
93
+ │ ├── list
94
+ │ ├── logs
95
+ │ ├── ports
96
+ │ ├── rebuild
97
+ │ ├── ssh
98
+ │ ├── stop
99
+ │ └── view
100
+ ├── gist # Gists
101
+ │ ├── clone
102
+ │ ├── create
103
+ │ ├── delete
104
+ │ ├── edit
105
+ │ ├── list
106
+ │ ├── rename
107
+ │ └── view
108
+ ├── issue # Issues
109
+ │ ├── create
110
+ │ ├── list
111
+ │ ├── status
112
+ │ ├── close
113
+ │ ├── comment
114
+ │ ├── delete
115
+ │ ├── develop
116
+ │ ├── edit
117
+ │ ├── lock
118
+ │ ├── pin
119
+ │ ├── reopen
120
+ │ ├── transfer
121
+ │ ├── unlock
122
+ │ └── view
123
+ ├── org # Organizations
124
+ │ └── list
125
+ ├── pr # Pull Requests
126
+ │ ├── create
127
+ │ ├── list
128
+ │ ├── status
129
+ │ ├── checkout
130
+ │ ├── checks
131
+ │ ├── close
132
+ │ ├── comment
133
+ │ ├── diff
134
+ │ ├── edit
135
+ │ ├── lock
136
+ │ ├── merge
137
+ │ ├── ready
138
+ │ ├── reopen
139
+ │ ├── revert
140
+ │ ├── review
141
+ │ ├── unlock
142
+ │ ├── update-branch
143
+ │ └── view
144
+ ├── project # Projects
145
+ │ ├── close
146
+ │ ├── copy
147
+ │ ├── create
148
+ │ ├── delete
149
+ │ ├── edit
150
+ │ ├── field-create
151
+ │ ├── field-delete
152
+ │ ├── field-list
153
+ │ ├── item-add
154
+ │ ├── item-archive
155
+ │ ├── item-create
156
+ │ ├── item-delete
157
+ │ ├── item-edit
158
+ │ ├── item-list
159
+ │ ├── link
160
+ │ ├── list
161
+ │ ├── mark-template
162
+ │ ├── unlink
163
+ │ └── view
164
+ ├── release # Releases
165
+ │ ├── create
166
+ │ ├── list
167
+ │ ├── delete
168
+ │ ├── delete-asset
169
+ │ ├── download
170
+ │ ├── edit
171
+ │ ├── upload
172
+ │ ├── verify
173
+ │ ├── verify-asset
174
+ │ └── view
175
+ ├── repo # Repositories
176
+ │ ├── create
177
+ │ ├── list
178
+ │ ├── archive
179
+ │ ├── autolink
180
+ │ ├── clone
181
+ │ ├── delete
182
+ │ ├── deploy-key
183
+ │ ├── edit
184
+ │ ├── fork
185
+ │ ├── gitignore
186
+ │ ├── license
187
+ │ ├── rename
188
+ │ ├── set-default
189
+ │ ├── sync
190
+ │ ├── unarchive
191
+ │ └── view
192
+ ├── cache # Actions caches
193
+ │ ├── delete
194
+ │ └── list
195
+ ├── run # Workflow runs
196
+ │ ├── cancel
197
+ │ ├── delete
198
+ │ ├── download
199
+ │ ├── list
200
+ │ ├── rerun
201
+ │ ├── view
202
+ │ └── watch
203
+ ├── workflow # Workflows
204
+ │ ├── disable
205
+ │ ├── enable
206
+ │ ├── list
207
+ │ ├── run
208
+ │ └── view
209
+ ├── agent-task # Agent tasks
210
+ ├── alias # Command aliases
211
+ │ ├── delete
212
+ │ ├── import
213
+ │ ├── list
214
+ │ └── set
215
+ ├── api # API requests
216
+ ├── attestation # Artifact attestations
217
+ │ ├── download
218
+ │ ├── trusted-root
219
+ │ └── verify
220
+ ├── completion # Shell completion
221
+ ├── config # Configuration
222
+ │ ├── clear-cache
223
+ │ ├── get
224
+ │ ├── list
225
+ │ └── set
226
+ ├── extension # Extensions
227
+ │ ├── browse
228
+ │ ├── create
229
+ │ ├── exec
230
+ │ ├── install
231
+ │ ├── list
232
+ │ ├── remove
233
+ │ ├── search
234
+ │ └── upgrade
235
+ ├── gpg-key # GPG keys
236
+ │ ├── add
237
+ │ ├── delete
238
+ │ └── list
239
+ ├── label # Labels
240
+ │ ├── clone
241
+ │ ├── create
242
+ │ ├── delete
243
+ │ ├── edit
244
+ │ └── list
245
+ ├── preview # Preview features
246
+ ├── ruleset # Rulesets
247
+ │ ├── check
248
+ │ ├── list
249
+ │ └── view
250
+ ├── search # Search
251
+ │ ├── code
252
+ │ ├── commits
253
+ │ ├── issues
254
+ │ ├── prs
255
+ │ └── repos
256
+ ├── secret # Secrets
257
+ │ ├── delete
258
+ │ ├── list
259
+ │ └── set
260
+ ├── ssh-key # SSH keys
261
+ │ ├── add
262
+ │ ├── delete
263
+ │ └── list
264
+ ├── status # Status overview
265
+ └── variable # Variables
266
+ ├── delete
267
+ ├── get
268
+ ├── list
269
+ └── set
270
+ ```
271
+
272
+ ## Configuration
273
+
274
+ ### Global Configuration
275
+
276
+ ```bash
277
+ # List all configuration
278
+ gh config list
279
+
280
+ # Get specific configuration value
281
+ gh config list git_protocol
282
+ gh config get editor
283
+
284
+ # Set configuration value
285
+ gh config set editor vim
286
+ gh config set git_protocol ssh
287
+ gh config set prompt disabled
288
+ gh config set pager "less -R"
289
+
290
+ # Clear configuration cache
291
+ gh config clear-cache
292
+ ```
293
+
294
+ ### Environment Variables
295
+
296
+ ```bash
297
+ # GitHub token (for automation)
298
+ export GH_TOKEN=ghp_xxxxxxxxxxxx
299
+
300
+ # GitHub hostname
301
+ export GH_HOST=github.com
302
+
303
+ # Disable prompts
304
+ export GH_PROMPT_DISABLED=true
305
+
306
+ # Custom editor
307
+ export GH_EDITOR=vim
308
+
309
+ # Custom pager
310
+ export GH_PAGER=less
311
+
312
+ # HTTP timeout
313
+ export GH_TIMEOUT=30
314
+
315
+ # Custom repository (override default)
316
+ export GH_REPO=owner/repo
317
+
318
+ # Custom git protocol
319
+ export GH_ENTERPRISE_HOSTNAME=hostname
320
+ ```
321
+
322
+ ## Authentication (gh auth)
323
+
324
+ ### Login
325
+
326
+ ```bash
327
+ # Interactive login
328
+ gh auth login
329
+
330
+ # Web-based authentication
331
+ gh auth login --web
332
+
333
+ # With clipboard for OAuth code
334
+ gh auth login --web --clipboard
335
+
336
+ # With specific git protocol
337
+ gh auth login --git-protocol ssh
338
+
339
+ # With custom hostname (GitHub Enterprise)
340
+ gh auth login --hostname enterprise.internal
341
+
342
+ # Login with token from stdin
343
+ gh auth login --with-token < token.txt
344
+
345
+ # Insecure storage (plain text)
346
+ gh auth login --insecure-storage
347
+ ```
348
+
349
+ ### Status
350
+
351
+ ```bash
352
+ # Show all authentication status
353
+ gh auth status
354
+
355
+ # Show active account only
356
+ gh auth status --active
357
+
358
+ # Show specific hostname
359
+ gh auth status --hostname github.com
360
+
361
+ # Show token in output
362
+ gh auth status --show-token
363
+
364
+ # JSON output
365
+ gh auth status --json hosts
366
+
367
+ # Filter with jq
368
+ gh auth status --json hosts --jq '.hosts | add'
369
+ ```
370
+
371
+ ### Switch Accounts
372
+
373
+ ```bash
374
+ # Interactive switch
375
+ gh auth switch
376
+
377
+ # Switch to specific user/host
378
+ gh auth switch --hostname github.com --user monalisa
379
+ ```
380
+
381
+ ### Token
382
+
383
+ ```bash
384
+ # Print authentication token
385
+ gh auth token
386
+
387
+ # Token for specific host/user
388
+ gh auth token --hostname github.com --user monalisa
389
+ ```
390
+
391
+ ### Refresh
392
+
393
+ ```bash
394
+ # Refresh credentials
395
+ gh auth refresh
396
+
397
+ # Add scopes
398
+ gh auth refresh --scopes write:org,read:public_key
399
+
400
+ # Remove scopes
401
+ gh auth refresh --remove-scopes delete_repo
402
+
403
+ # Reset to default scopes
404
+ gh auth refresh --reset-scopes
405
+
406
+ # With clipboard
407
+ gh auth refresh --clipboard
408
+ ```
409
+
410
+ ### Setup Git
411
+
412
+ ```bash
413
+ # Setup git credential helper
414
+ gh auth setup-git
415
+
416
+ # Setup for specific host
417
+ gh auth setup-git --hostname enterprise.internal
418
+
419
+ # Force setup even if host not known
420
+ gh auth setup-git --hostname enterprise.internal --force
421
+ ```
422
+
423
+ ## Browse (gh browse)
424
+
425
+ ```bash
426
+ # Open repository in browser
427
+ gh browse
428
+
429
+ # Open specific path
430
+ gh browse script/
431
+ gh browse main.go:312
432
+
433
+ # Open issue or PR
434
+ gh browse 123
435
+
436
+ # Open commit
437
+ gh browse 77507cd94ccafcf568f8560cfecde965fcfa63
438
+
439
+ # Open with specific branch
440
+ gh browse main.go --branch bug-fix
441
+
442
+ # Open different repository
443
+ gh browse --repo owner/repo
444
+
445
+ # Open specific pages
446
+ gh browse --actions # Actions tab
447
+ gh browse --projects # Projects tab
448
+ gh browse --releases # Releases tab
449
+ gh browse --settings # Settings page
450
+ gh browse --wiki # Wiki page
451
+
452
+ # Print URL instead of opening
453
+ gh browse --no-browser
454
+ ```
455
+
456
+ ## Repositories (gh repo)
457
+
458
+ ### Create Repository
459
+
460
+ ```bash
461
+ # Create new repository
462
+ gh repo create my-repo
463
+
464
+ # Create with description
465
+ gh repo create my-repo --description "My awesome project"
466
+
467
+ # Create public repository
468
+ gh repo create my-repo --public
469
+
470
+ # Create private repository
471
+ gh repo create my-repo --private
472
+
473
+ # Create with homepage
474
+ gh repo create my-repo --homepage https://example.com
475
+
476
+ # Create with license
477
+ gh repo create my-repo --license mit
478
+
479
+ # Create with gitignore
480
+ gh repo create my-repo --gitignore python
481
+
482
+ # Initialize as template repository
483
+ gh repo create my-repo --template
484
+
485
+ # Create repository in organization
486
+ gh repo create org/my-repo
487
+
488
+ # Create without cloning locally
489
+ gh repo create my-repo --source=.
490
+
491
+ # Disable issues
492
+ gh repo create my-repo --disable-issues
493
+
494
+ # Disable wiki
495
+ gh repo create my-repo --disable-wiki
496
+ ```
497
+
498
+ ### Clone Repository
499
+
500
+ ```bash
501
+ # Clone repository
502
+ gh repo clone owner/repo
503
+
504
+ # Clone to specific directory
505
+ gh repo clone owner/repo my-directory
506
+
507
+ # Clone with different branch
508
+ gh repo clone owner/repo --branch develop
509
+ ```
510
+
511
+ ### List Repositories
512
+
513
+ ```bash
514
+ # List all repositories
515
+ gh repo list
516
+
517
+ # List repositories for owner
518
+ gh repo list owner
519
+
520
+ # Limit results
521
+ gh repo list --limit 50
522
+
523
+ # Public repositories only
524
+ gh repo list --public
525
+
526
+ # Source repositories only (not forks)
527
+ gh repo list --source
528
+
529
+ # JSON output
530
+ gh repo list --json name,visibility,owner
531
+
532
+ # Table output
533
+ gh repo list --limit 100 | tail -n +2
534
+
535
+ # Filter with jq
536
+ gh repo list --json name --jq '.[].name'
537
+ ```
538
+
539
+ ### View Repository
540
+
541
+ ```bash
542
+ # View repository details
543
+ gh repo view
544
+
545
+ # View specific repository
546
+ gh repo view owner/repo
547
+
548
+ # JSON output
549
+ gh repo view --json name,description,defaultBranchRef
550
+
551
+ # View in browser
552
+ gh repo view --web
553
+ ```
554
+
555
+ ### Edit Repository
556
+
557
+ ```bash
558
+ # Edit description
559
+ gh repo edit --description "New description"
560
+
561
+ # Set homepage
562
+ gh repo edit --homepage https://example.com
563
+
564
+ # Change visibility
565
+ gh repo edit --visibility private
566
+ gh repo edit --visibility public
567
+
568
+ # Enable/disable features
569
+ gh repo edit --enable-issues
570
+ gh repo edit --disable-issues
571
+ gh repo edit --enable-wiki
572
+ gh repo edit --disable-wiki
573
+ gh repo edit --enable-projects
574
+ gh repo edit --disable-projects
575
+
576
+ # Set default branch
577
+ gh repo edit --default-branch main
578
+
579
+ # Rename repository
580
+ gh repo rename new-name
581
+
582
+ # Archive repository
583
+ gh repo archive
584
+ gh repo unarchive
585
+ ```
586
+
587
+ ### Delete Repository
588
+
589
+ ```bash
590
+ # Delete repository
591
+ gh repo delete owner/repo
592
+
593
+ # Confirm without prompt
594
+ gh repo delete owner/repo --yes
595
+ ```
596
+
597
+ ### Fork Repository
598
+
599
+ ```bash
600
+ # Fork repository
601
+ gh repo fork owner/repo
602
+
603
+ # Fork to organization
604
+ gh repo fork owner/repo --org org-name
605
+
606
+ # Clone after forking
607
+ gh repo fork owner/repo --clone
608
+
609
+ # Remote name for fork
610
+ gh repo fork owner/repo --remote-name upstream
611
+ ```
612
+
613
+ ### Sync Fork
614
+
615
+ ```bash
616
+ # Sync fork with upstream
617
+ gh repo sync
618
+
619
+ # Sync specific branch
620
+ gh repo sync --branch feature
621
+
622
+ # Force sync
623
+ gh repo sync --force
624
+ ```
625
+
626
+ ### Set Default Repository
627
+
628
+ ```bash
629
+ # Set default repository for current directory
630
+ gh repo set-default
631
+
632
+ # Set default explicitly
633
+ gh repo set-default owner/repo
634
+
635
+ # Unset default
636
+ gh repo set-default --unset
637
+ ```
638
+
639
+ ### Repository Autolinks
640
+
641
+ ```bash
642
+ # List autolinks
643
+ gh repo autolink list
644
+
645
+ # Add autolink
646
+ gh repo autolink add \
647
+ --key-prefix JIRA- \
648
+ --url-template https://jira.example.com/browse/<num>
649
+
650
+ # Delete autolink
651
+ gh repo autolink delete 12345
652
+ ```
653
+
654
+ ### Repository Deploy Keys
655
+
656
+ ```bash
657
+ # List deploy keys
658
+ gh repo deploy-key list
659
+
660
+ # Add deploy key
661
+ gh repo deploy-key add ~/.ssh/id_rsa.pub \
662
+ --title "Production server" \
663
+ --read-only
664
+
665
+ # Delete deploy key
666
+ gh repo deploy-key delete 12345
667
+ ```
668
+
669
+ ### Gitignore and License
670
+
671
+ ```bash
672
+ # View gitignore template
673
+ gh repo gitignore
674
+
675
+ # View license template
676
+ gh repo license mit
677
+
678
+ # License with full name
679
+ gh repo license mit --fullname "John Doe"
680
+ ```
681
+
682
+ ## Issues (gh issue)
683
+
684
+ ### Create Issue
685
+
686
+ ```bash
687
+ # Create issue interactively
688
+ gh issue create
689
+
690
+ # Create with title
691
+ gh issue create --title "Bug: Login not working"
692
+
693
+ # Create with title and body
694
+ gh issue create \
695
+ --title "Bug: Login not working" \
696
+ --body "Steps to reproduce..."
697
+
698
+ # Create with body from file
699
+ gh issue create --body-file issue.md
700
+
701
+ # Create with labels
702
+ gh issue create --title "Fix bug" --labels bug,high-priority
703
+
704
+ # Create with assignees
705
+ gh issue create --title "Fix bug" --assignee user1,user2
706
+
707
+ # Create in specific repository
708
+ gh issue create --repo owner/repo --title "Issue title"
709
+
710
+ # Create issue from web
711
+ gh issue create --web
712
+ ```
713
+
714
+ ### List Issues
715
+
716
+ ```bash
717
+ # List all open issues
718
+ gh issue list
719
+
720
+ # List all issues (including closed)
721
+ gh issue list --state all
722
+
723
+ # List closed issues
724
+ gh issue list --state closed
725
+
726
+ # Limit results
727
+ gh issue list --limit 50
728
+
729
+ # Filter by assignee
730
+ gh issue list --assignee username
731
+ gh issue list --assignee @me
732
+
733
+ # Filter by labels
734
+ gh issue list --labels bug,enhancement
735
+
736
+ # Filter by milestone
737
+ gh issue list --milestone "v1.0"
738
+
739
+ # Search/filter
740
+ gh issue list --search "is:open is:issue label:bug"
741
+
742
+ # JSON output
743
+ gh issue list --json number,title,state,author
744
+
745
+ # Table view
746
+ gh issue list --json number,title,labels --jq '.[] | [.number, .title, .labels[].name] | @tsv'
747
+
748
+ # Show comments count
749
+ gh issue list --json number,title,comments --jq '.[] | [.number, .title, .comments]'
750
+
751
+ # Sort by
752
+ gh issue list --sort created --order desc
753
+ ```
754
+
755
+ ### View Issue
756
+
757
+ ```bash
758
+ # View issue
759
+ gh issue view 123
760
+
761
+ # View with comments
762
+ gh issue view 123 --comments
763
+
764
+ # View in browser
765
+ gh issue view 123 --web
766
+
767
+ # JSON output
768
+ gh issue view 123 --json title,body,state,labels,comments
769
+
770
+ # View specific fields
771
+ gh issue view 123 --json title --jq '.title'
772
+ ```
773
+
774
+ ### Edit Issue
775
+
776
+ ```bash
777
+ # Edit interactively
778
+ gh issue edit 123
779
+
780
+ # Edit title
781
+ gh issue edit 123 --title "New title"
782
+
783
+ # Edit body
784
+ gh issue edit 123 --body "New description"
785
+
786
+ # Add labels
787
+ gh issue edit 123 --add-label bug,high-priority
788
+
789
+ # Remove labels
790
+ gh issue edit 123 --remove-label stale
791
+
792
+ # Add assignees
793
+ gh issue edit 123 --add-assignee user1,user2
794
+
795
+ # Remove assignees
796
+ gh issue edit 123 --remove-assignee user1
797
+
798
+ # Set milestone
799
+ gh issue edit 123 --milestone "v1.0"
800
+ ```
801
+
802
+ ### Close/Reopen Issue
803
+
804
+ ```bash
805
+ # Close issue
806
+ gh issue close 123
807
+
808
+ # Close with comment
809
+ gh issue close 123 --comment "Fixed in PR #456"
810
+
811
+ # Reopen issue
812
+ gh issue reopen 123
813
+ ```
814
+
815
+ ### Comment on Issue
816
+
817
+ ```bash
818
+ # Add comment
819
+ gh issue comment 123 --body "This looks good!"
820
+
821
+ # Edit comment
822
+ gh issue comment 123 --edit 456789 --body "Updated comment"
823
+
824
+ # Delete comment
825
+ gh issue comment 123 --delete 456789
826
+ ```
827
+
828
+ ### Issue Status
829
+
830
+ ```bash
831
+ # Show issue status summary
832
+ gh issue status
833
+
834
+ # Status for specific repository
835
+ gh issue status --repo owner/repo
836
+ ```
837
+
838
+ ### Pin/Unpin Issues
839
+
840
+ ```bash
841
+ # Pin issue (pinned to repo dashboard)
842
+ gh issue pin 123
843
+
844
+ # Unpin issue
845
+ gh issue unpin 123
846
+ ```
847
+
848
+ ### Lock/Unlock Issue
849
+
850
+ ```bash
851
+ # Lock conversation
852
+ gh issue lock 123
853
+
854
+ # Lock with reason
855
+ gh issue lock 123 --reason off-topic
856
+
857
+ # Unlock
858
+ gh issue unlock 123
859
+ ```
860
+
861
+ ### Transfer Issue
862
+
863
+ ```bash
864
+ # Transfer to another repository
865
+ gh issue transfer 123 --repo owner/new-repo
866
+ ```
867
+
868
+ ### Delete Issue
869
+
870
+ ```bash
871
+ # Delete issue
872
+ gh issue delete 123
873
+
874
+ # Confirm without prompt
875
+ gh issue delete 123 --yes
876
+ ```
877
+
878
+ ### Develop Issue (Draft PR)
879
+
880
+ ```bash
881
+ # Create draft PR from issue
882
+ gh issue develop 123
883
+
884
+ # Create in specific branch
885
+ gh issue develop 123 --branch fix/issue-123
886
+
887
+ # Create with base branch
888
+ gh issue develop 123 --base main
889
+ ```
890
+
891
+ ## Pull Requests (gh pr)
892
+
893
+ ### Create Pull Request
894
+
895
+ ```bash
896
+ # Create PR interactively
897
+ gh pr create
898
+
899
+ # Create with title
900
+ gh pr create --title "Feature: Add new functionality"
901
+
902
+ # Create with title and body
903
+ gh pr create \
904
+ --title "Feature: Add new functionality" \
905
+ --body "This PR adds..."
906
+
907
+ # Fill body from template
908
+ gh pr create --body-file .github/PULL_REQUEST_TEMPLATE.md
909
+
910
+ # Set base branch
911
+ gh pr create --base main
912
+
913
+ # Set head branch (default: current branch)
914
+ gh pr create --head feature-branch
915
+
916
+ # Create draft PR
917
+ gh pr create --draft
918
+
919
+ # Add assignees
920
+ gh pr create --assignee user1,user2
921
+
922
+ # Add reviewers
923
+ gh pr create --reviewer user1,user2
924
+
925
+ # Add labels
926
+ gh pr create --labels enhancement,feature
927
+
928
+ # Link to issue
929
+ gh pr create --issue 123
930
+
931
+ # Create in specific repository
932
+ gh pr create --repo owner/repo
933
+
934
+ # Open in browser after creation
935
+ gh pr create --web
936
+ ```
937
+
938
+ ### List Pull Requests
939
+
940
+ ```bash
941
+ # List open PRs
942
+ gh pr list
943
+
944
+ # List all PRs
945
+ gh pr list --state all
946
+
947
+ # List merged PRs
948
+ gh pr list --state merged
949
+
950
+ # List closed (not merged) PRs
951
+ gh pr list --state closed
952
+
953
+ # Filter by head branch
954
+ gh pr list --head feature-branch
955
+
956
+ # Filter by base branch
957
+ gh pr list --base main
958
+
959
+ # Filter by author
960
+ gh pr list --author username
961
+ gh pr list --author @me
962
+
963
+ # Filter by assignee
964
+ gh pr list --assignee username
965
+
966
+ # Filter by labels
967
+ gh pr list --labels bug,enhancement
968
+
969
+ # Limit results
970
+ gh pr list --limit 50
971
+
972
+ # Search
973
+ gh pr list --search "is:open is:pr label:review-required"
974
+
975
+ # JSON output
976
+ gh pr list --json number,title,state,author,headRefName
977
+
978
+ # Show check status
979
+ gh pr list --json number,title,statusCheckRollup --jq '.[] | [.number, .title, .statusCheckRollup[]?.status]'
980
+
981
+ # Sort by
982
+ gh pr list --sort created --order desc
983
+ ```
984
+
985
+ ### View Pull Request
986
+
987
+ ```bash
988
+ # View PR
989
+ gh pr view 123
990
+
991
+ # View with comments
992
+ gh pr view 123 --comments
993
+
994
+ # View in browser
995
+ gh pr view 123 --web
996
+
997
+ # JSON output
998
+ gh pr view 123 --json title,body,state,author,commits,files
999
+
1000
+ # View diff
1001
+ gh pr view 123 --json files --jq '.files[].path'
1002
+
1003
+ # View with jq query
1004
+ gh pr view 123 --json title,state --jq '"\(.title): \(.state)"'
1005
+ ```
1006
+
1007
+ ### Checkout Pull Request
1008
+
1009
+ ```bash
1010
+ # Checkout PR branch
1011
+ gh pr checkout 123
1012
+
1013
+ # Checkout with specific branch name
1014
+ gh pr checkout 123 --branch name-123
1015
+
1016
+ # Force checkout
1017
+ gh pr checkout 123 --force
1018
+ ```
1019
+
1020
+ ### Diff Pull Request
1021
+
1022
+ ```bash
1023
+ # View PR diff
1024
+ gh pr diff 123
1025
+
1026
+ # View diff with color
1027
+ gh pr diff 123 --color always
1028
+
1029
+ # Output to file
1030
+ gh pr diff 123 > pr-123.patch
1031
+
1032
+ # View diff of specific files
1033
+ gh pr diff 123 --name-only
1034
+ ```
1035
+
1036
+ ### Merge Pull Request
1037
+
1038
+ ```bash
1039
+ # Merge PR
1040
+ gh pr merge 123
1041
+
1042
+ # Merge with specific method
1043
+ gh pr merge 123 --merge
1044
+ gh pr merge 123 --squash
1045
+ gh pr merge 123 --rebase
1046
+
1047
+ # Delete branch after merge
1048
+ gh pr merge 123 --delete-branch
1049
+
1050
+ # Merge with comment
1051
+ gh pr merge 123 --subject "Merge PR #123" --body "Merging feature"
1052
+
1053
+ # Merge draft PR
1054
+ gh pr merge 123 --admin
1055
+
1056
+ # Force merge (skip checks)
1057
+ gh pr merge 123 --admin
1058
+ ```
1059
+
1060
+ ### Close Pull Request
1061
+
1062
+ ```bash
1063
+ # Close PR (as draft, not merge)
1064
+ gh pr close 123
1065
+
1066
+ # Close with comment
1067
+ gh pr close 123 --comment "Closing due to..."
1068
+ ```
1069
+
1070
+ ### Reopen Pull Request
1071
+
1072
+ ```bash
1073
+ # Reopen closed PR
1074
+ gh pr reopen 123
1075
+ ```
1076
+
1077
+ ### Edit Pull Request
1078
+
1079
+ ```bash
1080
+ # Edit interactively
1081
+ gh pr edit 123
1082
+
1083
+ # Edit title
1084
+ gh pr edit 123 --title "New title"
1085
+
1086
+ # Edit body
1087
+ gh pr edit 123 --body "New description"
1088
+
1089
+ # Add labels
1090
+ gh pr edit 123 --add-label bug,enhancement
1091
+
1092
+ # Remove labels
1093
+ gh pr edit 123 --remove-label stale
1094
+
1095
+ # Add assignees
1096
+ gh pr edit 123 --add-assignee user1,user2
1097
+
1098
+ # Remove assignees
1099
+ gh pr edit 123 --remove-assignee user1
1100
+
1101
+ # Add reviewers
1102
+ gh pr edit 123 --add-reviewer user1,user2
1103
+
1104
+ # Remove reviewers
1105
+ gh pr edit 123 --remove-reviewer user1
1106
+
1107
+ # Mark as ready for review
1108
+ gh pr edit 123 --ready
1109
+ ```
1110
+
1111
+ ### Ready for Review
1112
+
1113
+ ```bash
1114
+ # Mark draft PR as ready
1115
+ gh pr ready 123
1116
+ ```
1117
+
1118
+ ### Pull Request Checks
1119
+
1120
+ ```bash
1121
+ # View PR checks
1122
+ gh pr checks 123
1123
+
1124
+ # Watch checks in real-time
1125
+ gh pr checks 123 --watch
1126
+
1127
+ # Watch interval (seconds)
1128
+ gh pr checks 123 --watch --interval 5
1129
+ ```
1130
+
1131
+ ### Comment on Pull Request
1132
+
1133
+ ```bash
1134
+ # Add comment
1135
+ gh pr comment 123 --body "Looks good!"
1136
+
1137
+ # Comment on specific line
1138
+ gh pr comment 123 --body "Fix this" \
1139
+ --repo owner/repo \
1140
+ --head-owner owner --head-branch feature
1141
+
1142
+ # Edit comment
1143
+ gh pr comment 123 --edit 456789 --body "Updated"
1144
+
1145
+ # Delete comment
1146
+ gh pr comment 123 --delete 456789
1147
+ ```
1148
+
1149
+ ### Review Pull Request
1150
+
1151
+ ```bash
1152
+ # Review PR (opens editor)
1153
+ gh pr review 123
1154
+
1155
+ # Approve PR
1156
+ gh pr review 123 --approve --body "LGTM!"
1157
+
1158
+ # Request changes
1159
+ gh pr review 123 --request-changes \
1160
+ --body "Please fix these issues"
1161
+
1162
+ # Comment on PR
1163
+ gh pr review 123 --comment --body "Some thoughts..."
1164
+
1165
+ # Dismiss review
1166
+ gh pr review 123 --dismiss
1167
+ ```
1168
+
1169
+ ### Update Branch
1170
+
1171
+ ```bash
1172
+ # Update PR branch with latest base branch
1173
+ gh pr update-branch 123
1174
+
1175
+ # Force update
1176
+ gh pr update-branch 123 --force
1177
+
1178
+ # Use merge strategy
1179
+ gh pr update-branch 123 --merge
1180
+ ```
1181
+
1182
+ ### Lock/Unlock Pull Request
1183
+
1184
+ ```bash
1185
+ # Lock PR conversation
1186
+ gh pr lock 123
1187
+
1188
+ # Lock with reason
1189
+ gh pr lock 123 --reason off-topic
1190
+
1191
+ # Unlock
1192
+ gh pr unlock 123
1193
+ ```
1194
+
1195
+ ### Revert Pull Request
1196
+
1197
+ ```bash
1198
+ # Revert merged PR
1199
+ gh pr revert 123
1200
+
1201
+ # Revert with specific branch name
1202
+ gh pr revert 123 --branch revert-pr-123
1203
+ ```
1204
+
1205
+ ### Pull Request Status
1206
+
1207
+ ```bash
1208
+ # Show PR status summary
1209
+ gh pr status
1210
+
1211
+ # Status for specific repository
1212
+ gh pr status --repo owner/repo
1213
+ ```
1214
+
1215
+ ## GitHub Actions
1216
+
1217
+ ### Workflow Runs (gh run)
1218
+
1219
+ ```bash
1220
+ # List workflow runs
1221
+ gh run list
1222
+
1223
+ # List for specific workflow
1224
+ gh run list --workflow "ci.yml"
1225
+
1226
+ # List for specific branch
1227
+ gh run list --branch main
1228
+
1229
+ # Limit results
1230
+ gh run list --limit 20
1231
+
1232
+ # JSON output
1233
+ gh run list --json databaseId,status,conclusion,headBranch
1234
+
1235
+ # View run details
1236
+ gh run view 123456789
1237
+
1238
+ # View run with verbose logs
1239
+ gh run view 123456789 --log
1240
+
1241
+ # View specific job
1242
+ gh run view 123456789 --job 987654321
1243
+
1244
+ # View in browser
1245
+ gh run view 123456789 --web
1246
+
1247
+ # Watch run in real-time
1248
+ gh run watch 123456789
1249
+
1250
+ # Watch with interval
1251
+ gh run watch 123456789 --interval 5
1252
+
1253
+ # Rerun failed run
1254
+ gh run rerun 123456789
1255
+
1256
+ # Rerun specific job
1257
+ gh run rerun 123456789 --job 987654321
1258
+
1259
+ # Cancel run
1260
+ gh run cancel 123456789
1261
+
1262
+ # Delete run
1263
+ gh run delete 123456789
1264
+
1265
+ # Download run artifacts
1266
+ gh run download 123456789
1267
+
1268
+ # Download specific artifact
1269
+ gh run download 123456789 --name build
1270
+
1271
+ # Download to directory
1272
+ gh run download 123456789 --dir ./artifacts
1273
+ ```
1274
+
1275
+ ### Workflows (gh workflow)
1276
+
1277
+ ```bash
1278
+ # List workflows
1279
+ gh workflow list
1280
+
1281
+ # View workflow details
1282
+ gh workflow view ci.yml
1283
+
1284
+ # View workflow YAML
1285
+ gh workflow view ci.yml --yaml
1286
+
1287
+ # View in browser
1288
+ gh workflow view ci.yml --web
1289
+
1290
+ # Enable workflow
1291
+ gh workflow enable ci.yml
1292
+
1293
+ # Disable workflow
1294
+ gh workflow disable ci.yml
1295
+
1296
+ # Run workflow manually
1297
+ gh workflow run ci.yml
1298
+
1299
+ # Run with inputs
1300
+ gh workflow run ci.yml \
1301
+ --raw-field \
1302
+ version="1.0.0" \
1303
+ environment="production"
1304
+
1305
+ # Run from specific branch
1306
+ gh workflow run ci.yml --ref develop
1307
+ ```
1308
+
1309
+ ### Action Caches (gh cache)
1310
+
1311
+ ```bash
1312
+ # List caches
1313
+ gh cache list
1314
+
1315
+ # List for specific branch
1316
+ gh cache list --branch main
1317
+
1318
+ # List with limit
1319
+ gh cache list --limit 50
1320
+
1321
+ # Delete cache
1322
+ gh cache delete 123456789
1323
+
1324
+ # Delete all caches
1325
+ gh cache delete --all
1326
+ ```
1327
+
1328
+ ### Action Secrets (gh secret)
1329
+
1330
+ ```bash
1331
+ # List secrets
1332
+ gh secret list
1333
+
1334
+ # Set secret (prompts for value)
1335
+ gh secret set MY_SECRET
1336
+
1337
+ # Set secret from environment
1338
+ echo "$MY_SECRET" | gh secret set MY_SECRET
1339
+
1340
+ # Set secret for specific environment
1341
+ gh secret set MY_SECRET --env production
1342
+
1343
+ # Set secret for organization
1344
+ gh secret set MY_SECRET --org orgname
1345
+
1346
+ # Delete secret
1347
+ gh secret delete MY_SECRET
1348
+
1349
+ # Delete from environment
1350
+ gh secret delete MY_SECRET --env production
1351
+ ```
1352
+
1353
+ ### Action Variables (gh variable)
1354
+
1355
+ ```bash
1356
+ # List variables
1357
+ gh variable list
1358
+
1359
+ # Set variable
1360
+ gh variable set MY_VAR "some-value"
1361
+
1362
+ # Set variable for environment
1363
+ gh variable set MY_VAR "value" --env production
1364
+
1365
+ # Set variable for organization
1366
+ gh variable set MY_VAR "value" --org orgname
1367
+
1368
+ # Get variable value
1369
+ gh variable get MY_VAR
1370
+
1371
+ # Delete variable
1372
+ gh variable delete MY_VAR
1373
+
1374
+ # Delete from environment
1375
+ gh variable delete MY_VAR --env production
1376
+ ```
1377
+
1378
+ ## Projects (gh project)
1379
+
1380
+ ```bash
1381
+ # List projects
1382
+ gh project list
1383
+
1384
+ # List for owner
1385
+ gh project list --owner owner
1386
+
1387
+ # Open projects
1388
+ gh project list --open
1389
+
1390
+ # View project
1391
+ gh project view 123
1392
+
1393
+ # View project items
1394
+ gh project view 123 --format json
1395
+
1396
+ # Create project
1397
+ gh project create --title "My Project"
1398
+
1399
+ # Create in organization
1400
+ gh project create --title "Project" --org orgname
1401
+
1402
+ # Create with readme
1403
+ gh project create --title "Project" --readme "Description here"
1404
+
1405
+ # Edit project
1406
+ gh project edit 123 --title "New Title"
1407
+
1408
+ # Delete project
1409
+ gh project delete 123
1410
+
1411
+ # Close project
1412
+ gh project close 123
1413
+
1414
+ # Copy project
1415
+ gh project copy 123 --owner target-owner --title "Copy"
1416
+
1417
+ # Mark template
1418
+ gh project mark-template 123
1419
+
1420
+ # List fields
1421
+ gh project field-list 123
1422
+
1423
+ # Create field
1424
+ gh project field-create 123 --title "Status" --datatype single_select
1425
+
1426
+ # Delete field
1427
+ gh project field-delete 123 --id 456
1428
+
1429
+ # List items
1430
+ gh project item-list 123
1431
+
1432
+ # Create item
1433
+ gh project item-create 123 --title "New item"
1434
+
1435
+ # Add item to project
1436
+ gh project item-add 123 --owner-owner --repo repo --issue 456
1437
+
1438
+ # Edit item
1439
+ gh project item-edit 123 --id 456 --title "Updated title"
1440
+
1441
+ # Delete item
1442
+ gh project item-delete 123 --id 456
1443
+
1444
+ # Archive item
1445
+ gh project item-archive 123 --id 456
1446
+
1447
+ # Link items
1448
+ gh project link 123 --id 456 --link-id 789
1449
+
1450
+ # Unlink items
1451
+ gh project unlink 123 --id 456 --link-id 789
1452
+
1453
+ # View project in browser
1454
+ gh project view 123 --web
1455
+ ```
1456
+
1457
+ ## Releases (gh release)
1458
+
1459
+ ```bash
1460
+ # List releases
1461
+ gh release list
1462
+
1463
+ # View latest release
1464
+ gh release view
1465
+
1466
+ # View specific release
1467
+ gh release view v1.0.0
1468
+
1469
+ # View in browser
1470
+ gh release view v1.0.0 --web
1471
+
1472
+ # Create release
1473
+ gh release create v1.0.0 \
1474
+ --notes "Release notes here"
1475
+
1476
+ # Create release with notes from file
1477
+ gh release create v1.0.0 --notes-file notes.md
1478
+
1479
+ # Create release with target
1480
+ gh release create v1.0.0 --target main
1481
+
1482
+ # Create release as draft
1483
+ gh release create v1.0.0 --draft
1484
+
1485
+ # Create pre-release
1486
+ gh release create v1.0.0 --prerelease
1487
+
1488
+ # Create release with title
1489
+ gh release create v1.0.0 --title "Version 1.0.0"
1490
+
1491
+ # Upload asset to release
1492
+ gh release upload v1.0.0 ./file.tar.gz
1493
+
1494
+ # Upload multiple assets
1495
+ gh release upload v1.0.0 ./file1.tar.gz ./file2.tar.gz
1496
+
1497
+ # Upload with label (casing sensitive)
1498
+ gh release upload v1.0.0 ./file.tar.gz --casing
1499
+
1500
+ # Delete release
1501
+ gh release delete v1.0.0
1502
+
1503
+ # Delete with cleanup tag
1504
+ gh release delete v1.0.0 --yes
1505
+
1506
+ # Delete specific asset
1507
+ gh release delete-asset v1.0.0 file.tar.gz
1508
+
1509
+ # Download release assets
1510
+ gh release download v1.0.0
1511
+
1512
+ # Download specific asset
1513
+ gh release download v1.0.0 --pattern "*.tar.gz"
1514
+
1515
+ # Download to directory
1516
+ gh release download v1.0.0 --dir ./downloads
1517
+
1518
+ # Download archive (zip/tar)
1519
+ gh release download v1.0.0 --archive zip
1520
+
1521
+ # Edit release
1522
+ gh release edit v1.0.0 --notes "Updated notes"
1523
+
1524
+ # Verify release signature
1525
+ gh release verify v1.0.0
1526
+
1527
+ # Verify specific asset
1528
+ gh release verify-asset v1.0.0 file.tar.gz
1529
+ ```
1530
+
1531
+ ## Gists (gh gist)
1532
+
1533
+ ```bash
1534
+ # List gists
1535
+ gh gist list
1536
+
1537
+ # List all gists (including private)
1538
+ gh gist list --public
1539
+
1540
+ # Limit results
1541
+ gh gist list --limit 20
1542
+
1543
+ # View gist
1544
+ gh gist view abc123
1545
+
1546
+ # View gist files
1547
+ gh gist view abc123 --files
1548
+
1549
+ # Create gist
1550
+ gh gist create script.py
1551
+
1552
+ # Create gist with description
1553
+ gh gist create script.py --desc "My script"
1554
+
1555
+ # Create public gist
1556
+ gh gist create script.py --public
1557
+
1558
+ # Create multi-file gist
1559
+ gh gist create file1.py file2.py
1560
+
1561
+ # Create from stdin
1562
+ echo "print('hello')" | gh gist create
1563
+
1564
+ # Edit gist
1565
+ gh gist edit abc123
1566
+
1567
+ # Delete gist
1568
+ gh gist delete abc123
1569
+
1570
+ # Rename gist file
1571
+ gh gist rename abc123 --filename old.py new.py
1572
+
1573
+ # Clone gist
1574
+ gh gist clone abc123
1575
+
1576
+ # Clone to directory
1577
+ gh gist clone abc123 my-directory
1578
+ ```
1579
+
1580
+ ## Codespaces (gh codespace)
1581
+
1582
+ ```bash
1583
+ # List codespaces
1584
+ gh codespace list
1585
+
1586
+ # Create codespace
1587
+ gh codespace create
1588
+
1589
+ # Create with specific repository
1590
+ gh codespace create --repo owner/repo
1591
+
1592
+ # Create with branch
1593
+ gh codespace create --branch develop
1594
+
1595
+ # Create with specific machine
1596
+ gh codespace create --machine premiumLinux
1597
+
1598
+ # View codespace details
1599
+ gh codespace view
1600
+
1601
+ # SSH into codespace
1602
+ gh codespace ssh
1603
+
1604
+ # SSH with specific command
1605
+ gh codespace ssh --command "cd /workspaces && ls"
1606
+
1607
+ # Open codespace in browser
1608
+ gh codespace code
1609
+
1610
+ # Open in VS Code
1611
+ gh codespace code --codec
1612
+
1613
+ # Open with specific path
1614
+ gh codespace code --path /workspaces/repo
1615
+
1616
+ # Stop codespace
1617
+ gh codespace stop
1618
+
1619
+ # Delete codespace
1620
+ gh codespace delete
1621
+
1622
+ # View logs
1623
+ gh codespace logs
1624
+
1625
+ --tail 100
1626
+
1627
+ # View ports
1628
+ gh codespace ports
1629
+
1630
+ # Forward port
1631
+ gh codespace cp 8080:8080
1632
+
1633
+ # Rebuild codespace
1634
+ gh codespace rebuild
1635
+
1636
+ # Edit codespace
1637
+ gh codespace edit --machine standardLinux
1638
+
1639
+ # Jupyter support
1640
+ gh codespace jupyter
1641
+
1642
+ # Copy files to/from codespace
1643
+ gh codespace cp file.txt :/workspaces/file.txt
1644
+ gh codespace cp :/workspaces/file.txt ./file.txt
1645
+ ```
1646
+
1647
+ ## Organizations (gh org)
1648
+
1649
+ ```bash
1650
+ # List organizations
1651
+ gh org list
1652
+
1653
+ # List for user
1654
+ gh org list --user username
1655
+
1656
+ # JSON output
1657
+ gh org list --json login,name,description
1658
+
1659
+ # View organization
1660
+ gh org view orgname
1661
+
1662
+ # View organization members
1663
+ gh org view orgname --json members --jq '.members[] | .login'
1664
+ ```
1665
+
1666
+ ## Search (gh search)
1667
+
1668
+ ```bash
1669
+ # Search code
1670
+ gh search code "TODO"
1671
+
1672
+ # Search in specific repository
1673
+ gh search code "TODO" --repo owner/repo
1674
+
1675
+ # Search commits
1676
+ gh search commits "fix bug"
1677
+
1678
+ # Search issues
1679
+ gh search issues "label:bug state:open"
1680
+
1681
+ # Search PRs
1682
+ gh search prs "is:open is:pr review:required"
1683
+
1684
+ # Search repositories
1685
+ gh search repos "stars:>1000 language:python"
1686
+
1687
+ # Limit results
1688
+ gh search repos "topic:api" --limit 50
1689
+
1690
+ # JSON output
1691
+ gh search repos "stars:>100" --json name,description,stargazers
1692
+
1693
+ # Order results
1694
+ gh search repos "language:rust" --order desc --sort stars
1695
+
1696
+ # Search with extensions
1697
+ gh search code "import" --extension py
1698
+
1699
+ # Web search (open in browser)
1700
+ gh search prs "is:open" --web
1701
+ ```
1702
+
1703
+ ## Labels (gh label)
1704
+
1705
+ ```bash
1706
+ # List labels
1707
+ gh label list
1708
+
1709
+ # Create label
1710
+ gh label create bug --color "d73a4a" --description "Something isn't working"
1711
+
1712
+ # Create with hex color
1713
+ gh label create enhancement --color "#a2eeef"
1714
+
1715
+ # Edit label
1716
+ gh label edit bug --name "bug-report" --color "ff0000"
1717
+
1718
+ # Delete label
1719
+ gh label delete bug
1720
+
1721
+ # Clone labels from repository
1722
+ gh label clone owner/repo
1723
+
1724
+ # Clone to specific repository
1725
+ gh label clone owner/repo --repo target/repo
1726
+ ```
1727
+
1728
+ ## SSH Keys (gh ssh-key)
1729
+
1730
+ ```bash
1731
+ # List SSH keys
1732
+ gh ssh-key list
1733
+
1734
+ # Add SSH key
1735
+ gh ssh-key add ~/.ssh/id_rsa.pub --title "My laptop"
1736
+
1737
+ # Add key with type
1738
+ gh ssh-key add ~/.ssh/id_ed25519.pub --type "authentication"
1739
+
1740
+ # Delete SSH key
1741
+ gh ssh-key delete 12345
1742
+
1743
+ # Delete by title
1744
+ gh ssh-key delete --title "My laptop"
1745
+ ```
1746
+
1747
+ ## GPG Keys (gh gpg-key)
1748
+
1749
+ ```bash
1750
+ # List GPG keys
1751
+ gh gpg-key list
1752
+
1753
+ # Add GPG key
1754
+ gh gpg-key add ~/.ssh/id_rsa.pub
1755
+
1756
+ # Delete GPG key
1757
+ gh gpg-key delete 12345
1758
+
1759
+ # Delete by key ID
1760
+ gh gpg-key delete ABCD1234
1761
+ ```
1762
+
1763
+ ## Status (gh status)
1764
+
1765
+ ```bash
1766
+ # Show status overview
1767
+ gh status
1768
+
1769
+ # Status for specific repositories
1770
+ gh status --repo owner/repo
1771
+
1772
+ # JSON output
1773
+ gh status --json
1774
+ ```
1775
+
1776
+ ## Configuration (gh config)
1777
+
1778
+ ```bash
1779
+ # List all config
1780
+ gh config list
1781
+
1782
+ # Get specific value
1783
+ gh config get editor
1784
+
1785
+ # Set value
1786
+ gh config set editor vim
1787
+
1788
+ # Set git protocol
1789
+ gh config set git_protocol ssh
1790
+
1791
+ # Clear cache
1792
+ gh config clear-cache
1793
+
1794
+ # Set prompt behavior
1795
+ gh config set prompt disabled
1796
+ gh config set prompt enabled
1797
+ ```
1798
+
1799
+ ## Extensions (gh extension)
1800
+
1801
+ ```bash
1802
+ # List installed extensions
1803
+ gh extension list
1804
+
1805
+ # Search extensions
1806
+ gh extension search github
1807
+
1808
+ # Install extension
1809
+ gh extension install owner/extension-repo
1810
+
1811
+ # Install from branch
1812
+ gh extension install owner/extension-repo --branch develop
1813
+
1814
+ # Upgrade extension
1815
+ gh extension upgrade extension-name
1816
+
1817
+ # Remove extension
1818
+ gh extension remove extension-name
1819
+
1820
+ # Create new extension
1821
+ gh extension create my-extension
1822
+
1823
+ # Browse extensions
1824
+ gh extension browse
1825
+
1826
+ # Execute extension command
1827
+ gh extension exec my-extension --arg value
1828
+ ```
1829
+
1830
+ ## Aliases (gh alias)
1831
+
1832
+ ```bash
1833
+ # List aliases
1834
+ gh alias list
1835
+
1836
+ # Set alias
1837
+ gh alias set prview 'pr view --web'
1838
+
1839
+ # Set shell alias
1840
+ gh alias set co 'pr checkout' --shell
1841
+
1842
+ # Delete alias
1843
+ gh alias delete prview
1844
+
1845
+ # Import aliases
1846
+ gh alias import ./aliases.sh
1847
+ ```
1848
+
1849
+ ## API Requests (gh api)
1850
+
1851
+ ```bash
1852
+ # Make API request
1853
+ gh api /user
1854
+
1855
+ # Request with method
1856
+ gh api --method POST /repos/owner/repo/issues \
1857
+ --field title="Issue title" \
1858
+ --field body="Issue body"
1859
+
1860
+ # Request with headers
1861
+ gh api /user \
1862
+ --header "Accept: application/vnd.github.v3+json"
1863
+
1864
+ # Request with pagination
1865
+ gh api /user/repos --paginate
1866
+
1867
+ # Raw output (no formatting)
1868
+ gh api /user --raw
1869
+
1870
+ # Include headers in output
1871
+ gh api /user --include
1872
+
1873
+ # Silent mode (no progress output)
1874
+ gh api /user --silent
1875
+
1876
+ # Input from file
1877
+ gh api --input request.json
1878
+
1879
+ # jq query on response
1880
+ gh api /user --jq '.login'
1881
+
1882
+ # Field from response
1883
+ gh api /repos/owner/repo --jq '.stargazers_count'
1884
+
1885
+ # GitHub Enterprise
1886
+ gh api /user --hostname enterprise.internal
1887
+
1888
+ # GraphQL query
1889
+ gh api graphql \
1890
+ -f query='
1891
+ {
1892
+ viewer {
1893
+ login
1894
+ repositories(first: 5) {
1895
+ nodes {
1896
+ name
1897
+ }
1898
+ }
1899
+ }
1900
+ }'
1901
+ ```
1902
+
1903
+ ## Rulesets (gh ruleset)
1904
+
1905
+ ```bash
1906
+ # List rulesets
1907
+ gh ruleset list
1908
+
1909
+ # View ruleset
1910
+ gh ruleset view 123
1911
+
1912
+ # Check ruleset
1913
+ gh ruleset check --branch feature
1914
+
1915
+ # Check specific repository
1916
+ gh ruleset check --repo owner/repo --branch main
1917
+ ```
1918
+
1919
+ ## Attestations (gh attestation)
1920
+
1921
+ ```bash
1922
+ # Download attestation
1923
+ gh attestation download owner/repo \
1924
+ --artifact-id 123456
1925
+
1926
+ # Verify attestation
1927
+ gh attestation verify owner/repo
1928
+
1929
+ # Get trusted root
1930
+ gh attestation trusted-root
1931
+ ```
1932
+
1933
+ ## Completion (gh completion)
1934
+
1935
+ ```bash
1936
+ # Generate shell completion
1937
+ gh completion -s bash > ~/.gh-complete.bash
1938
+ gh completion -s zsh > ~/.gh-complete.zsh
1939
+ gh completion -s fish > ~/.gh-complete.fish
1940
+ gh completion -s powershell > ~/.gh-complete.ps1
1941
+
1942
+ # Shell-specific instructions
1943
+ gh completion --shell=bash
1944
+ gh completion --shell=zsh
1945
+ ```
1946
+
1947
+ ## Preview (gh preview)
1948
+
1949
+ ```bash
1950
+ # List preview features
1951
+ gh preview
1952
+
1953
+ # Run preview script
1954
+ gh preview prompter
1955
+ ```
1956
+
1957
+ ## Agent Tasks (gh agent-task)
1958
+
1959
+ ```bash
1960
+ # List agent tasks
1961
+ gh agent-task list
1962
+
1963
+ # View agent task
1964
+ gh agent-task view 123
1965
+
1966
+ # Create agent task
1967
+ gh agent-task create --description "My task"
1968
+ ```
1969
+
1970
+ ## Global Flags
1971
+
1972
+ | Flag | Description |
1973
+ | -------------------------- | -------------------------------------- |
1974
+ | `--help` / `-h` | Show help for command |
1975
+ | `--version` | Show gh version |
1976
+ | `--repo [HOST/]OWNER/REPO` | Select another repository |
1977
+ | `--hostname HOST` | GitHub hostname |
1978
+ | `--jq EXPRESSION` | Filter JSON output |
1979
+ | `--json FIELDS` | Output JSON with specified fields |
1980
+ | `--template STRING` | Format JSON using Go template |
1981
+ | `--web` | Open in browser |
1982
+ | `--paginate` | Make additional API calls |
1983
+ | `--verbose` | Show verbose output |
1984
+ | `--debug` | Show debug output |
1985
+ | `--timeout SECONDS` | Maximum API request duration |
1986
+ | `--cache CACHE` | Cache control (default, force, bypass) |
1987
+
1988
+ ## Output Formatting
1989
+
1990
+ ### JSON Output
1991
+
1992
+ ```bash
1993
+ # Basic JSON
1994
+ gh repo view --json name,description
1995
+
1996
+ # Nested fields
1997
+ gh repo view --json owner,name --jq '.owner.login + "/" + .name'
1998
+
1999
+ # Array operations
2000
+ gh pr list --json number,title --jq '.[] | select(.number > 100)'
2001
+
2002
+ # Complex queries
2003
+ gh issue list --json number,title,labels \
2004
+ --jq '.[] | {number, title: .title, tags: [.labels[].name]}'
2005
+ ```
2006
+
2007
+ ### Template Output
2008
+
2009
+ ```bash
2010
+ # Custom template
2011
+ gh repo view \
2012
+ --template '{{.name}}: {{.description}}'
2013
+
2014
+ # Multiline template
2015
+ gh pr view 123 \
2016
+ --template 'Title: {{.title}}
2017
+ Author: {{.author.login}}
2018
+ State: {{.state}}
2019
+ '
2020
+ ```
2021
+
2022
+ ## Common Workflows
2023
+
2024
+ ### Create PR from Issue
2025
+
2026
+ ```bash
2027
+ # Create branch from issue
2028
+ gh issue develop 123 --branch feature/issue-123
2029
+
2030
+ # Make changes, commit, push
2031
+ git add .
2032
+ git commit -m "Fix issue #123"
2033
+ git push
2034
+
2035
+ # Create PR linking to issue
2036
+ gh pr create --title "Fix #123" --body "Closes #123"
2037
+ ```
2038
+
2039
+ ### Bulk Operations
2040
+
2041
+ ```bash
2042
+ # Close multiple issues
2043
+ gh issue list --search "label:stale" \
2044
+ --json number \
2045
+ --jq '.[].number' | \
2046
+ xargs -I {} gh issue close {} --comment "Closing as stale"
2047
+
2048
+ # Add label to multiple PRs
2049
+ gh pr list --search "review:required" \
2050
+ --json number \
2051
+ --jq '.[].number' | \
2052
+ xargs -I {} gh pr edit {} --add-label needs-review
2053
+ ```
2054
+
2055
+ ### Repository Setup Workflow
2056
+
2057
+ ```bash
2058
+ # Create repository with initial setup
2059
+ gh repo create my-project --public \
2060
+ --description "My awesome project" \
2061
+ --clone \
2062
+ --gitignore python \
2063
+ --license mit
2064
+
2065
+ cd my-project
2066
+
2067
+ # Set up branches
2068
+ git checkout -b develop
2069
+ git push -u origin develop
2070
+
2071
+ # Create labels
2072
+ gh label create bug --color "d73a4a" --description "Bug report"
2073
+ gh label create enhancement --color "a2eeef" --description "Feature request"
2074
+ gh label create documentation --color "0075ca" --description "Documentation"
2075
+ ```
2076
+
2077
+ ### CI/CD Workflow
2078
+
2079
+ ```bash
2080
+ # Run workflow and wait
2081
+ RUN_ID=$(gh workflow run ci.yml --ref main --jq '.databaseId')
2082
+
2083
+ # Watch the run
2084
+ gh run watch "$RUN_ID"
2085
+
2086
+ # Download artifacts on completion
2087
+ gh run download "$RUN_ID" --dir ./artifacts
2088
+ ```
2089
+
2090
+ ### Fork Sync Workflow
2091
+
2092
+ ```bash
2093
+ # Fork repository
2094
+ gh repo fork original/repo --clone
2095
+
2096
+ cd repo
2097
+
2098
+ # Add upstream remote
2099
+ git remote add upstream https://github.com/original/repo.git
2100
+
2101
+ # Sync fork
2102
+ gh repo sync
2103
+
2104
+ # Or manual sync
2105
+ git fetch upstream
2106
+ git checkout main
2107
+ git merge upstream/main
2108
+ git push origin main
2109
+ ```
2110
+
2111
+ ## Environment Setup
2112
+
2113
+ ### Shell Integration
2114
+
2115
+ ```bash
2116
+ # Add to ~/.bashrc or ~/.zshrc
2117
+ eval "$(gh completion -s bash)" # or zsh/fish
2118
+
2119
+ # Create useful aliases
2120
+ alias gs='gh status'
2121
+ alias gpr='gh pr view --web'
2122
+ alias gir='gh issue view --web'
2123
+ alias gco='gh pr checkout'
2124
+ ```
2125
+
2126
+ ### Git Configuration
2127
+
2128
+ ```bash
2129
+ # Use gh as credential helper
2130
+ gh auth setup-git
2131
+
2132
+ # Set gh as default for repo operations
2133
+ git config --global credential.helper 'gh !gh auth setup-git'
2134
+
2135
+ # Or manually
2136
+ git config --global credential.helper github
2137
+ ```
2138
+
2139
+ ## Best Practices
2140
+
2141
+ 1. **Authentication**: Use environment variables for automation
2142
+
2143
+ ```bash
2144
+ export GH_TOKEN=$(gh auth token)
2145
+ ```
2146
+
2147
+ 2. **Default Repository**: Set default to avoid repetition
2148
+
2149
+ ```bash
2150
+ gh repo set-default owner/repo
2151
+ ```
2152
+
2153
+ 3. **JSON Parsing**: Use jq for complex data extraction
2154
+
2155
+ ```bash
2156
+ gh pr list --json number,title --jq '.[] | select(.title | contains("fix"))'
2157
+ ```
2158
+
2159
+ 4. **Pagination**: Use --paginate for large result sets
2160
+
2161
+ ```bash
2162
+ gh issue list --state all --paginate
2163
+ ```
2164
+
2165
+ 5. **Caching**: Use cache control for frequently accessed data
2166
+ ```bash
2167
+ gh api /user --cache force
2168
+ ```
2169
+
2170
+ ## Getting Help
2171
+
2172
+ ```bash
2173
+ # General help
2174
+ gh --help
2175
+
2176
+ # Command help
2177
+ gh pr --help
2178
+ gh issue create --help
2179
+
2180
+ # Help topics
2181
+ gh help formatting
2182
+ gh help environment
2183
+ gh help exit-codes
2184
+ gh help accessibility
2185
+ ```
2186
+
2187
+ ## References
2188
+
2189
+ - Official Manual: https://cli.github.com/manual/
2190
+ - GitHub Docs: https://docs.github.com/en/github-cli
2191
+ - REST API: https://docs.github.com/en/rest
2192
+ - GraphQL API: https://docs.github.com/en/graphql