hive-skills 0.1.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 (238) hide show
  1. package/LICENSE +28 -0
  2. package/README.md +235 -0
  3. package/assets/LICENSE +32 -0
  4. package/assets/THIRD_PARTY_NOTICES.md +72 -0
  5. package/assets/manifest.json +1290 -0
  6. package/assets/skills/authored/code-review/composable/BUNDLE.md +192 -0
  7. package/assets/skills/authored/code-review/composable/INDEX.md +13 -0
  8. package/assets/skills/authored/code-review/composable/VERSION +1 -0
  9. package/assets/skills/authored/code-review/composable/mini/01-review-method.md +34 -0
  10. package/assets/skills/authored/code-review/composable/mini/02-security-review.md +20 -0
  11. package/assets/skills/authored/code-review/composable/mini/03-correctness-bugs.md +19 -0
  12. package/assets/skills/authored/code-review/composable/mini/04-concurrency.md +16 -0
  13. package/assets/skills/authored/code-review/composable/mini/05-error-handling.md +12 -0
  14. package/assets/skills/authored/code-review/composable/mini/06-performance.md +11 -0
  15. package/assets/skills/authored/code-review/composable/mini/07-api-design.md +20 -0
  16. package/assets/skills/authored/code-review/composable/mini/08-missing-tests.md +25 -0
  17. package/assets/skills/authored/code-review/composable/mini/09-refactoring-and-communication.md +32 -0
  18. package/assets/skills/authored/data-analysis/composable/BUNDLE.md +186 -0
  19. package/assets/skills/authored/data-analysis/composable/INDEX.md +13 -0
  20. package/assets/skills/authored/data-analysis/composable/VERSION +1 -0
  21. package/assets/skills/authored/data-analysis/composable/mini/01-data-quality-profiling.md +26 -0
  22. package/assets/skills/authored/data-analysis/composable/mini/02-aggregation-pitfalls.md +21 -0
  23. package/assets/skills/authored/data-analysis/composable/mini/03-time-series.md +19 -0
  24. package/assets/skills/authored/data-analysis/composable/mini/04-segmentation.md +23 -0
  25. package/assets/skills/authored/data-analysis/composable/mini/05-discount-pricing.md +17 -0
  26. package/assets/skills/authored/data-analysis/composable/mini/06-insight-generation.md +25 -0
  27. package/assets/skills/authored/data-analysis/composable/mini/07-executive-writing.md +26 -0
  28. package/assets/skills/authored/data-analysis/composable/mini/08-recommendations.md +20 -0
  29. package/assets/skills/authored/data-analysis/composable/mini/09-reproducibility-assumptions.md +20 -0
  30. package/assets/skills/authored/financial-analysis/composable/BUNDLE.md +1293 -0
  31. package/assets/skills/authored/financial-analysis/composable/INDEX.md +17 -0
  32. package/assets/skills/authored/financial-analysis/composable/VERSION +1 -0
  33. package/assets/skills/authored/financial-analysis/composable/mini/00-core.md +69 -0
  34. package/assets/skills/authored/financial-analysis/composable/mini/01-profitability-efficiency-ratios.md +173 -0
  35. package/assets/skills/authored/financial-analysis/composable/mini/02-liquidity-leverage-ratios.md +120 -0
  36. package/assets/skills/authored/financial-analysis/composable/mini/03-valuation-ratios-interpretation.md +107 -0
  37. package/assets/skills/authored/financial-analysis/composable/mini/04-dcf-projection-wacc.md +122 -0
  38. package/assets/skills/authored/financial-analysis/composable/mini/05-dcf-terminal-value-sensitivity.md +75 -0
  39. package/assets/skills/authored/financial-analysis/composable/mini/06-comparables-precedents.md +78 -0
  40. package/assets/skills/authored/financial-analysis/composable/mini/07-budget-variance-analysis.md +47 -0
  41. package/assets/skills/authored/financial-analysis/composable/mini/08-driver-based-forecasting-scenarios.md +111 -0
  42. package/assets/skills/authored/financial-analysis/composable/mini/09-rolling-forecasts-accuracy.md +114 -0
  43. package/assets/skills/authored/financial-analysis/composable/mini/10-reporting-exec-summary.md +58 -0
  44. package/assets/skills/authored/financial-analysis/composable/mini/11-industry-adaptations.md +130 -0
  45. package/assets/skills/authored/financial-analysis/composable/mini/12-toolkit-scripts-io.md +102 -0
  46. package/assets/skills/authored/python-api/composable/BUNDLE.md +389 -0
  47. package/assets/skills/authored/python-api/composable/INDEX.md +13 -0
  48. package/assets/skills/authored/python-api/composable/VERSION +1 -0
  49. package/assets/skills/authored/python-api/composable/mini/01-project-structure.md +44 -0
  50. package/assets/skills/authored/python-api/composable/mini/02-routing-and-app.md +38 -0
  51. package/assets/skills/authored/python-api/composable/mini/03-pydantic-models.md +45 -0
  52. package/assets/skills/authored/python-api/composable/mini/04-validation-and-errors.md +59 -0
  53. package/assets/skills/authored/python-api/composable/mini/05-dependencies-and-auth.md +60 -0
  54. package/assets/skills/authored/python-api/composable/mini/06-pagination-filtering.md +44 -0
  55. package/assets/skills/authored/python-api/composable/mini/07-async-performance.md +30 -0
  56. package/assets/skills/authored/python-api/composable/mini/08-testing.md +45 -0
  57. package/assets/skills/authored/python-api/composable/mini/09-middleware-observability.md +29 -0
  58. package/assets/skills/authored/tech-writing/composable/BUNDLE.md +220 -0
  59. package/assets/skills/authored/tech-writing/composable/INDEX.md +12 -0
  60. package/assets/skills/authored/tech-writing/composable/VERSION +1 -0
  61. package/assets/skills/authored/tech-writing/composable/mini/01-audience-analysis.md +26 -0
  62. package/assets/skills/authored/tech-writing/composable/mini/02-document-types.md +27 -0
  63. package/assets/skills/authored/tech-writing/composable/mini/03-readme-quickstart-changelog.md +22 -0
  64. package/assets/skills/authored/tech-writing/composable/mini/04-information-architecture.md +21 -0
  65. package/assets/skills/authored/tech-writing/composable/mini/05-style-clarity.md +29 -0
  66. package/assets/skills/authored/tech-writing/composable/mini/06-breaking-changes-migrations.md +33 -0
  67. package/assets/skills/authored/tech-writing/composable/mini/07-troubleshooting-security.md +30 -0
  68. package/assets/skills/authored/tech-writing/composable/mini/08-faq-voice-tone.md +32 -0
  69. package/assets/skills/converted/claude-api/composable/BUNDLE.md +14996 -0
  70. package/assets/skills/converted/claude-api/composable/INDEX.md +98 -0
  71. package/assets/skills/converted/claude-api/composable/VERSION +1 -0
  72. package/assets/skills/converted/claude-api/composable/mini/00-core.md +235 -0
  73. package/assets/skills/converted/claude-api/composable/mini/01-model-api-quick-reference.md +258 -0
  74. package/assets/skills/converted/claude-api/composable/mini/02-common-pitfalls.md +42 -0
  75. package/assets/skills/converted/claude-api/composable/mini/10-models.md +135 -0
  76. package/assets/skills/converted/claude-api/composable/mini/11-platform-availability.md +96 -0
  77. package/assets/skills/converted/claude-api/composable/mini/12-claude-platform-on-aws.md +59 -0
  78. package/assets/skills/converted/claude-api/composable/mini/13-live-sources.md +143 -0
  79. package/assets/skills/converted/claude-api/composable/mini/14-error-codes.md +256 -0
  80. package/assets/skills/converted/claude-api/composable/mini/15-prompt-caching.md +223 -0
  81. package/assets/skills/converted/claude-api/composable/mini/16-token-counting.md +56 -0
  82. package/assets/skills/converted/claude-api/composable/mini/17-tool-use-concepts.md +444 -0
  83. package/assets/skills/converted/claude-api/composable/mini/18-agent-design.md +101 -0
  84. package/assets/skills/converted/claude-api/composable/mini/19-anthropic-cli.md +246 -0
  85. package/assets/skills/converted/claude-api/composable/mini/20-model-migration.md +1301 -0
  86. package/assets/skills/converted/claude-api/composable/mini/30-managed-agents-overview.md +71 -0
  87. package/assets/skills/converted/claude-api/composable/mini/31-managed-agents-core.md +278 -0
  88. package/assets/skills/converted/claude-api/composable/mini/32-managed-agents-environments.md +219 -0
  89. package/assets/skills/converted/claude-api/composable/mini/33-managed-agents-tools.md +366 -0
  90. package/assets/skills/converted/claude-api/composable/mini/34-managed-agents-events.md +252 -0
  91. package/assets/skills/converted/claude-api/composable/mini/35-managed-agents-outcomes.md +106 -0
  92. package/assets/skills/converted/claude-api/composable/mini/36-managed-agents-multiagent.md +101 -0
  93. package/assets/skills/converted/claude-api/composable/mini/37-managed-agents-webhooks.md +123 -0
  94. package/assets/skills/converted/claude-api/composable/mini/38-managed-agents-memory.md +197 -0
  95. package/assets/skills/converted/claude-api/composable/mini/39-managed-agents-scheduled-deployments.md +146 -0
  96. package/assets/skills/converted/claude-api/composable/mini/40-managed-agents-client-patterns.md +211 -0
  97. package/assets/skills/converted/claude-api/composable/mini/41-managed-agents-onboarding.md +82 -0
  98. package/assets/skills/converted/claude-api/composable/mini/42-managed-agents-api-reference.md +441 -0
  99. package/assets/skills/converted/claude-api/composable/mini/43-managed-agents-self-hosted-sandboxes.md +174 -0
  100. package/assets/skills/converted/claude-api/composable/mini/50-python-readme.md +564 -0
  101. package/assets/skills/converted/claude-api/composable/mini/51-python-tool-use.md +590 -0
  102. package/assets/skills/converted/claude-api/composable/mini/52-python-streaming-batches-files.md +549 -0
  103. package/assets/skills/converted/claude-api/composable/mini/53-python-managed-agents.md +335 -0
  104. package/assets/skills/converted/claude-api/composable/mini/55-typescript-readme.md +404 -0
  105. package/assets/skills/converted/claude-api/composable/mini/56-typescript-tool-use.md +548 -0
  106. package/assets/skills/converted/claude-api/composable/mini/57-typescript-streaming-batches-files.md +384 -0
  107. package/assets/skills/converted/claude-api/composable/mini/58-typescript-managed-agents.md +358 -0
  108. package/assets/skills/converted/claude-api/composable/mini/60-csharp-readme.md +361 -0
  109. package/assets/skills/converted/claude-api/composable/mini/61-csharp-tool-use.md +163 -0
  110. package/assets/skills/converted/claude-api/composable/mini/62-csharp-streaming-batches-files.md +64 -0
  111. package/assets/skills/converted/claude-api/composable/mini/65-go-readme.md +185 -0
  112. package/assets/skills/converted/claude-api/composable/mini/66-go-tool-use.md +219 -0
  113. package/assets/skills/converted/claude-api/composable/mini/67-go-streaming-files.md +63 -0
  114. package/assets/skills/converted/claude-api/composable/mini/68-go-managed-agents.md +564 -0
  115. package/assets/skills/converted/claude-api/composable/mini/70-java-readme.md +237 -0
  116. package/assets/skills/converted/claude-api/composable/mini/71-java-tool-use.md +227 -0
  117. package/assets/skills/converted/claude-api/composable/mini/72-java-streaming-files.md +49 -0
  118. package/assets/skills/converted/claude-api/composable/mini/73-java-managed-agents.md +443 -0
  119. package/assets/skills/converted/claude-api/composable/mini/75-php-readme.md +173 -0
  120. package/assets/skills/converted/claude-api/composable/mini/76-php-tool-use.md +252 -0
  121. package/assets/skills/converted/claude-api/composable/mini/77-php-streaming-batches-files.md +53 -0
  122. package/assets/skills/converted/claude-api/composable/mini/78-php-managed-agents.md +443 -0
  123. package/assets/skills/converted/claude-api/composable/mini/80-ruby-readme.md +133 -0
  124. package/assets/skills/converted/claude-api/composable/mini/81-ruby-tool-use-streaming.md +56 -0
  125. package/assets/skills/converted/claude-api/composable/mini/82-ruby-managed-agents.md +394 -0
  126. package/assets/skills/converted/claude-api/composable/mini/85-curl-examples.md +255 -0
  127. package/assets/skills/converted/claude-api/composable/mini/86-curl-managed-agents.md +340 -0
  128. package/assets/skills/converted/claude-api/composable/presets/csharp.md +1151 -0
  129. package/assets/skills/converted/claude-api/composable/presets/curl.md +1154 -0
  130. package/assets/skills/converted/claude-api/composable/presets/go.md +1598 -0
  131. package/assets/skills/converted/claude-api/composable/presets/java.md +1523 -0
  132. package/assets/skills/converted/claude-api/composable/presets/php.md +1488 -0
  133. package/assets/skills/converted/claude-api/composable/presets/python.md +2605 -0
  134. package/assets/skills/converted/claude-api/composable/presets/ruby.md +1146 -0
  135. package/assets/skills/converted/claude-api/composable/presets/shared.md +6478 -0
  136. package/assets/skills/converted/claude-api/composable/presets/typescript.md +2261 -0
  137. package/assets/skills/converted/docx/composable/BUNDLE.md +617 -0
  138. package/assets/skills/converted/docx/composable/INDEX.md +12 -0
  139. package/assets/skills/converted/docx/composable/VERSION +1 -0
  140. package/assets/skills/converted/docx/composable/mini/00-core.md +26 -0
  141. package/assets/skills/converted/docx/composable/mini/01-reading-converting.md +36 -0
  142. package/assets/skills/converted/docx/composable/mini/02-creating-setup-layout.md +85 -0
  143. package/assets/skills/converted/docx/composable/mini/03-creating-elements.md +257 -0
  144. package/assets/skills/converted/docx/composable/mini/04-editing-existing.md +57 -0
  145. package/assets/skills/converted/docx/composable/mini/05-xml-reference.md +128 -0
  146. package/assets/skills/converted/internal-comms/composable/BUNDLE.md +220 -0
  147. package/assets/skills/converted/internal-comms/composable/INDEX.md +11 -0
  148. package/assets/skills/converted/internal-comms/composable/VERSION +1 -0
  149. package/assets/skills/converted/internal-comms/composable/mini/00-core.md +30 -0
  150. package/assets/skills/converted/internal-comms/composable/mini/01-3p-updates.md +49 -0
  151. package/assets/skills/converted/internal-comms/composable/mini/02-company-newsletter.md +67 -0
  152. package/assets/skills/converted/internal-comms/composable/mini/03-faq-answers.md +32 -0
  153. package/assets/skills/converted/internal-comms/composable/mini/04-general-comms.md +18 -0
  154. package/assets/skills/converted/mcp-builder/composable/BUNDLE.md +2460 -0
  155. package/assets/skills/converted/mcp-builder/composable/INDEX.md +23 -0
  156. package/assets/skills/converted/mcp-builder/composable/VERSION +1 -0
  157. package/assets/skills/converted/mcp-builder/composable/mini/00-core.md +43 -0
  158. package/assets/skills/converted/mcp-builder/composable/mini/01-workflow-research-planning.md +54 -0
  159. package/assets/skills/converted/mcp-builder/composable/mini/02-implementation-process.md +78 -0
  160. package/assets/skills/converted/mcp-builder/composable/mini/03-naming-conventions.md +33 -0
  161. package/assets/skills/converted/mcp-builder/composable/mini/04-response-formats.md +21 -0
  162. package/assets/skills/converted/mcp-builder/composable/mini/05-pagination.md +24 -0
  163. package/assets/skills/converted/mcp-builder/composable/mini/06-transport.md +47 -0
  164. package/assets/skills/converted/mcp-builder/composable/mini/07-annotations.md +20 -0
  165. package/assets/skills/converted/mcp-builder/composable/mini/08-security.md +35 -0
  166. package/assets/skills/converted/mcp-builder/composable/mini/09-error-handling.md +32 -0
  167. package/assets/skills/converted/mcp-builder/composable/mini/10-testing-and-documentation.md +21 -0
  168. package/assets/skills/converted/mcp-builder/composable/mini/11-python-implementation.md +432 -0
  169. package/assets/skills/converted/mcp-builder/composable/mini/12-python-advanced-and-checklist.md +233 -0
  170. package/assets/skills/converted/mcp-builder/composable/mini/13-node-implementation.md +717 -0
  171. package/assets/skills/converted/mcp-builder/composable/mini/14-node-advanced-and-checklist.md +200 -0
  172. package/assets/skills/converted/mcp-builder/composable/mini/15-evaluation-design.md +200 -0
  173. package/assets/skills/converted/mcp-builder/composable/mini/16-evaluation-running.md +198 -0
  174. package/assets/skills/converted/mcp-builder/composable/presets/node-server.md +1381 -0
  175. package/assets/skills/converted/mcp-builder/composable/presets/python-server.md +1129 -0
  176. package/assets/skills/converted/pdf/composable/BUNDLE.md +1284 -0
  177. package/assets/skills/converted/pdf/composable/INDEX.md +14 -0
  178. package/assets/skills/converted/pdf/composable/VERSION +1 -0
  179. package/assets/skills/converted/pdf/composable/mini/00-core.md +46 -0
  180. package/assets/skills/converted/pdf/composable/mini/01-creation.md +176 -0
  181. package/assets/skills/converted/pdf/composable/mini/02-extraction.md +178 -0
  182. package/assets/skills/converted/pdf/composable/mini/03-merge-split-manipulate.md +240 -0
  183. package/assets/skills/converted/pdf/composable/mini/04-images-ocr.md +168 -0
  184. package/assets/skills/converted/pdf/composable/mini/05-encryption.md +51 -0
  185. package/assets/skills/converted/pdf/composable/mini/06-forms.md +300 -0
  186. package/assets/skills/converted/pdf/composable/mini/07-libraries-reference.md +89 -0
  187. package/assets/skills/converted/pptx/composable/BUNDLE.md +911 -0
  188. package/assets/skills/converted/pptx/composable/INDEX.md +12 -0
  189. package/assets/skills/converted/pptx/composable/VERSION +1 -0
  190. package/assets/skills/converted/pptx/composable/mini/00-core.md +37 -0
  191. package/assets/skills/converted/pptx/composable/mini/01-reading.md +37 -0
  192. package/assets/skills/converted/pptx/composable/mini/02-creating-from-scratch.md +422 -0
  193. package/assets/skills/converted/pptx/composable/mini/03-editing-templates.md +207 -0
  194. package/assets/skills/converted/pptx/composable/mini/04-design.md +89 -0
  195. package/assets/skills/converted/pptx/composable/mini/05-qa-and-rendering.md +91 -0
  196. package/assets/skills/converted/pptx/composable/presets/creating.md +659 -0
  197. package/assets/skills/converted/pptx/composable/presets/editing.md +485 -0
  198. package/assets/skills/converted/skill-creator/composable/BUNDLE.md +1681 -0
  199. package/assets/skills/converted/skill-creator/composable/INDEX.md +21 -0
  200. package/assets/skills/converted/skill-creator/composable/VERSION +1 -0
  201. package/assets/skills/converted/skill-creator/composable/mini/00-core.md +59 -0
  202. package/assets/skills/converted/skill-creator/composable/mini/01-creating-a-skill.md +27 -0
  203. package/assets/skills/converted/skill-creator/composable/mini/02-skill-writing-guide.md +71 -0
  204. package/assets/skills/converted/skill-creator/composable/mini/03-test-cases.md +21 -0
  205. package/assets/skills/converted/skill-creator/composable/mini/04-running-and-evaluating.md +128 -0
  206. package/assets/skills/converted/skill-creator/composable/mini/05-improving-the-skill.md +30 -0
  207. package/assets/skills/converted/skill-creator/composable/mini/06-blind-comparison.md +5 -0
  208. package/assets/skills/converted/skill-creator/composable/mini/07-description-optimization.md +74 -0
  209. package/assets/skills/converted/skill-creator/composable/mini/08-packaging.md +11 -0
  210. package/assets/skills/converted/skill-creator/composable/mini/09-environment-specific.md +38 -0
  211. package/assets/skills/converted/skill-creator/composable/mini/10-scripts-and-references.md +34 -0
  212. package/assets/skills/converted/skill-creator/composable/mini/11-json-schemas.md +414 -0
  213. package/assets/skills/converted/skill-creator/composable/mini/12-agent-grader.md +225 -0
  214. package/assets/skills/converted/skill-creator/composable/mini/13-agent-comparator.md +204 -0
  215. package/assets/skills/converted/skill-creator/composable/mini/14-agent-analyzer.md +276 -0
  216. package/assets/skills/converted/skill-creator/composable/presets/authoring.md +198 -0
  217. package/assets/skills/converted/skill-creator/composable/presets/evaluating.md +1334 -0
  218. package/assets/skills/converted/skill-creator/composable/presets/optimizing.md +160 -0
  219. package/assets/skills/converted/skill-creator/composable/presets.json +5 -0
  220. package/assets/skills/meta/ccs-skill-creator/composable/BUNDLE.md +465 -0
  221. package/assets/skills/meta/ccs-skill-creator/composable/INDEX.md +8 -0
  222. package/assets/skills/meta/ccs-skill-creator/composable/VERSION +1 -0
  223. package/assets/skills/meta/ccs-skill-creator/composable/mini/00-core.md +46 -0
  224. package/assets/skills/meta/ccs-skill-creator/composable/mini/01-create-new-skill.md +167 -0
  225. package/assets/skills/meta/ccs-skill-creator/composable/mini/02-convert-existing-skill.md +120 -0
  226. package/assets/skills/meta/ccs-skill-creator/composable/mini/03-review-and-maintain.md +112 -0
  227. package/assets/skills/sources/anthropic/PROVENANCE.md +3 -0
  228. package/assets/skills/sources/anthropic/claude-api/LICENSE.txt +202 -0
  229. package/assets/skills/sources/anthropic/docx/LICENSE.txt +30 -0
  230. package/assets/skills/sources/anthropic/internal-comms/LICENSE.txt +202 -0
  231. package/assets/skills/sources/anthropic/mcp-builder/LICENSE.txt +202 -0
  232. package/assets/skills/sources/anthropic/pdf/LICENSE.txt +30 -0
  233. package/assets/skills/sources/anthropic/pptx/LICENSE.txt +30 -0
  234. package/assets/skills/sources/anthropic/skill-creator/LICENSE.txt +202 -0
  235. package/assets/skills/sources/financial-analyst/PROVENANCE.md +1 -0
  236. package/assets/tools/hive.py +728 -0
  237. package/dist/cli.js +7494 -0
  238. package/package.json +40 -0
