@rfxlamia/skillkit 1.0.0 → 1.2.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 (269) hide show
  1. package/agents/agents/creative-copywriter.md +212 -0
  2. package/agents/agents/dario-amodei.md +135 -0
  3. package/agents/agents/doc-simplifier.md +63 -0
  4. package/agents/agents/kotlin-pro.md +433 -0
  5. package/agents/agents/red-team.md +136 -0
  6. package/agents/agents/sam-altman.md +121 -0
  7. package/agents/agents/seo-manager.md +184 -0
  8. package/package.json +7 -2
  9. package/skills/quick-spec/tests/__pycache__/test_skill.cpython-314-pytest-9.0.2.pyc +0 -0
  10. package/skills/skillkit/.claude/settings.local.json +7 -0
  11. package/skills/skillkit/scripts/__pycache__/decision_helper.cpython-314.pyc +0 -0
  12. package/skills/skillkit/scripts/__pycache__/quick_validate.cpython-312.pyc +0 -0
  13. package/skills/skillkit/scripts/__pycache__/quick_validate.cpython-314.pyc +0 -0
  14. package/skills/skillkit/scripts/__pycache__/test_generator.cpython-314-pytest-9.0.2.pyc +0 -0
  15. package/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  16. package/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-314.pyc +0 -0
  17. package/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-312.pyc +0 -0
  18. package/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-314.pyc +0 -0
  19. package/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-312.pyc +0 -0
  20. package/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-314.pyc +0 -0
  21. package/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-312.pyc +0 -0
  22. package/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-314.pyc +0 -0
  23. package/skills/skillkit-help/SKILL.md +81 -0
  24. package/skills/skillkit-help/knowledge/application/09-case-studies.md +257 -0
  25. package/skills/skillkit-help/knowledge/application/12-testing-and-validation.md +276 -0
  26. package/skills/skillkit-help/knowledge/foundation/01-why-skills-exist.md +246 -0
  27. package/skills/skillkit-help/knowledge/foundation/02-skills-vs-subagents-comparison.md +312 -0
  28. package/skills/skillkit-help/knowledge/foundation/03-skills-vs-subagents-decision-tree.md +346 -0
  29. package/skills/skillkit-help/knowledge/foundation/06-platform-constraints.md +237 -0
  30. package/skills/skillkit-help/knowledge/foundation/08-when-not-to-use-skills.md +270 -0
  31. package/skills/skillkit-help/template/SKILL.md +52 -0
  32. package/skills/skills/adversarial-review/SKILL.md +219 -0
  33. package/skills/skills/baby-education/SKILL.md +260 -0
  34. package/skills/skills/baby-education/references/advanced-techniques.md +323 -0
  35. package/skills/skills/baby-education/references/transformations.md +345 -0
  36. package/skills/skills/been-there-done-that/SKILL.md +455 -0
  37. package/skills/skills/been-there-done-that/references/analysis-patterns.md +162 -0
  38. package/skills/skills/been-there-done-that/references/git-commands.md +132 -0
  39. package/skills/skills/been-there-done-that/references/tree-insertion-logic.md +145 -0
  40. package/skills/skills/coolhunter/SKILL.md +270 -0
  41. package/skills/skills/coolhunter/assets/elicitation-methods.csv +51 -0
  42. package/skills/skills/coolhunter/knowledge/elicitation-methods.md +312 -0
  43. package/skills/skills/coolhunter/references/workflow-execution.md +238 -0
  44. package/skills/skills/coolhunter/workflow-plan-coolhunter.md +232 -0
  45. package/skills/skills/creative-copywriting/SKILL.md +324 -0
  46. package/skills/skills/creative-copywriting/databases/README.md +60 -0
  47. package/skills/skills/creative-copywriting/databases/carousel-structures.csv +16 -0
  48. package/skills/skills/creative-copywriting/databases/emotional-arcs.csv +11 -0
  49. package/skills/skills/creative-copywriting/databases/hook-formulas.csv +51 -0
  50. package/skills/skills/creative-copywriting/databases/power-words.csv +201 -0
  51. package/skills/skills/creative-copywriting/databases/psychological-triggers.csv +21 -0
  52. package/skills/skills/creative-copywriting/databases/read-more-patterns.csv +26 -0
  53. package/skills/skills/creative-copywriting/databases/swipe-triggers.csv +31 -0
  54. package/skills/skills/creative-copywriting/references/carousel-psychology.md +223 -0
  55. package/skills/skills/creative-copywriting/references/hook-anatomy.md +169 -0
  56. package/skills/skills/creative-copywriting/references/power-word-science.md +134 -0
  57. package/skills/skills/creative-copywriting/references/storytelling-frameworks.md +157 -0
  58. package/skills/skills/diverse-content-gen/SKILL.md +201 -0
  59. package/skills/skills/diverse-content-gen/references/advanced-techniques.md +320 -0
  60. package/skills/skills/diverse-content-gen/references/research-findings.md +379 -0
  61. package/skills/skills/diverse-content-gen/references/task-workflows.md +241 -0
  62. package/skills/skills/diverse-content-gen/references/tool-integration.md +419 -0
  63. package/skills/skills/diverse-content-gen/references/troubleshooting.md +426 -0
  64. package/skills/skills/diverse-content-gen/references/vs-core-technique.md +240 -0
  65. package/skills/skills/framework-critical-thinking/SKILL.md +220 -0
  66. package/skills/skills/framework-critical-thinking/references/bias_detector.md +375 -0
  67. package/skills/skills/framework-critical-thinking/references/fallback_handler.md +239 -0
  68. package/skills/skills/framework-critical-thinking/references/memory_curator.md +161 -0
  69. package/skills/skills/framework-critical-thinking/references/metacognitive_monitor.md +297 -0
  70. package/skills/skills/framework-critical-thinking/references/producer_critic_orchestrator.md +333 -0
  71. package/skills/skills/framework-critical-thinking/references/reasoning_router.md +235 -0
  72. package/skills/skills/framework-critical-thinking/references/reasoning_validator.md +97 -0
  73. package/skills/skills/framework-critical-thinking/references/reflection_trigger.md +78 -0
  74. package/skills/skills/framework-critical-thinking/references/self_verification.md +388 -0
  75. package/skills/skills/framework-critical-thinking/references/uncertainty_quantifier.md +207 -0
  76. package/skills/skills/framework-initiative/SKILL.md +231 -0
  77. package/skills/skills/framework-initiative/references/examples.md +150 -0
  78. package/skills/skills/framework-initiative/references/impact-analysis.md +157 -0
  79. package/skills/skills/framework-initiative/references/intent-patterns.md +145 -0
  80. package/skills/skills/framework-initiative/references/star-framework.md +165 -0
  81. package/skills/skills/humanize-docs/SKILL.md +203 -0
  82. package/skills/skills/humanize-docs/references/advanced-techniques.md +13 -0
  83. package/skills/skills/humanize-docs/references/core-transformations.md +368 -0
  84. package/skills/skills/humanize-docs/references/detection-patterns.md +400 -0
  85. package/skills/skills/humanize-docs/references/examples-gallery.md +374 -0
  86. package/skills/skills/imagine/SKILL.md +190 -0
  87. package/skills/skills/imagine/references/artstyle-corporate-memphis.md +625 -0
  88. package/skills/skills/imagine/references/artstyle-crewdson-hyperrealism.md +295 -0
  89. package/skills/skills/imagine/references/artstyle-iphone-social-media.md +426 -0
  90. package/skills/skills/imagine/references/artstyle-sciencesaru.md +276 -0
  91. package/skills/skills/pre-deploy-checklist/README.md +26 -0
  92. package/skills/skills/pre-deploy-checklist/SKILL.md +153 -0
  93. package/skills/skills/pre-deploy-checklist/references/checklist-categories.md +174 -0
  94. package/skills/skills/pre-deploy-checklist/references/domain-prompts.md +216 -0
  95. package/skills/skills/prompt-engineering/SKILL.md +209 -0
  96. package/skills/skills/prompt-engineering/references/advanced-combinations.md +444 -0
  97. package/skills/skills/prompt-engineering/references/chain-of-thought.md +140 -0
  98. package/skills/skills/prompt-engineering/references/decision_matrix.md +220 -0
  99. package/skills/skills/prompt-engineering/references/few-shot.md +346 -0
  100. package/skills/skills/prompt-engineering/references/json-format.md +270 -0
  101. package/skills/skills/prompt-engineering/references/natural-language.md +420 -0
  102. package/skills/skills/prompt-engineering/references/pitfalls.md +365 -0
  103. package/skills/skills/prompt-engineering/references/prompt-chaining.md +498 -0
  104. package/skills/skills/prompt-engineering/references/react.md +108 -0
  105. package/skills/skills/prompt-engineering/references/self-consistency.md +322 -0
  106. package/skills/skills/prompt-engineering/references/tree-of-thoughts.md +386 -0
  107. package/skills/skills/prompt-engineering/references/xml-format.md +220 -0
  108. package/skills/skills/prompt-engineering/references/yaml-format.md +488 -0
  109. package/skills/skills/prompt-engineering/references/zero-shot.md +74 -0
  110. package/skills/skills/quick-spec/SKILL.md +280 -0
  111. package/skills/skills/quick-spec/assets/tech-spec-template.md +74 -0
  112. package/skills/skills/quick-spec/references/step-01-understand.md +189 -0
  113. package/skills/skills/quick-spec/references/step-02-investigate.md +144 -0
  114. package/skills/skills/quick-spec/references/step-03-generate.md +128 -0
  115. package/skills/skills/quick-spec/references/step-04-review.md +173 -0
  116. package/skills/skills/quick-spec/tests/__pycache__/test_skill.cpython-314-pytest-9.0.2.pyc +0 -0
  117. package/skills/skills/quick-spec/tests/test_scenarios.md +83 -0
  118. package/skills/skills/quick-spec/tests/test_skill.py +136 -0
  119. package/skills/skills/readme-expert/SKILL.md +538 -0
  120. package/skills/skills/readme-expert/knowledge/INDEX.md +192 -0
  121. package/skills/skills/readme-expert/knowledge/application/quality-standards.md +470 -0
  122. package/skills/skills/readme-expert/knowledge/application/script-executor.md +604 -0
  123. package/skills/skills/readme-expert/knowledge/application/template-library.md +822 -0
  124. package/skills/skills/readme-expert/knowledge/foundation/codebase-scanner.md +361 -0
  125. package/skills/skills/readme-expert/knowledge/foundation/validation-checklist.md +481 -0
  126. package/skills/skills/red-teaming/SKILL.md +321 -0
  127. package/skills/skills/red-teaming/references/ai-llm-redteam.md +517 -0
  128. package/skills/skills/red-teaming/references/attack-techniques.md +410 -0
  129. package/skills/skills/red-teaming/references/cybersecurity-redteam.md +383 -0
  130. package/skills/skills/red-teaming/references/tools-frameworks.md +446 -0
  131. package/skills/skills/releasing/.skillkit-mode +1 -0
  132. package/skills/skills/releasing/SKILL.md +225 -0
  133. package/skills/skills/releasing/references/version-detection.md +108 -0
  134. package/skills/skills/screenwriter/SKILL.md +273 -0
  135. package/skills/skills/screenwriter/references/advanced-techniques.md +216 -0
  136. package/skills/skills/screenwriter/references/pipeline-integration.md +266 -0
  137. package/skills/skills/skillkit/.claude/settings.local.json +7 -0
  138. package/skills/skills/skillkit/.claude-plugin/plugin.json +27 -0
  139. package/skills/skills/skillkit/CHANGELOG.md +484 -0
  140. package/skills/skills/skillkit/SKILL.md +511 -0
  141. package/skills/skills/skillkit/commands/skillkit.md +6 -0
  142. package/skills/skills/skillkit/commands/validate-plan.md +6 -0
  143. package/skills/skills/skillkit/commands/verify.md +6 -0
  144. package/skills/skills/skillkit/knowledge/INDEX.md +352 -0
  145. package/skills/skills/skillkit/knowledge/application/09-case-studies.md +257 -0
  146. package/skills/skills/skillkit/knowledge/application/10-technical-architecture.md +324 -0
  147. package/skills/skills/skillkit/knowledge/application/11-adoption-strategy.md +267 -0
  148. package/skills/skills/skillkit/knowledge/application/12-testing-and-validation.md +276 -0
  149. package/skills/skills/skillkit/knowledge/application/13-competitive-landscape.md +198 -0
  150. package/skills/skills/skillkit/knowledge/foundation/01-why-skills-exist.md +246 -0
  151. package/skills/skills/skillkit/knowledge/foundation/02-skills-vs-subagents-comparison.md +312 -0
  152. package/skills/skills/skillkit/knowledge/foundation/03-skills-vs-subagents-decision-tree.md +346 -0
  153. package/skills/skills/skillkit/knowledge/foundation/04-hybrid-patterns.md +308 -0
  154. package/skills/skills/skillkit/knowledge/foundation/05-token-economics.md +275 -0
  155. package/skills/skills/skillkit/knowledge/foundation/06-platform-constraints.md +237 -0
  156. package/skills/skills/skillkit/knowledge/foundation/07-security-concerns.md +322 -0
  157. package/skills/skills/skillkit/knowledge/foundation/08-when-not-to-use-skills.md +270 -0
  158. package/skills/skills/skillkit/knowledge/plugin-guide.md +614 -0
  159. package/skills/skills/skillkit/knowledge/tools/14-validation-tools-guide.md +150 -0
  160. package/skills/skills/skillkit/knowledge/tools/15-cost-tools-guide.md +157 -0
  161. package/skills/skills/skillkit/knowledge/tools/16-security-tools-guide.md +122 -0
  162. package/skills/skills/skillkit/knowledge/tools/17-pattern-tools-guide.md +161 -0
  163. package/skills/skills/skillkit/knowledge/tools/18-decision-helper-guide.md +243 -0
  164. package/skills/skills/skillkit/knowledge/tools/19-test-generator-guide.md +275 -0
  165. package/skills/skills/skillkit/knowledge/tools/20-split-skill-guide.md +149 -0
  166. package/skills/skills/skillkit/knowledge/tools/21-quality-scorer-guide.md +226 -0
  167. package/skills/skills/skillkit/knowledge/tools/22-migration-helper-guide.md +356 -0
  168. package/skills/skills/skillkit/knowledge/tools/23-subagent-creation-guide.md +448 -0
  169. package/skills/skills/skillkit/knowledge/tools/24-behavioral-testing-guide.md +122 -0
  170. package/skills/skills/skillkit/references/proposal-generation.md +982 -0
  171. package/skills/skills/skillkit/references/rationalization-catalog.md +75 -0
  172. package/skills/skills/skillkit/references/research-methodology.md +661 -0
  173. package/skills/skills/skillkit/references/section-2-full-creation-workflow.md +452 -0
  174. package/skills/skills/skillkit/references/section-3-validation-workflow-existing-skill.md +63 -0
  175. package/skills/skills/skillkit/references/section-4-decision-workflow-skills-vs-subagents.md +64 -0
  176. package/skills/skills/skillkit/references/section-5-migration-workflow-doc-to-skill.md +58 -0
  177. package/skills/skills/skillkit/references/section-6-subagent-creation-workflow.md +499 -0
  178. package/skills/skills/skillkit/references/section-7-knowledge-reference-map.md +72 -0
  179. package/skills/skills/skillkit/scripts/__pycache__/decision_helper.cpython-314.pyc +0 -0
  180. package/skills/skills/skillkit/scripts/__pycache__/quick_validate.cpython-312.pyc +0 -0
  181. package/skills/skills/skillkit/scripts/__pycache__/quick_validate.cpython-314.pyc +0 -0
  182. package/skills/skills/skillkit/scripts/__pycache__/test_generator.cpython-314-pytest-9.0.2.pyc +0 -0
  183. package/skills/skills/skillkit/scripts/decision_helper.py +799 -0
  184. package/skills/skills/skillkit/scripts/init_skill.py +400 -0
  185. package/skills/skills/skillkit/scripts/init_subagent.py +231 -0
  186. package/skills/skills/skillkit/scripts/migration_helper.py +669 -0
  187. package/skills/skills/skillkit/scripts/package_skill.py +211 -0
  188. package/skills/skills/skillkit/scripts/pattern_detector.py +381 -0
  189. package/skills/skills/skillkit/scripts/pattern_detector_new.py +382 -0
  190. package/skills/skills/skillkit/scripts/pressure_tester.py +157 -0
  191. package/skills/skills/skillkit/scripts/quality_scorer.py +999 -0
  192. package/skills/skills/skillkit/scripts/quick_validate.py +100 -0
  193. package/skills/skills/skillkit/scripts/security_scanner.py +474 -0
  194. package/skills/skills/skillkit/scripts/split_skill.py +540 -0
  195. package/skills/skills/skillkit/scripts/test_generator.py +695 -0
  196. package/skills/skills/skillkit/scripts/token_estimator.py +493 -0
  197. package/skills/skills/skillkit/scripts/utils/__init__.py +49 -0
  198. package/skills/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  199. package/skills/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-314.pyc +0 -0
  200. package/skills/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-312.pyc +0 -0
  201. package/skills/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-314.pyc +0 -0
  202. package/skills/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-312.pyc +0 -0
  203. package/skills/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-314.pyc +0 -0
  204. package/skills/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-312.pyc +0 -0
  205. package/skills/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-314.pyc +0 -0
  206. package/skills/skills/skillkit/scripts/utils/budget_tracker.py +388 -0
  207. package/skills/skills/skillkit/scripts/utils/output_formatter.py +263 -0
  208. package/skills/skills/skillkit/scripts/utils/reference_validator.py +401 -0
  209. package/skills/skills/skillkit/scripts/validate_skill.py +594 -0
  210. package/skills/skills/skillkit/tests/test_behavioral.py +39 -0
  211. package/skills/skills/skillkit/tests/test_scenarios.md +83 -0
  212. package/skills/skills/skillkit/tests/test_skill.py +136 -0
  213. package/skills/skills/skillkit-help/SKILL.md +81 -0
  214. package/skills/skills/skillkit-help/knowledge/application/09-case-studies.md +257 -0
  215. package/skills/skills/skillkit-help/knowledge/application/12-testing-and-validation.md +276 -0
  216. package/skills/skills/skillkit-help/knowledge/foundation/01-why-skills-exist.md +246 -0
  217. package/skills/skills/skillkit-help/knowledge/foundation/02-skills-vs-subagents-comparison.md +312 -0
  218. package/skills/skills/skillkit-help/knowledge/foundation/03-skills-vs-subagents-decision-tree.md +346 -0
  219. package/skills/skills/skillkit-help/knowledge/foundation/06-platform-constraints.md +237 -0
  220. package/skills/skills/skillkit-help/knowledge/foundation/08-when-not-to-use-skills.md +270 -0
  221. package/skills/skills/skillkit-help/template/SKILL.md +52 -0
  222. package/skills/skills/social-media-seo/SKILL.md +278 -0
  223. package/skills/skills/social-media-seo/databases/caption-styles.csv +31 -0
  224. package/skills/skills/social-media-seo/databases/engagement-tactics.csv +16 -0
  225. package/skills/skills/social-media-seo/databases/hashtag-strategies.csv +21 -0
  226. package/skills/skills/social-media-seo/databases/hook-formulas.csv +26 -0
  227. package/skills/skills/social-media-seo/databases/keyword-clusters.csv +11 -0
  228. package/skills/skills/social-media-seo/databases/thread-structures.csv +26 -0
  229. package/skills/skills/social-media-seo/databases/viral-patterns.csv +21 -0
  230. package/skills/skills/social-media-seo/references/analytics-guide.md +321 -0
  231. package/skills/skills/social-media-seo/references/instagram-seo.md +235 -0
  232. package/skills/skills/social-media-seo/references/threads-seo.md +305 -0
  233. package/skills/skills/social-media-seo/references/x-twitter-seo.md +337 -0
  234. package/skills/skills/social-media-seo/scripts/query_database.py +191 -0
  235. package/skills/skills/storyteller/SKILL.md +241 -0
  236. package/skills/skills/storyteller/references/transformation-methodology.md +293 -0
  237. package/skills/skills/storyteller/references/visual-vocabulary.md +177 -0
  238. package/skills/skills/thread-pro/SKILL.md +162 -0
  239. package/skills/skills/thread-pro/anti-ai-patterns.md +120 -0
  240. package/skills/skills/thread-pro/hook-formulas.md +138 -0
  241. package/skills/skills/thread-pro/references/anti-ai-patterns.md +120 -0
  242. package/skills/skills/thread-pro/references/hook-formulas.md +138 -0
  243. package/skills/skills/thread-pro/references/thread-structures.md +240 -0
  244. package/skills/skills/thread-pro/references/voice-injection.md +130 -0
  245. package/skills/skills/thread-pro/thread-structures.md +240 -0
  246. package/skills/skills/thread-pro/voice-injection.md +130 -0
  247. package/skills/skills/tinkering/SKILL.md +251 -0
  248. package/skills/skills/tinkering/references/graduation-checklist.md +100 -0
  249. package/skills/skills/validate-plan/.skillkit-mode +1 -0
  250. package/skills/skills/validate-plan/SKILL.md +406 -0
  251. package/skills/skills/validate-plan/references/dry-principles.md +251 -0
  252. package/skills/skills/validate-plan/references/gap-analysis-guide.md +320 -0
  253. package/skills/skills/validate-plan/references/tdd-patterns.md +413 -0
  254. package/skills/skills/validate-plan/references/yagni-checklist.md +330 -0
  255. package/skills/skills/verify-before-ship/.skillkit-mode +1 -0
  256. package/skills/skills/verify-before-ship/SKILL.md +116 -0
  257. package/skills/skills/verify-before-ship/references/anti-rationalization.md +212 -0
  258. package/skills/skills/verify-before-ship/references/verification-gates.md +305 -0
  259. package/skills-manifest.json +8 -2
  260. package/src/banner.js +1 -1
  261. package/src/cli.js +15 -4
  262. package/src/install.js +45 -29
  263. package/src/install.test.js +75 -7
  264. package/src/picker.js +15 -4
  265. package/src/picker.test.js +36 -1
  266. package/src/scope.js +8 -39
  267. package/src/scope.test.js +9 -13
  268. package/src/tools.js +76 -0
  269. package/src/tools.test.js +80 -0