@@ -0,0 +1,220 @@
1
+ <!-- GENERATED by tools/hive.py compile. Do not hand-edit. -->
2
+ # internal-comms: Compiled Skill Bundle (v1.0.0)
3
+
4
+ All composable mini-skills for `internal-comms` concatenated in index order, frontmatter stripped. Regenerate with `tools/hive.py compile <skill-dir>`. Do not edit by hand.
5
+
6
+ ---
7
+ <!-- module: 00-core.md -->
8
+
9
+ # Internal Comms — Core
10
+
11
+ Cross-cutting rules for writing all kinds of internal communications, using the formats that my company likes to use. Use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).
12
+
13
+ ## When to use this skill
14
+ To write internal communications, use this skill for:
15
+ - 3P updates (Progress, Plans, Problems)
16
+ - Company newsletters
17
+ - FAQ responses
18
+ - Status reports
19
+ - Leadership updates
20
+ - Project updates
21
+ - Incident reports
22
+
23
+ ## How to use this skill
24
+
25
+ To write any internal communication:
26
+
27
+ 1. **Identify the communication type** from the request
28
+ 2. **Load the appropriate mini** for that communication type:
29
+ - `01-3p-updates.md` - For Progress/Plans/Problems team updates
30
+ - `02-company-newsletter.md` - For company-wide newsletters
31
+ - `03-faq-answers.md` - For answering frequently asked questions
32
+ - `04-general-comms.md` - For anything else that doesn't explicitly match one of the above
33
+ 3. **Follow the specific instructions** in that mini for formatting, tone, and content gathering
34
+
35
+ If the communication type doesn't match any existing guideline, ask for clarification or more context about the desired format.
36
+
37
+ ## Keywords
38
+ 3P updates, company newsletter, company comms, weekly update, faqs, common questions, updates, internal comms
39
+
40
+ ---
41
+ <!-- module: 01-3p-updates.md -->
42
+
43
+ # 3P Updates (Progress, Plans, Problems)
44
+
45
+ ## Instructions
46
+ You are being asked to write a 3P update. 3P updates stand for "Progress, Plans, Problems." The main audience is for executives, leadership, other teammates, etc. They're meant to be very succinct and to-the-point: think something you can read in 30-60sec or less. They're also for people with some, but not a lot of context on what the team does.
47
+
48
+ 3Ps can cover a team of any size, ranging all the way up to the entire company. The bigger the team, the less granular the tasks should be. For example, "mobile team" might have "shipped feature" or "fixed bugs," whereas the company might have really meaty 3Ps, like "hired 20 new people" or "closed 10 new deals."
49
+
50
+ They represent the work of the team across a time period, almost always one week. They include three sections:
51
+ 1) Progress: what the team has accomplished over the next time period. Focus mainly on things shipped, milestones achieved, tasks created, etc.
52
+ 2) Plans: what the team plans to do over the next time period. Focus on what things are top-of-mind, really high priority, etc. for the team.
53
+ 3) Problems: anything that is slowing the team down. This could be things like too few people, bugs or blockers that are preventing the team from moving forward, some deal that fell through, etc.
54
+
55
+ Before writing them, make sure that you know the team name. If it's not specified, you can ask explicitly what the team name you're writing for is.
56
+
57
+
58
+ ## Tools Available
59
+ Whenever possible, try to pull from available sources to get the information you need:
60
+ - Slack: posts from team members with their updates - ideally look for posts in large channels with lots of reactions
61
+ - Google Drive: docs written from critical team members with lots of views
62
+ - Email: emails with lots of responses of lots of content that seems relevant
63
+ - Calendar: non-recurring meetings that have a lot of importance, like product reviews, etc.
64
+
65
+
66
+ Try to gather as much context as you can, focusing on the things that covered the time period you're writing for:
67
+ - Progress: anything between a week ago and today
68
+ - Plans: anything from today to the next week
69
+ - Problems: anything between a week ago and today
70
+
71
+
72
+ If you don't have access, you can ask the user for things they want to cover. They might also include these things to you directly, in which case you're mostly just formatting for this particular format.
73
+
74
+ ## Workflow
75
+
76
+ 1. **Clarify scope**: Confirm the team name and time period (usually past week for Progress/Problems, next
77
+ week for Plans)
78
+ 2. **Gather information**: Use available tools or ask the user directly
79
+ 3. **Draft the update**: Follow the strict formatting guidelines
80
+ 4. **Review**: Ensure it's concise (30-60 seconds to read) and data-driven
81
+
82
+ ## Formatting
83
+
84
+ The format is always the same, very strict formatting. Never use any formatting other than this. Pick an emoji that is fun and captures the vibe of the team and update.
85
+
86
+ [pick an emoji] [Team Name] (Dates Covered, usually a week)
87
+ Progress: [1-3 sentences of content]
88
+ Plans: [1-3 sentences of content]
89
+ Problems: [1-3 sentences of content]
90
+
91
+ Each section should be no more than 1-3 sentences: clear, to the point. It should be data-driven, and generally include metrics where possible. The tone should be very matter-of-fact, not super prose-heavy.
92
+
93
+ ---
94
+ <!-- module: 02-company-newsletter.md -->
95
+
96
+ # Company Newsletter
97
+
98
+ ## Instructions
99
+ You are being asked to write a company-wide newsletter update. You are meant to summarize the past week/month of a company in the form of a newsletter that the entire company will read. It should be maybe ~20-25 bullet points long. It will be sent via Slack and email, so make it consumable for that.
100
+
101
+ Ideally it includes the following attributes:
102
+ - Lots of links: pulling documents from Google Drive that are very relevant, linking to prominent Slack messages in announce channels and from executives, perhgaps referencing emails that went company-wide, highlighting significant things that have happened in the company.
103
+ - Short and to-the-point: each bullet should probably be no longer than ~1-2 sentences
104
+ - Use the "we" tense, as you are part of the company. Many of the bullets should say "we did this" or "we did that"
105
+
106
+ ## Tools to use
107
+ If you have access to the following tools, please try to use them. If not, you can also let the user know directly that their responses would be better if they gave them access.
108
+
109
+ - Slack: look for messages in channels with lots of people, with lots of reactions or lots of responses within the thread
110
+ - Email: look for things from executives that discuss company-wide announcements
111
+ - Calendar: if there were meetings with large attendee lists, particularly things like All-Hands meetings, big company announcements, etc. If there were documents attached to those meetings, those are great links to include.
112
+ - Documents: if there were new docs published in the last week or two that got a lot of attention, you can link them. These should be things like company-wide vision docs, plans for the upcoming quarter or half, things authored by critical executives, etc.
113
+ - External press: if you see references to articles or press we've received over the past week, that could be really cool too.
114
+
115
+ If you don't have access to any of these things, you can ask the user for things they want to cover. In this case, you'll mostly just be polishing up and fitting to this format more directly.
116
+
117
+ ## Sections
118
+ The company is pretty big: 1000+ people. There are a variety of different teams and initiatives going on across the company. To make sure the update works well, try breaking it into sections of similar things. You might break into clusters like {product development, go to market, finance} or {recruiting, execution, vision}, or {external news, internal news} etc. Try to make sure the different areas of the company are highlighted well.
119
+
120
+ ## Prioritization
121
+ Focus on:
122
+ - Company-wide impact (not team-specific details)
123
+ - Announcements from leadership
124
+ - Major milestones and achievements
125
+ - Information that affects most employees
126
+ - External recognition or press
127
+
128
+ Avoid:
129
+ - Overly granular team updates (save those for 3Ps)
130
+ - Information only relevant to small groups
131
+ - Duplicate information already communicated
132
+
133
+ ## Example Formats
134
+
135
+ :megaphone: Company Announcements
136
+ - Announcement 1
137
+ - Announcement 2
138
+ - Announcement 3
139
+
140
+ :dart: Progress on Priorities
141
+ - Area 1
142
+ - Sub-area 1
143
+ - Sub-area 2
144
+ - Sub-area 3
145
+ - Area 2
146
+ - Sub-area 1
147
+ - Sub-area 2
148
+ - Sub-area 3
149
+ - Area 3
150
+ - Sub-area 1
151
+ - Sub-area 2
152
+ - Sub-area 3
153
+
154
+ :pillar: Leadership Updates
155
+ - Post 1
156
+ - Post 2
157
+ - Post 3
158
+
159
+ :thread: Social Updates
160
+ - Update 1
161
+ - Update 2
162
+ - Update 3
163
+
164
+ ---
165
+ <!-- module: 03-faq-answers.md -->
166
+
167
+ # FAQ Answers
168
+
169
+ ## Instructions
170
+ You are an assistant for answering questions that are being asked across the company. Every week, there are lots of questions that get asked across the company, and your goal is to try to summarize what those questions are. We want our company to be well-informed and on the same page, so your job is to produce a set of frequently asked questions that our employees are asking and attempt to answer them. Your singular job is to do two things:
171
+
172
+ - Find questions that are big sources of confusion for lots of employees at the company, generally about things that affect a large portion of the employee base
173
+ - Attempt to give a nice summarized answer to that question in order to minimize confusion.
174
+
175
+ Some examples of areas that may be interesting to folks: recent corporate events (fundraising, new executives, etc.), upcoming launches, hiring progress, changes to vision or focus, etc.
176
+
177
+
178
+ ## Tools Available
179
+ You should use the company's available tools, where communication and work happens. For most companies, it looks something like this:
180
+ - Slack: questions being asked across the company - it could be questions in response to posts with lots of responses, questions being asked with lots of reactions or thumbs up to show support, or anything else to show that a large number of employees want to ask the same things
181
+ - Email: emails with FAQs written directly in them can be a good source as well
182
+ - Documents: docs in places like Google Drive, linked on calendar events, etc. can also be a good source of FAQs, either directly added or inferred based on the contents of the doc
183
+
184
+ ## Formatting
185
+ The formatting should be pretty basic:
186
+
187
+ - *Question*: [insert question - 1 sentence]
188
+ - *Answer*: [insert answer - 1-2 sentence]
189
+
190
+ ## Guidance
191
+ Make sure you're being holistic in your questions. Don't focus too much on just the user in question or the team they are a part of, but try to capture the entire company. Try to be as holistic as you can in reading all the tools available, producing responses that are relevant to all at the company.
192
+
193
+ ## Answer Guidelines
194
+ - Base answers on official company communications when possible
195
+ - If information is uncertain, indicate that clearly
196
+ - Link to authoritative sources (docs, announcements, emails)
197
+ - Keep tone professional but approachable
198
+ - Flag if a question requires executive input or official response
199
+
200
+ ---
201
+ <!-- module: 04-general-comms.md -->
202
+
203
+ # General Comms
204
+
205
+ ## Instructions
206
+ You are being asked to write internal company communication that doesn't fit into the standard formats (3P
207
+ updates, newsletters, or FAQs).
208
+
209
+ Before proceeding:
210
+ 1. Ask the user about their target audience
211
+ 2. Understand the communication's purpose
212
+ 3. Clarify the desired tone (formal, casual, urgent, informational)
213
+ 4. Confirm any specific formatting requirements
214
+
215
+ Use these general principles:
216
+ - Be clear and concise
217
+ - Use active voice
218
+ - Put the most important information first
219
+ - Include relevant links and references
220
+ - Match the company's communication style
@@ -0,0 +1,11 @@
1
+ # Internal Comms: Index
2
+
3
+ Write internal communications using the formats my company likes.
4
+
5
+ Loading policy: read this menu, then load 00-core (if present) plus the minis relevant to your task. If most of this skill is relevant, load BUNDLE.md (or a matching presets/*.md) in one read instead.
6
+
7
+ - **00-core.md** - ALWAYS LOAD. When/how to use the skill, type→mini routing, keywords.
8
+ - **01-3p-updates.md** - load when writing a 3P update (Progress, Plans, Problems) / weekly team or company status update.
9
+ - **02-company-newsletter.md** - load when writing a company-wide newsletter for Slack/email.
10
+ - **03-faq-answers.md** - load when producing FAQs answering common company-wide questions.
11
+ - **04-general-comms.md** - load for any internal comms that don't fit 3P, newsletter, or FAQ (status reports, leadership updates, project updates, incident reports, etc.).
@@ -0,0 +1,30 @@
1
+ # Internal Comms — Core
2
+
3
+ Cross-cutting rules for writing all kinds of internal communications, using the formats that my company likes to use. Use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).
4
+
5
+ ## When to use this skill
6
+ To write internal communications, use this skill for:
7
+ - 3P updates (Progress, Plans, Problems)
8
+ - Company newsletters
9
+ - FAQ responses
10
+ - Status reports
11
+ - Leadership updates
12
+ - Project updates
13
+ - Incident reports
14
+
15
+ ## How to use this skill
16
+
17
+ To write any internal communication:
18
+
19
+ 1. **Identify the communication type** from the request
20
+ 2. **Load the appropriate mini** for that communication type:
21
+ - `01-3p-updates.md` - For Progress/Plans/Problems team updates
22
+ - `02-company-newsletter.md` - For company-wide newsletters
23
+ - `03-faq-answers.md` - For answering frequently asked questions
24
+ - `04-general-comms.md` - For anything else that doesn't explicitly match one of the above
25
+ 3. **Follow the specific instructions** in that mini for formatting, tone, and content gathering
26
+
27
+ If the communication type doesn't match any existing guideline, ask for clarification or more context about the desired format.
28
+
29
+ ## Keywords
30
+ 3P updates, company newsletter, company comms, weekly update, faqs, common questions, updates, internal comms
@@ -0,0 +1,49 @@
1
+ # 3P Updates (Progress, Plans, Problems)
2
+
3
+ ## Instructions
4
+ You are being asked to write a 3P update. 3P updates stand for "Progress, Plans, Problems." The main audience is for executives, leadership, other teammates, etc. They're meant to be very succinct and to-the-point: think something you can read in 30-60sec or less. They're also for people with some, but not a lot of context on what the team does.
5
+
6
+ 3Ps can cover a team of any size, ranging all the way up to the entire company. The bigger the team, the less granular the tasks should be. For example, "mobile team" might have "shipped feature" or "fixed bugs," whereas the company might have really meaty 3Ps, like "hired 20 new people" or "closed 10 new deals."
7
+
8
+ They represent the work of the team across a time period, almost always one week. They include three sections:
9
+ 1) Progress: what the team has accomplished over the next time period. Focus mainly on things shipped, milestones achieved, tasks created, etc.
10
+ 2) Plans: what the team plans to do over the next time period. Focus on what things are top-of-mind, really high priority, etc. for the team.
11
+ 3) Problems: anything that is slowing the team down. This could be things like too few people, bugs or blockers that are preventing the team from moving forward, some deal that fell through, etc.
12
+
13
+ Before writing them, make sure that you know the team name. If it's not specified, you can ask explicitly what the team name you're writing for is.
14
+
15
+
16
+ ## Tools Available
17
+ Whenever possible, try to pull from available sources to get the information you need:
18
+ - Slack: posts from team members with their updates - ideally look for posts in large channels with lots of reactions
19
+ - Google Drive: docs written from critical team members with lots of views
20
+ - Email: emails with lots of responses of lots of content that seems relevant
21
+ - Calendar: non-recurring meetings that have a lot of importance, like product reviews, etc.
22
+
23
+
24
+ Try to gather as much context as you can, focusing on the things that covered the time period you're writing for:
25
+ - Progress: anything between a week ago and today
26
+ - Plans: anything from today to the next week
27
+ - Problems: anything between a week ago and today
28
+
29
+
30
+ If you don't have access, you can ask the user for things they want to cover. They might also include these things to you directly, in which case you're mostly just formatting for this particular format.
31
+
32
+ ## Workflow
33
+
34
+ 1. **Clarify scope**: Confirm the team name and time period (usually past week for Progress/Problems, next
35
+ week for Plans)
36
+ 2. **Gather information**: Use available tools or ask the user directly
37
+ 3. **Draft the update**: Follow the strict formatting guidelines
38
+ 4. **Review**: Ensure it's concise (30-60 seconds to read) and data-driven
39
+
40
+ ## Formatting
41
+
42
+ The format is always the same, very strict formatting. Never use any formatting other than this. Pick an emoji that is fun and captures the vibe of the team and update.
43
+
44
+ [pick an emoji] [Team Name] (Dates Covered, usually a week)
45
+ Progress: [1-3 sentences of content]
46
+ Plans: [1-3 sentences of content]
47
+ Problems: [1-3 sentences of content]
48
+
49
+ Each section should be no more than 1-3 sentences: clear, to the point. It should be data-driven, and generally include metrics where possible. The tone should be very matter-of-fact, not super prose-heavy.
@@ -0,0 +1,67 @@
1
+ # Company Newsletter
2
+
3
+ ## Instructions
4
+ You are being asked to write a company-wide newsletter update. You are meant to summarize the past week/month of a company in the form of a newsletter that the entire company will read. It should be maybe ~20-25 bullet points long. It will be sent via Slack and email, so make it consumable for that.
5
+
6
+ Ideally it includes the following attributes:
7
+ - Lots of links: pulling documents from Google Drive that are very relevant, linking to prominent Slack messages in announce channels and from executives, perhgaps referencing emails that went company-wide, highlighting significant things that have happened in the company.
8
+ - Short and to-the-point: each bullet should probably be no longer than ~1-2 sentences
9
+ - Use the "we" tense, as you are part of the company. Many of the bullets should say "we did this" or "we did that"
10
+
11
+ ## Tools to use
12
+ If you have access to the following tools, please try to use them. If not, you can also let the user know directly that their responses would be better if they gave them access.
13
+
14
+ - Slack: look for messages in channels with lots of people, with lots of reactions or lots of responses within the thread
15
+ - Email: look for things from executives that discuss company-wide announcements
16
+ - Calendar: if there were meetings with large attendee lists, particularly things like All-Hands meetings, big company announcements, etc. If there were documents attached to those meetings, those are great links to include.
17
+ - Documents: if there were new docs published in the last week or two that got a lot of attention, you can link them. These should be things like company-wide vision docs, plans for the upcoming quarter or half, things authored by critical executives, etc.
18
+ - External press: if you see references to articles or press we've received over the past week, that could be really cool too.
19
+
20
+ If you don't have access to any of these things, you can ask the user for things they want to cover. In this case, you'll mostly just be polishing up and fitting to this format more directly.
21
+
22
+ ## Sections
23
+ The company is pretty big: 1000+ people. There are a variety of different teams and initiatives going on across the company. To make sure the update works well, try breaking it into sections of similar things. You might break into clusters like {product development, go to market, finance} or {recruiting, execution, vision}, or {external news, internal news} etc. Try to make sure the different areas of the company are highlighted well.
24
+
25
+ ## Prioritization
26
+ Focus on:
27
+ - Company-wide impact (not team-specific details)
28
+ - Announcements from leadership
29
+ - Major milestones and achievements
30
+ - Information that affects most employees
31
+ - External recognition or press
32
+
33
+ Avoid:
34
+ - Overly granular team updates (save those for 3Ps)
35
+ - Information only relevant to small groups
36
+ - Duplicate information already communicated
37
+
38
+ ## Example Formats
39
+
40
+ :megaphone: Company Announcements
41
+ - Announcement 1
42
+ - Announcement 2
43
+ - Announcement 3
44
+
45
+ :dart: Progress on Priorities
46
+ - Area 1
47
+ - Sub-area 1
48
+ - Sub-area 2
49
+ - Sub-area 3
50
+ - Area 2
51
+ - Sub-area 1
52
+ - Sub-area 2
53
+ - Sub-area 3
54
+ - Area 3
55
+ - Sub-area 1
56
+ - Sub-area 2
57
+ - Sub-area 3
58
+
59
+ :pillar: Leadership Updates
60
+ - Post 1
61
+ - Post 2
62
+ - Post 3
63
+
64
+ :thread: Social Updates
65
+ - Update 1
66
+ - Update 2
67
+ - Update 3
@@ -0,0 +1,32 @@
1
+ # FAQ Answers
2
+
3
+ ## Instructions
4
+ You are an assistant for answering questions that are being asked across the company. Every week, there are lots of questions that get asked across the company, and your goal is to try to summarize what those questions are. We want our company to be well-informed and on the same page, so your job is to produce a set of frequently asked questions that our employees are asking and attempt to answer them. Your singular job is to do two things:
5
+
6
+ - Find questions that are big sources of confusion for lots of employees at the company, generally about things that affect a large portion of the employee base
7
+ - Attempt to give a nice summarized answer to that question in order to minimize confusion.
8
+
9
+ Some examples of areas that may be interesting to folks: recent corporate events (fundraising, new executives, etc.), upcoming launches, hiring progress, changes to vision or focus, etc.
10
+
11
+
12
+ ## Tools Available
13
+ You should use the company's available tools, where communication and work happens. For most companies, it looks something like this:
14
+ - Slack: questions being asked across the company - it could be questions in response to posts with lots of responses, questions being asked with lots of reactions or thumbs up to show support, or anything else to show that a large number of employees want to ask the same things
15
+ - Email: emails with FAQs written directly in them can be a good source as well
16
+ - Documents: docs in places like Google Drive, linked on calendar events, etc. can also be a good source of FAQs, either directly added or inferred based on the contents of the doc
17
+
18
+ ## Formatting
19
+ The formatting should be pretty basic:
20
+
21
+ - *Question*: [insert question - 1 sentence]
22
+ - *Answer*: [insert answer - 1-2 sentence]
23
+
24
+ ## Guidance
25
+ Make sure you're being holistic in your questions. Don't focus too much on just the user in question or the team they are a part of, but try to capture the entire company. Try to be as holistic as you can in reading all the tools available, producing responses that are relevant to all at the company.
26
+
27
+ ## Answer Guidelines
28
+ - Base answers on official company communications when possible
29
+ - If information is uncertain, indicate that clearly
30
+ - Link to authoritative sources (docs, announcements, emails)
31
+ - Keep tone professional but approachable
32
+ - Flag if a question requires executive input or official response
@@ -0,0 +1,18 @@
1
+ # General Comms
2
+
3
+ ## Instructions
4
+ You are being asked to write internal company communication that doesn't fit into the standard formats (3P
5
+ updates, newsletters, or FAQs).
6
+
7
+ Before proceeding:
8
+ 1. Ask the user about their target audience
9
+ 2. Understand the communication's purpose
10
+ 3. Clarify the desired tone (formal, casual, urgent, informational)
11
+ 4. Confirm any specific formatting requirements
12
+
13
+ Use these general principles:
14
+ - Be clear and concise
15
+ - Use active voice
16
+ - Put the most important information first
17
+ - Include relevant links and references
18
+ - Match the company's communication style