@@ -0,0 +1,246 @@
1
+ ---
2
+ title: "Why Claude Skills Were Created"
3
+ purpose: "Understanding strategic context and foundational problems Skills solve"
4
+ token_estimate: "1800"
5
+ read_priority: "critical"
6
+ read_when:
7
+ - "User asking 'Why should I use Skills?'"
8
+ - "User comparing Skills to other approaches"
9
+ - "Starting Skills adoption decision"
10
+ - "Understanding Anthropic's vision"
11
+ - "Evaluating Skills vs alternatives"
12
+ related_files:
13
+ must_read_first: []
14
+ read_together:
15
+ - "08-when-not-to-use-skills.md"
16
+ read_next:
17
+ - "02-skills-vs-subagents-comparison.md"
18
+ - "case-studies.md"
19
+ avoid_reading_when:
20
+ - "User already decided to use Skills (skip to implementation)"
21
+ - "User asking pure technical how-to questions"
22
+ - "Debugging specific skill issues"
23
+ last_updated: "2025-10-31"
24
+ ---
25
+
26
+ # Why Claude Skills Were Created
27
+
28
+ ## I. ANTHROPIC'S VISION: COMPOSABLE AI FUTURE
29
+
30
+ ### Launch Context
31
+ **Launch Date:** October 16, 2025
32
+ **Product Status:** Beta, available on Claude.ai, Claude Code CLI, and API
33
+ **Target Users:** Organizations and developers who need specialized AI capabilities
34
+
35
+ ### Strategic Vision from Mahesh Murag (Technical Staff, Anthropic)
36
+
37
+ > "Skills are based on our belief that as model intelligence continues to increase, we will move toward general-purpose agents that often have access to their own filesystem and computing environment."
38
+
39
+ **Core Philosophy: Composability Over Fragmentation**
40
+
41
+ Anthropic identified fundamental tension in AI development:
42
+ - **WANTED:** Specialized capabilities for specific domains
43
+ - **NOT WANTED:** Fragmented ecosystem of custom agents for each use case
44
+
45
+ **The Composability Solution:**
46
+ Instead of building isolated custom agents for every task, Skills enable anyone to specialize general-purpose agents with capabilities that can be combined. A single agent can be equipped with multiple Skills, combining them for complex workflows.
47
+
48
+ ### The Agentic Future Vision
49
+
50
+ Anthropic envisions a future where:
51
+ 1. **Agents self-improve** - Agents can create, edit, and evaluate their own Skills
52
+ 2. **Behavior codification** - Agents codify successful patterns into reusable capabilities
53
+ 3. **Ecosystem growth** - Community-driven skill library that continues to grow
54
+ 4. **Universal portability** - Skills work across platforms (web, CLI, API)
55
+
56
+ **Timeline Evolution:**
57
+
58
+ **Pre-Skills (Before Oct 2025):** Manual prompt engineering every conversation, repetitive context-setting, inconsistent outputs.
59
+
60
+ **Skills Era (Oct 2025+):** Package knowledge once, automatic activation, consistent outputs, reduced cognitive load.
61
+
62
+ **Future Vision:** Self-improving agents, marketplace for community skills, enterprise governance, multi-agent orchestration with shared libraries.
63
+
64
+ ---
65
+
66
+ ## II. 4 FUNDAMENTAL PROBLEMS SOLVED BY SKILLS
67
+
68
+ ### A. SPECIALIZATION PROBLEM
69
+
70
+ **Problem:** General-purpose AI models lack domain-specific knowledge and procedures that organizations need for real work.
71
+
72
+ **Without Skills:**
73
+ ```
74
+ User: "Create a financial DCF model"
75
+ Claude: "I'll create a basic DCF. What discount rate?"
76
+ User: "Use our company standard"
77
+ Claude: "What is your company standard?"
78
+ [15 minutes explaining methodology - repeated every conversation]
79
+ ```
80
+
81
+ **With Skills:**
82
+ ```
83
+ User: "Create a financial DCF model"
84
+ [financial-modeling skill automatically loaded]
85
+ [Company WACC methodology applied]
86
+ [Standard assumptions used]
87
+ [Model generated in company format]
88
+ ```
89
+
90
+ **Impact:** Rakuten AI Team reported "What once took a day, we can now accomplish in an hour" for management accounting workflows. Organizations can transform general intelligence into specialized expertise without rebuilding models.
91
+
92
+ ---
93
+
94
+ ### B. REPETITION PROBLEM
95
+
96
+ **Problem:** Teams constantly provide the same guidance repeatedly. Brad Abrams (Product Lead) called this "endless cycle of prompt engineering and context-setting that makes current AI tools feel more like burdens than breakthroughs."
97
+
98
+ **Repetition Pattern Example:**
99
+ - Monday: Engineer A explains code review checklist (15 minutes)
100
+ - Tuesday: Engineer B explains same checklist (15 minutes)
101
+ - Wednesday: Engineer C explains same checklist (15 minutes)
102
+ - Result: 200+ hours/year wasted on repetitive explanations
103
+
104
+ **Skills Solution:** Create code-review skill once. Every engineer automatically gets same guidance. Zero recurring explanation time.
105
+
106
+ **Impact Metrics:**
107
+ - Box users: "Saving hours of effort" in document transformation
108
+ - Notion feedback: "Less prompt wrangling on complex tasks"
109
+ - Estimated team productivity gain: 30-50% on repetitive tasks
110
+
111
+ Skills package institutional knowledge once and distribute automatically, eliminating recurring overhead.
112
+
113
+ ---
114
+
115
+ ### C. CONSISTENCY PROBLEM
116
+
117
+ **Problem:** Output quality varies wildly depending on who uses AI and how they phrase prompts.
118
+
119
+ **Example Scenario:**
120
+ Three marketing managers write product launch emails:
121
+ - Manager A gets casual, short email (250 words)
122
+ - Manager B gets formal, long email (600 words)
123
+ - Manager C gets mixed tone (inconsistent branding)
124
+
125
+ **With Skills:** All managers automatically get consistent tone, length, format, and branding from brand-guidelines skill.
126
+
127
+ **Consistency Dimensions:**
128
+ - Brand identity (logo, colors, typography, voice)
129
+ - Document formatting (PowerPoint, Word, Excel templates)
130
+ - Process compliance (regulatory requirements, approval workflows)
131
+ - Technical standards (code style, architecture patterns)
132
+
133
+ **Impact:**
134
+ - Reduction in rework: 40-60%
135
+ - Brand compliance: Near 100% vs ~60% without Skills
136
+ - Onboarding time: 50% reduction
137
+
138
+ Skills encode organizational standards that are automatically enforced.
139
+
140
+ ---
141
+
142
+ ### D. TOKEN EFFICIENCY PROBLEM
143
+
144
+ **Problem:** Sending comprehensive documentation in every conversation wastes context window and increases costs dramatically.
145
+
146
+ **Traditional RAG Approach:**
147
+ - API documentation: 15,000 tokens (loaded every time)
148
+ - Company procedures: 8,000 tokens
149
+ - Code examples: 12,000 tokens
150
+ - Templates: 5,000 tokens
151
+ - **TOTAL: 40,000 tokens consumed BEFORE any actual work**
152
+
153
+ **Skills Progressive Disclosure:**
154
+ - Level 1 (Always): Metadata only - 50 tokens
155
+ - Level 2 (When triggered): SKILL.md body - 2,800 tokens
156
+ - Level 3 (On-demand): References - loaded only if accessed
157
+
158
+ **Typical Usage:** 50 tokens (99.875% reduction vs traditional approach)
159
+
160
+ **Cost Impact (Claude Sonnet 4.5 @ $3/M input tokens):**
161
+ - Traditional: $0.12 per conversation just to load context
162
+ - Skills: $0.00015 average overhead
163
+ - Savings: $119.85/month per 1000 conversations
164
+
165
+ Context window is a precious resource. Skills maximize efficiency through progressive disclosure, allowing unlimited knowledge with minimal overhead.
166
+
167
+ **For detailed token economics analysis including multi-agent multipliers and optimization strategies, see:** `05-token-economics.md`
168
+
169
+ ---
170
+
171
+ ## III. POSITIONING VS COMPETITORS
172
+
173
+ ### Skills vs GPTs (OpenAI)
174
+ **GPTs:** Consumer marketplace, pre-configured interfaces, limited customization, closed ecosystem.
175
+
176
+ **Skills Advantages:** Developer-centric control, composable (multiple skills simultaneously), filesystem-based unlimited content, code execution, universal across platforms, version controllable.
177
+
178
+ **Best for:** Enterprise deployments, technical teams, complex workflows, full customization needs.
179
+
180
+ ### Skills vs Copilot Studio (Microsoft)
181
+ **Copilot:** Low-code visual builder, enterprise-focused, Microsoft ecosystem, proprietary format.
182
+
183
+ **Skills Advantages:** Code-first transparency, platform-agnostic portability, Git-friendly versioning, extreme token efficiency, portable across Claude platforms.
184
+
185
+ **Best for:** Code-comfortable teams, cross-platform requirements, version control mandatory, cost sensitivity.
186
+
187
+ ### Skills vs Traditional RAG
188
+ **RAG:** Trade-off between breadth vs relevance, all retrieved content consumes tokens, no code execution.
189
+
190
+ **Skills Advantages:** Progressive disclosure eliminates breadth/relevance trade-off, unlimited bundled content with zero penalty until accessed, executable scripts for deterministic operations, structured workflows beyond document retrieval.
191
+
192
+ **Best for:** Procedural knowledge, deterministic operations, token efficiency critical, structured workflows.
193
+
194
+ **For comprehensive competitive analysis including feature comparisons and migration strategies, see:** `competitive-landscape.md`
195
+
196
+ ---
197
+
198
+ ## IV. USE CASE OVERVIEW
199
+
200
+ ### Financial Services
201
+ - DCF models with company WACC methodology
202
+ - Comparable company analysis with valuation multiples
203
+ - Data room processing to Excel
204
+ - **Validated:** Rakuten - "day to hour" productivity
205
+
206
+ ### Life Sciences
207
+ - Single-cell RNA sequencing QC (scverse best practices)
208
+ - Scientific protocol following
209
+ - Literature reviews with domain knowledge
210
+
211
+ ### Enterprise Integrations
212
+ - Document transformation (Box: files to presentations/spreadsheets)
213
+ - Brand compliance automation
214
+ - Organizational standards enforcement
215
+ - **Validated:** Box "hours saved", Notion "faster action"
216
+
217
+ ### Developer Workflows
218
+ - Code style guide application
219
+ - Boilerplate generation with design standards
220
+ - Validation checks with conventions
221
+ - Task creation in JIRA/Asana/Linear
222
+
223
+ **For detailed case studies with metrics and implementation patterns, see:** `case-studies.md`
224
+
225
+ ---
226
+
227
+ ## WHEN TO READ NEXT
228
+
229
+ **Understanding Choices:**
230
+ - Compare Skills vs Subagents: `02-skills-vs-subagents-comparison.md`
231
+ - See real-world validation: `case-studies.md`
232
+ - Understand limitations: `08-when-not-to-use-skills.md`
233
+
234
+ **Making Decisions:**
235
+ - Implementation decision framework: `03-skills-vs-subagents-decision-tree.md`
236
+ - Cost analysis: `05-token-economics.md`
237
+
238
+ **Technical Details:**
239
+ - Architecture deep dive: `technical-architecture.md`
240
+ - Platform constraints: `06-platform-constraints.md`
241
+
242
+ **If ready to build:** Skip to implementation guides directly.
243
+
244
+ ---
245
+
246
+ **FILE END - Estimated Token Count: ~1,800 tokens (~210 lines)**
@@ -0,0 +1,312 @@
1
+ ---
2
+ title: "Skills vs Subagents: Conceptual Differences"
3
+ purpose: "Fundamental understanding of Skills vs Subagents differences"
4
+ token_estimate: "2400"
5
+ read_priority: "critical"
6
+ read_when:
7
+ - "User confused about Skills vs Subagents"
8
+ - "User asking 'What's the difference?'"
9
+ - "Before reading decision tree"
10
+ - "Comparing approaches"
11
+ - "Understanding architecture"
12
+ related_files:
13
+ must_read_first:
14
+ - "01-why-skills-exist.md"
15
+ read_together:
16
+ - "03-skills-vs-subagents-decision-tree.md"
17
+ read_next:
18
+ - "04-hybrid-patterns.md"
19
+ - "05-token-economics.md"
20
+ avoid_reading_when:
21
+ - "User already understands distinction clearly"
22
+ - "User only needs decision guidance (skip to 03-decision-tree)"
23
+ - "User asking about costs only (skip to 05-token-economics)"
24
+ last_updated: "2025-10-31"
25
+ ---
26
+
27
+ # Skills vs Subagents: Conceptual Differences
28
+
29
+ ## I. INTRODUCTION
30
+
31
+ Skills and Subagents are two fundamentally different extensibility mechanisms, serving distinct purposes. Understanding when to use each is critical for building effective AI workflows.
32
+
33
+ **Core Distinction:**
34
+ - **Skills** = Modular capability packages (instructions + resources)
35
+ - **Subagents** = Pre-configured AI personalities (specialized workers)
36
+
37
+ **Key Insight:** This is not an either/or choice. Most powerful workflows use BOTH - Skills for utilities, Subagents for orchestration.
38
+
39
+ **This file addresses conceptual differences. For decision guidance, see:** `03-skills-vs-subagents-decision-tree.md`
40
+
41
+ ---
42
+
43
+ ## II. SKILLS: "HOW-TO" INSTRUCTIONS
44
+
45
+ ### Definition and Structure
46
+
47
+ **Claude Skills** are modular, reusable capability packages containing instructions, scripts, and resources.
48
+
49
+ **Structure:** Folder with SKILL.md file (YAML frontmatter + markdown body), plus optional scripts, references, assets.
50
+
51
+ **Primary Function:** Extend Claude's knowledge with procedural "how-to" information.
52
+
53
+ ### Mental Model: Recipe Cards
54
+
55
+ Think of Skills like recipe cards in a cookbook:
56
+ - Each card contains specific instructions
57
+ - Pull out card when needed
58
+ - Multiple cards can be used together
59
+ - Instructions stay same, execution adapts to context
60
+
61
+ ### 6 Key Characteristics
62
+
63
+ **1. Automatic Discovery**
64
+ Claude evaluates all skill descriptions against conversation context and loads relevant skills automatically. NO explicit user command needed.
65
+
66
+ **2. Shared Context Window**
67
+ Skills pull necessary information to current chat. Act as quick add-ons for single tasks. NO separate context window.
68
+
69
+ **3. Progressive Disclosure**
70
+ - Level 1: Metadata always loaded (30-50 tokens)
71
+ - Level 2: SKILL.md loaded when triggered
72
+ - Level 3: References loaded on-demand
73
+ - Extreme token efficiency
74
+
75
+ **4. Procedural Knowledge Focus**
76
+ "How-to" instructions, domain-specific procedures, organizational standards, templates and formats.
77
+
78
+ **5. Composability**
79
+ Multiple skills can be loaded simultaneously and stack together seamlessly. Reusable across different contexts.
80
+
81
+ **6. Tool Access Inheritance**
82
+ Uses main Claude's tools. All tools available that are given to main conversation.
83
+
84
+ ### Best Use Cases
85
+
86
+ **Single, Well-Defined Tasks:**
87
+ - File conversions (PDF to Excel)
88
+ - Template applications (brand guidelines)
89
+ - Domain knowledge reference (API docs)
90
+ - Utility functions (validation, transformation)
91
+
92
+ **Examples:** Brand guidelines enforcement, code style guides, financial modeling procedures, document processing.
93
+
94
+ **For detailed patterns, see:** `references/workflows.md`
95
+
96
+ ---
97
+
98
+ ## III. SUBAGENTS: AI WORKER
99
+
100
+ ### Definition and Structure
101
+
102
+ **Claude Subagents** are pre-configured AI personalities with specialized system prompts.
103
+
104
+ **Structure:** Markdown file with YAML frontmatter defining role, tools, system prompt, optional skill invocations.
105
+
106
+ **Primary Function:** Handle complex, multi-step workflows requiring dedicated focus.
107
+
108
+ ### Mental Model: Specialist Team Members
109
+
110
+ Think of Subagents like specialist team members:
111
+ - Each expert has specialized role
112
+ - Works independently with own workspace
113
+ - Can be called explicitly or delegate automatically
114
+ - Returns results when done
115
+
116
+ ### 6 Key Characteristics
117
+
118
+ **1. Dual Invocation Pattern**
119
+ Automatic delegation (Claude spawns specialized agents) OR explicit invocation ("@agent-name" or "Use the X subagent"). User has direct control.
120
+
121
+ **2. Isolated Context Window**
122
+ Operates in separate, dedicated context window. Complete isolation prevents "context pollution". Can focus entirely on specific task.
123
+
124
+ **3. Specialized Personality**
125
+ Pre-configured role and expertise. Domain-specific system prompts. Consistent behavior patterns.
126
+
127
+ **4. Multi-Step Workflow Capability**
128
+ Handles complex sequences with decision points, multiple queries and synthesis, iterative hypothesis testing.
129
+
130
+ **5. Restricted Tool Permissions**
131
+ Can have specific tool permissions. Example: code-reviewer gets Read/Grep/Glob only, NO Write/Edit. Security boundaries maintained.
132
+
133
+ **6. Higher Token Consumption**
134
+ Dedicated context per agent. Multi-agent systems use approximately 15x more tokens. Justified for high-value complex tasks.
135
+
136
+ ### Best Use Cases
137
+
138
+ **Complex, Multi-Step Workflows:**
139
+ - Code review processes with multiple stages
140
+ - Data analysis requiring multiple queries and synthesis
141
+ - Debugging with iterative hypothesis testing
142
+ - Security audits with comprehensive checks
143
+
144
+ **Examples:** ticket-researcher (downloads attachments, analyzes, compares), code reviewer (multiple validation passes), security auditor (comprehensive scanning).
145
+
146
+ **For orchestration patterns, see:** `04-hybrid-patterns.md`
147
+
148
+ ---
149
+
150
+ ## IV. COMPARISON MATRIX
151
+
152
+ ### Core Differences Table
153
+
154
+ | Dimension | Skills | Subagents |
155
+ |-----------|--------|-----------|
156
+ | **Mental Model** | Recipe cards, plugins | Team members, consultants |
157
+ | **Context Window** | Shared main context | Separate isolated context |
158
+ | **Invocation** | Automatic only | Automatic AND explicit |
159
+ | **Token Overhead** | 30-50 tokens until used | 15x full conversations |
160
+ | **Best For** | Single tasks, utilities | Multi-step workflows |
161
+ | **Tool Access** | Inherits all main tools | Can be restricted |
162
+ | **Composability** | Stack multiple skills | Coordinate multiple agents |
163
+ | **Control** | Automatic discovery | Explicit or automatic |
164
+
165
+ ### Invocation Pattern Examples
166
+
167
+ **Skills Invocation:**
168
+ ```
169
+ User: "Convert this PDF to Excel"
170
+ [Claude evaluates skill descriptions]
171
+ [pdf-processing skill automatically loaded]
172
+ [Task completed in main conversation]
173
+ ```
174
+
175
+ **Subagents Invocation:**
176
+ ```
177
+ User: "Review this codebase for security issues"
178
+ [Claude recognizes complex multi-step task]
179
+ [Spawns security-reviewer subagent]
180
+ [Subagent works in isolated context]
181
+ [Returns comprehensive report]
182
+ ```
183
+
184
+ ### Token Efficiency Comparison
185
+
186
+ **Skills Example:**
187
+ - Metadata: 50 tokens
188
+ - SKILL.md when triggered: 800 tokens
189
+ - **Total: 850 tokens**
190
+
191
+ **Subagent Example:**
192
+ - Full system prompt: 2,000 tokens
193
+ - Conversation history: 3,000 tokens
194
+ - Analysis output: 2,000 tokens
195
+ - **Total: 7,000 tokens (8.2x more)**
196
+
197
+ Multi-agent systems use approximately 15x more tokens than single conversations. Justified for complex, high-value tasks.
198
+
199
+ **For detailed token economics, see:** `05-token-economics.md`
200
+
201
+ ### Tool Access Comparison
202
+
203
+ **Skills:** Uses all tools available to main Claude. NO independent tool restrictions. Inherits permissions automatically.
204
+
205
+ **Subagents:** Can have specific tool permissions (e.g., code-reviewer restricted to Read/Grep/Glob only). Security boundaries maintained.
206
+
207
+ **Security Implication:** Subagents provide tool isolation - skills do not. Choose subagent when tool restrictions needed.
208
+
209
+ ### Use Case Decision Reference
210
+
211
+ | Use Case Type | Recommended | Reasoning |
212
+ |---------------|-------------|-----------|
213
+ | File conversion | Skill | Single task, utility |
214
+ | Code review | Subagent | Multi-step analysis |
215
+ | Brand guidelines | Skill | Standards reference |
216
+ | Security audit | Subagent | Complex workflow |
217
+ | Data transformation | Skill | Deterministic utility |
218
+ | Exploratory analysis | Subagent | Iterative reasoning |
219
+ | API documentation | Skill | Reference knowledge |
220
+ | Debugging session | Subagent | Multi-step investigation |
221
+
222
+ ### Maintenance Differences
223
+
224
+ **Skills:** Update SKILL.md instructions, add/modify scripts, version control straightforward, reusable across contexts, easier to maintain (smaller scope).
225
+
226
+ **Subagents:** Update system prompts, modify role definitions, test behavior extensively, context-specific tuning, more complex (broader scope).
227
+
228
+ **Real Example:** Subagent reduced from 803 lines to 281 lines (65% reduction) by extracting templates to separate skill file. Skills enable subagent efficiency.
229
+
230
+ ### Performance Validation
231
+
232
+ **Skills:** Fast invocation, minimal overhead, scales well (50+ skills manageable), consistent behavior.
233
+
234
+ **Subagents:** Anthropic research shows Claude Opus 4 + Sonnet 4 subagents outperforms single-agent Opus 4 by **90.2%** on complex research tasks. Higher token cost justified by capability.
235
+
236
+ ---
237
+
238
+ ## V. KEY TAKEAWAYS
239
+
240
+ ### Simple Rule of Thumb
241
+
242
+ **Start with Skill unless you specifically need Subagent features.**
243
+
244
+ Skills simpler, faster, and easier to maintain. Upgrade to Subagent when you're doing actual workflows with multiple steps, decision points, and validation loops.
245
+
246
+ **For detailed decision framework with scoring system, see:** `03-skills-vs-subagents-decision-tree.md`
247
+
248
+ ### They Work Together (Not Either/Or)
249
+
250
+ Skills and Subagents are designed to work together and highly complementary.
251
+
252
+ **The Hybrid Pattern:**
253
+ - Subagent handles complex workflow and orchestration
254
+ - Skill handles utility functions
255
+ - Clean separation of concerns
256
+ - Reusable components
257
+
258
+ **Example:** ticket-researcher subagent downloads ticket attachment, invokes document-reader skill to convert to text, continues analysis.
259
+
260
+ **For hybrid implementation patterns, see:** `04-hybrid-patterns.md`
261
+
262
+ ### Cost vs Capability Trade-off
263
+
264
+ **Skills:** Very cost-efficient (30-50 tokens overhead). Best for frequent, lightweight tasks. Scale well.
265
+
266
+ **Subagents:** Higher cost (15x token multiplier). Justified for complex, high-value tasks. Best for infrequent, critical workflows.
267
+
268
+ **Optimization Strategy:** Use Skills to reduce duplication across subagents. Extract common templates to skills. Subagents invoke skills for utilities.
269
+
270
+ **Validated Result:** Subagent system prompt reduced 65% (803→281 lines) with zero functionality lost.
271
+
272
+ ### When to Choose Each
273
+
274
+ **Choose Skills When:**
275
+ - Repeatable workflows you've figured out
276
+ - Tasks requiring organizational standards
277
+ - Building blocks reusable across contexts
278
+ - Token efficiency critical
279
+
280
+ **Choose Subagents When:**
281
+ - Complex multi-step workflows with decision points
282
+ - Specialized domain expertise requiring dedicated focus
283
+ - Tasks that would clutter main conversation
284
+ - Isolated context required
285
+
286
+ **Choose Both (Hybrid) When:**
287
+ - Complex orchestration + reusable utilities
288
+ - Multiple specialized agents sharing common functions
289
+ - Cost optimization without sacrificing capability
290
+
291
+ ---
292
+
293
+ ## WHEN TO READ NEXT
294
+
295
+ **For Decision Making:**
296
+ - Need decision framework? → `03-skills-vs-subagents-decision-tree.md`
297
+ - Want hybrid patterns? → `04-hybrid-patterns.md`
298
+
299
+ **For Cost Analysis:**
300
+ - Token economics details → `05-token-economics.md`
301
+
302
+ **For Implementation:**
303
+ - Technical architecture → `technical-architecture.md`
304
+ - Platform constraints → `06-platform-constraints.md`
305
+ - Security concerns → `07-security-concerns.md`
306
+
307
+ **If Clear on Differences:**
308
+ - Skip to decision tree → `03-skills-vs-subagents-decision-tree.md`
309
+
310
+ ---
311
+
312
+ **FILE END - Estimated Token Count: ~2,400 tokens (~335 lines)**