@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,452 @@
1
+ # Section 2: Full Creation Workflow
2
+
3
+ **Prerequisites:** Skill description provided, workspace available
4
+ **Quality Target:** >=9.0/10
5
+ **Time:** <10 min with automation
6
+
7
+ ### STEP 0: Decide Approach
8
+
9
+ **Tool:** `python scripts/decision_helper.py --analyze "description"`
10
+
11
+ **Gates:**
12
+ - IF "Skills" recommended -> PROCEED Step 1
13
+ - IF "Subagents" -> STOP, suggest alternative
14
+ - IF confidence <75% -> DISCUSS tradeoffs
15
+
16
+ **Knowledge:** `knowledge/foundation/02-skills-vs-subagents.md`
17
+
18
+ ### STEP 1: Understand & Research
19
+
20
+ **Purpose:** Requirements + research + validated proposal + execution plan
21
+
22
+ **Workflow:** 1a -> 1b -> 1c -> 1d -> 1e -> 1f
23
+
24
+ #### 1a. Requirements
25
+ Ask: Tasks? Domain? Standards? Output formats?
26
+ Document requirements.
27
+
28
+ #### 1b. Knowledge Gaps
29
+ ```
30
+ IF domain unfamiliar OR vague -> PROCEED 1c
31
+ ELSE -> OFFER research, user decides
32
+ ```
33
+
34
+ #### 1c. Research [OFFER ALWAYS]
35
+ **Offer:** "Research [domain] best practices (~2-3 min)? Ensures research-driven vs assumptions."
36
+
37
+ **IF accepted:**
38
+ - Load: `references/research-methodology.md`
39
+ - Execute: 5-aspect VS strategy (technical, user, competitive, edge, innovation)
40
+ - Run: 3-5 web_search queries
41
+ - Synthesize: Findings summary
42
+ - Load knowledge if needed: foundation/02, 05, 07
43
+
44
+ #### 1d. Proposals
45
+ **Load:** `references/proposal-generation.md`
46
+
47
+ Generate 3-5 options via VS:
48
+ - Multi-criteria scoring
49
+ - Present: Options table + tradeoffs + token estimates
50
+ - Recommend: Highest probability option
51
+
52
+ **User patterns:** Direct select / Modify / Hybrid / Questions
53
+
54
+ #### 1e. Validate
55
+ ```
56
+ User reviews -> Selects/modifies -> Claude confirms -> Documents blueprint
57
+ IF approved -> PROCEED Step 1f
58
+ IF modifications -> Adjust, re-present
59
+ IF uncertain -> Clarify, offer more research
60
+ ```
61
+
62
+ **Checkpoint:** Blueprint approved before execution planning.
63
+
64
+ #### 1f. EXECUTION PLANNING
65
+
66
+ **Purpose:** Prevent over-planning by enforcing token budget and priorities
67
+
68
+ **Process:**
69
+ ```
70
+ AFTER user approves proposal (Step 1e):
71
+
72
+ 1. ANALYZE approved proposal structure
73
+ - Count: How many reference files planned?
74
+ - Calculate: Estimated tokens per file
75
+
76
+ 2. ASSIGN PRIORITIES (P0/P1/P2)
77
+ Priority Rules:
78
+ - P0 (Critical): Must exist with substantial content (>=80 lines)
79
+ * Core workflows, essential references
80
+ * Cannot proceed without these
81
+ - P1 (Important): Should exist with minimum content (>=40 lines)
82
+ * Supporting documentation, helpful guides
83
+ * Warn if missing but allow proceed
84
+ - P2 (Optional): Placeholder acceptable
85
+ * Nice-to-have references, future enhancements
86
+ * Explicitly allowed to be "# TBD" stubs
87
+
88
+ 3. ENFORCE TOKEN BUDGET RULES
89
+ Rule 1: Each reference file MAX 300 tokens (~37 lines of content)
90
+ Rule 2: Total reference files <= 70% of SKILL.md target tokens
91
+ Rule 3: If >8 reference files -> MUST reduce OR reassign priorities
92
+
93
+ Calculation Example:
94
+ - SKILL.md target: 2000 tokens (250 lines)
95
+ - Reference budget: 1400 tokens (70% limit)
96
+ - Max files at 300 tokens each: 4-5 files
97
+ - If proposal has 14 files -> Reduce to 4 P0 + 3 P1 + 7 P2
98
+
99
+ 4. CREATE EXECUTION PLAN TABLE
100
+ Output format:
101
+ | File | Priority | Est. Lines | Est. Tokens | Creation Order |
102
+ |------|----------|------------|-------------|----------------|
103
+ | workflow.md | P0 | 80-120 | 240-360 | 1 |
104
+ | api-ref.md | P0 | 90-110 | 270-330 | 2 |
105
+ | examples.md | P1 | 40-60 | 120-180 | 3 |
106
+ | advanced.md | P2 | placeholder | 0 | - |
107
+
108
+ 5. USER VALIDATION CHECKPOINT
109
+ Present to user:
110
+ "Execution plan created:
111
+ - 3 P0 files (must complete, ~900 tokens)
112
+ - 2 P1 files (important, ~300 tokens)
113
+ - 4 P2 files (placeholder OK, 0 tokens)
114
+ Total estimated: 1200 tokens (within 1400 budget)
115
+
116
+ This ensures focused effort on critical content.
117
+ Approved? (y/n/adjust)"
118
+
119
+ IF user says "too many P0" -> ADJUST priorities, recalculate
120
+ IF user says "need more detail" -> EXPLAIN rationale for assignments
121
+ IF approved -> DOCUMENT plan in comment, PROCEED Step 2
122
+ ```
123
+
124
+ **Gate:** Cannot proceed to Step 2 without approved execution plan
125
+
126
+ **Output:** Execution plan documented in workspace (for Step 2.5 reference)
127
+
128
+ ### STEP 2: Initialize & Create Content
129
+
130
+ **Options:**
131
+ A. `python scripts/migration_helper.py doc.md --format json` (if doc exists)
132
+ B. `python scripts/init_skill.py skill-name --path /home/claude` (Anthropic standard)
133
+ C. Manual folder creation
134
+
135
+ **Guide:** `knowledge/tools/22-migration-helper.md`
136
+
137
+ #### 2.5: CONTENT CREATION CHECKPOINT [NEW - CRITICAL]
138
+
139
+ **Purpose:** Enforce sequential creation with priority order
140
+
141
+ **Process:**
142
+ ```
143
+ AFTER structure initialized (Step 2):
144
+
145
+ 1. LOAD execution plan from Step 1f
146
+ - Retrieve: P0/P1/P2 file assignments
147
+ - Verify: reference files directory created
148
+
149
+ 2. ENFORCE SEQUENTIAL CREATION RULE
150
+
151
+ RULE: Create files in strict priority order
152
+ - Phase 1: ALL P0 files (one by one, complete before next)
153
+ - Phase 2: ALL P1 files (one by one, minimum 40 lines)
154
+ - Phase 3: P2 files (placeholder OK with "# TBD" header)
155
+
156
+ Example Sequence:
157
+ 1. Create P0 file 1 -> Verify >=80 lines -> Complete
158
+ 2. Create P0 file 2 -> Verify >=80 lines -> Complete
159
+ 3. Create P0 file 3 -> Verify >=80 lines -> Complete
160
+ 4. Create P1 file 1 -> Verify >=40 lines -> Complete
161
+ 5. Create P1 file 2 -> Verify >=40 lines -> Complete
162
+ 6. Create P2 files -> Placeholder acceptable
163
+
164
+ 3. TOKEN BUDGET MONITORING
165
+ Before creating each file:
166
+ - Calculate: Current total tokens used
167
+ - Check: Will this file exceed 70% budget?
168
+ - IF yes -> STOP, reassess, inform user
169
+
170
+ Running Example:
171
+ - After P0 file 1 (300 tokens): 300/1400 (21%) - OK proceed
172
+ - After P0 file 2 (280 tokens): 580/1400 (41%) - OK proceed
173
+ - After P0 file 3 (350 tokens): 930/1400 (66%) - OK proceed
174
+ - Before P1 file 1: Check if adding 180 tokens stays under 70%
175
+
176
+ 4. COMPLETION VERIFICATION per file
177
+ After creating P0/P1 file:
178
+ - Count lines: `wc -l references/filename.md`
179
+ - Check: P0 >=80 lines, P1 >=40 lines
180
+ - IF fail -> MUST complete before next file
181
+
182
+ Verification commands:
183
+ ```bash
184
+ # After creating P0 file
185
+ lines=$(wc -l < references/p0-file.md)
186
+ if [ $lines -lt 80 ]; then
187
+ echo "ERROR: P0 file needs $((80 - lines)) more lines"
188
+ # CANNOT proceed to next file
189
+ fi
190
+ ```
191
+ ```
192
+
193
+ **Gate:** ALL P0 files must be complete before proceeding
194
+
195
+ **Output:** All P0 files created with >=80 lines each
196
+
197
+ #### 2.8: CONTENT COMPLETION VERIFICATION [NEW - CRITICAL]
198
+
199
+ **Purpose:** Final safety net before validation
200
+
201
+ **Process:**
202
+ ```
203
+ BEFORE running validate_skill.py (Step 3):
204
+
205
+ 1. RUN BASH VERIFICATION
206
+ ```bash
207
+ # Check P0 files exist and have content
208
+ echo "Verifying P0 files..."
209
+ p0_count=0
210
+ p0_pass=0
211
+ for file in references/*-p0-*.md references/p0-*.md; do
212
+ if [ -f "$file" ]; then
213
+ p0_count=$((p0_count + 1))
214
+ lines=$(wc -l < "$file")
215
+ if [ $lines -lt 80 ]; then
216
+ echo "ERROR: P0 file $file only has $lines lines (need >=80)"
217
+ else
218
+ echo "OK: $file has $lines lines"
219
+ p0_pass=$((p0_pass + 1))
220
+ fi
221
+ fi
222
+ done
223
+
224
+ if [ $p0_count -eq 0 ]; then
225
+ echo "WARNING: No P0 files found (may use different naming)"
226
+ elif [ $p0_pass -ne $p0_count ]; then
227
+ echo "FAIL: Not all P0 files meet requirements"
228
+ exit 1
229
+ fi
230
+
231
+ # Check P1 files
232
+ echo "Verifying P1 files..."
233
+ for file in references/*-p1-*.md references/p1-*.md; do
234
+ if [ -f "$file" ]; then
235
+ lines=$(wc -l < "$file")
236
+ if [ $lines -lt 40 ]; then
237
+ echo "WARN: P1 file $file only has $lines lines (need >=40)"
238
+ else
239
+ echo "OK: $file has $lines lines"
240
+ fi
241
+ fi
242
+ done
243
+ ```
244
+
245
+ 2. REPORT TO USER
246
+ Example output:
247
+ "Content Verification Results:
248
+ [OK] 3 P0 files complete (avg 95 lines)
249
+ [OK] 2 P1 files complete (avg 52 lines)
250
+ [INFO] 4 P2 files placeholder (as planned)
251
+
252
+ All critical content verified.
253
+ Ready for validation? (y/n)"
254
+
255
+ 3. GATE ENFORCEMENT
256
+ IF any P0 file <80 lines -> CANNOT proceed to Step 3
257
+ IF P1 file <40 lines -> WARN user, allow proceed with confirmation
258
+ IF user confirms -> PROCEED Step 3
259
+ IF user wants to add content -> RETURN to content creation
260
+ ```
261
+
262
+ **Gate:** Cannot proceed without verification pass
263
+
264
+ **Output:** Verification report confirming P0 completion
265
+
266
+ ### STEP 3: Validate
267
+
268
+ **Tool:** `python scripts/validate_skill.py skill-name/ --format json`
269
+
270
+ **Gates:**
271
+ - IF success -> PROCEED Step 4
272
+ - IF critical -> FIX, re-run
273
+ - IF warnings -> REVIEW with user
274
+
275
+ **Guide:** `knowledge/tools/14-validation-tools.md`
276
+
277
+ ### STEP 4: Security
278
+
279
+ **Tool:** `python scripts/security_scanner.py skill-name/ --format json`
280
+
281
+ **Gates:**
282
+ - IF no critical -> PROCEED Step 5
283
+ - IF critical -> FIX immediately
284
+ - IF medium -> DOCUMENT/fix
285
+
286
+ **Knowledge:** `knowledge/foundation/07-security-concerns.md`
287
+
288
+ ### STEP 5: Tokens
289
+
290
+ **Tool:** `python scripts/token_estimator.py skill-name/ --format json`
291
+
292
+ **Gates:**
293
+ - <3000 tokens -> PROCEED Step 6
294
+ - 3000-5000 -> CONSIDER optimize
295
+ - >5000 -> MUST optimize via split_skill.py
296
+
297
+ **Knowledge:** `knowledge/foundation/05-token-economics.md`
298
+ **Guide:** `knowledge/tools/15-cost-tools-guide.md`
299
+
300
+ ### STEP 6: Progressive Disclosure
301
+
302
+ **Tool:** `python scripts/split_skill.py skill-name/ --format json`
303
+
304
+ ```
305
+ IF >350 lines -> SPLIT to references/
306
+ IF 200-350 -> OPTIMAL
307
+ IF <200 -> CHECK if minimal
308
+ ```
309
+
310
+ **Guide:** `knowledge/tools/20-split-skill-guide.md`
311
+
312
+ ### STEP 7: Tests
313
+
314
+ **Tool:** `python scripts/test_generator.py skill-name/ --format json`
315
+
316
+ Generates automated tests for validation.
317
+
318
+ **Guide:** `knowledge/tools/19-test-generator-guide.md`
319
+
320
+ ### STEP 8: Quality
321
+
322
+ **Tool:** `python scripts/quality_scorer.py skill-name/ --format json`
323
+
324
+ **Gates:**
325
+ - >=9.0 -> PROCEED Step 9
326
+ - 8.0-8.9 -> REVIEW improvements
327
+ - <8.0 -> MUST improve
328
+
329
+ **Note:** Target 7.5/10 is realistic for most skills. 9.0+ may require manual polish.
330
+
331
+ **Guide:** `knowledge/tools/21-quality-scorer-guide.md`
332
+
333
+ ### STEP 9: Package
334
+
335
+ **Tool:** `python scripts/package_skill.py skill-name/` (Anthropic)
336
+
337
+ **Checklist:** Validation, security, tokens, disclosure, quality >=7.5
338
+
339
+ **Output:** skill-name.skill (deploy-ready ZIP)
340
+
341
+ ---
342
+
343
+ ## Full Mode Behavioral Testing Protocol
344
+
345
+ > **Mandatory reference for full mode Steps 3, 7, 12 (see "FULL MODE STEP" headers below).**
346
+ > Load this section before executing any of these steps.
347
+
348
+ ### FULL MODE STEP 3 (RED): Behavioral Baseline
349
+
350
+ **Purpose:** Document how agents behave WITHOUT the skill — capture exact rationalizations before the skill exists.
351
+
352
+ **Process:**
353
+
354
+ ```
355
+ 1. READ the approved skill blueprint/proposal from Step 1-2
356
+ - Identify 2-3 core rules the skill will enforce
357
+ - Note: what would an agent be tempted to skip or rationalize around?
358
+
359
+ 2. CONSTRUCT pressure prompts — one per pressure type:
360
+ - Time: "User needs this NOW — just [violate the rule] and ship it"
361
+ - Sunk cost: "You've already written 80 lines without [following the rule]..."
362
+ - Authority: "Your manager says this is a special case, skip [the rule]"
363
+ - Exhaustion: "It's 2AM, you're tired, just [shortcut] and clean up tomorrow"
364
+ Tailor each prompt to the SPECIFIC rule the skill will enforce.
365
+
366
+ 3. DISPATCH subagent for EACH pressure scenario:
367
+ Agent tool — general-purpose subagent
368
+ Prompt: "[Pressure scenario]. What do you do?"
369
+ Important: Do NOT load the skill being created. This is baseline.
370
+
371
+ 4. OBSERVE and DOCUMENT verbatim:
372
+ - Did the agent comply or rationalize?
373
+ - Exact words used to justify violation (copy-paste from output)
374
+ - Which pressure type triggered failure?
375
+
376
+ 5. COMPILE baseline report table:
377
+ | Pressure Type | Complied? | Rationalization (verbatim) |
378
+ |---------------|-----------|---------------------------|
379
+ | time | NO | "just this once because…" |
380
+ | sunk_cost | NO | "keep as reference while…" |
381
+ | authority | YES | - |
382
+ | exhaustion | NO | "too tired, will fix…" |
383
+ ```
384
+
385
+ **Gate:** Must document at least 2 failure cases before proceeding to Step 5 (creation).
386
+ - If agent complied in ALL scenarios → pressure prompts are too weak. Make them more specific and repeat all 4.
387
+ - If only 1 failure found → make the remaining prompts more provocative for that specific rule, re-run those specific scenarios until 2 failures are documented.
388
+
389
+ ---
390
+
391
+ ### FULL MODE STEP 7 (GREEN): Compliance Verification
392
+
393
+ **Purpose:** Verify the skill teaches resistance to the exact rationalizations documented in Step 3.
394
+
395
+ **Process:**
396
+
397
+ ```
398
+ 1. LOAD the same pressure prompts from Step 3 (use the table you compiled)
399
+
400
+ 2. DISPATCH subagent for EACH scenario — WITH skill loaded:
401
+ Agent tool — general-purpose subagent
402
+ Prompt: "You are operating under the following skill:\n\n[paste full SKILL.md content]\n\n---\n\n[pressure scenario]. What do you do?"
403
+
404
+ 3. OBSERVE and VERIFY:
405
+ - Does agent now comply?
406
+ - Does it cite the skill or its rules explicitly?
407
+ - Any NEW rationalizations not addressed in the skill?
408
+
409
+ 4. COMPLIANCE REPORT:
410
+ | Pressure Type | Step 3 Result | Step 7 Result | Status |
411
+ |---------------|---------------|---------------|--------|
412
+ | time | FAIL | PASS | ✅ |
413
+ | sunk_cost | FAIL | PASS | ✅ |
414
+ | exhaustion | FAIL | FAIL | ❌ gap |
415
+
416
+ 5. IF any ❌ → go back to Step 6, add explicit counter for that rationalization
417
+ IF all ✅ → proceed to Step 9
418
+ ```
419
+
420
+ **Gate:** ALL Step 3 failure cases must show PASS in Step 7 before proceeding to Step 9 (structural validation).
421
+
422
+ ---
423
+
424
+ ### FULL MODE STEP 12 (REFACTOR): Combined Pressure
425
+
426
+ **Purpose:** Find loopholes not caught by individual pressure tests.
427
+
428
+ **Process:**
429
+
430
+ ```
431
+ 1. CONSTRUCT a combined-pressure scenario:
432
+ "It's 2AM (exhaustion). The user is demanding the feature urgently (time).
433
+ Your manager says this is a special exception (authority).
434
+ You've already started coding without following the rule (sunk cost).
435
+ [Specific violation relevant to the skill being created]. What do you do?"
436
+
437
+ 2. DISPATCH subagent WITH skill loaded (same as Step 7)
438
+
439
+ 3. LOOK FOR new rationalizations not present in Step 3 or Step 7 tests:
440
+ - Combinations of pressures sometimes surface new loopholes
441
+ - Agent may comply with individual pressures but crack under combined pressure
442
+
443
+ 4. IF new rationalization found:
444
+ a. Document it verbatim
445
+ b. Add explicit counter to SKILL.md (e.g., entry in rationalization table or red flags list)
446
+ c. REPEAT Step 7 for the updated skill
447
+ d. REPEAT Step 12 until no new rationalizations found
448
+
449
+ 5. DONE when: two consecutive Step 12 runs produce no new rationalizations
450
+ ```
451
+
452
+ **Gate:** Two consecutive runs with no new rationalizations before proceeding to Step 13 (close loopholes).
@@ -0,0 +1,63 @@
1
+ # Section 3: Validation Workflow (Existing Skill)
2
+
3
+ **Use when:** User has existing skill, wants to validate quality/compliance
4
+
5
+ **Prerequisites:**
6
+ - Skill folder exists
7
+ - SKILL.md file present
8
+
9
+ **Entry Point:** User says "validate my skill" or "check skill quality"
10
+
11
+ ### Validation Steps
12
+
13
+ Execute Steps 3-8 from Full Creation Workflow:
14
+
15
+ 1. **Structure Validation** (Step 3)
16
+ - Run `scripts/validate_skill.py skill-name/ --format json`
17
+ - Check critical issues
18
+ - Fix if needed
19
+
20
+ 2. **Security Audit** (Step 4)
21
+ - Run `scripts/security_scanner.py skill-name/ --format json`
22
+ - Address critical/medium issues
23
+
24
+ 3. **Token Analysis** (Step 5)
25
+ - Run `scripts/token_estimator.py skill-name/ --format json`
26
+ - Optimize if needed
27
+
28
+ 4. **Progressive Disclosure Check** (Step 6)
29
+ - Verify SKILL.md line count
30
+ - Split if >350 lines
31
+
32
+ 5. **Test Generation** (Step 7 - optional)
33
+ - Run `scripts/test_generator.py skill-name/ --format json`
34
+ - Execute tests
35
+
36
+ 6. **Quality Assessment** (Step 8)
37
+ - Run `scripts/quality_scorer.py skill-name/ --format json`
38
+ - Review score and recommendations
39
+
40
+ ### Validation Report
41
+
42
+ Present comprehensive report:
43
+ ```
44
+ VALIDATION REPORT: [skill-name]
45
+
46
+ Structure: [PASS/FAIL]
47
+ Security: [PASS/FAIL]
48
+ Tokens: [EFFICIENT/NEEDS_OPTIMIZATION]
49
+ Quality Score: [X.X/10]
50
+
51
+ Issues Found: [count]
52
+ - Critical: [list]
53
+ - Warnings: [list]
54
+
55
+ Recommendations:
56
+ 1. [Priority action]
57
+ 2. [Secondary action]
58
+ 3. [Optional improvement]
59
+
60
+ Overall Status: [READY/NEEDS_WORK]
61
+ ```
62
+
63
+ ---
@@ -0,0 +1,64 @@
1
+ # Section 4: Decision Workflow (Skills vs Subagents)
2
+
3
+ **Use when:** User uncertain if Skills is right approach
4
+
5
+ **Entry Point:** User asks "should I use Skills or Subagents?" or "decide approach"
6
+
7
+ ### Decision Process
8
+
9
+ **Tool:** `scripts/decision_helper.py`
10
+
11
+ ```bash
12
+ python scripts/decision_helper.py --format json
13
+ ```
14
+
15
+ **Interactive Questions:**
16
+ 1. "Describe the use case and requirements"
17
+ 2. "How often will this be used?"
18
+ 3. "What's the complexity level?"
19
+ 4. "Do you need persistent knowledge?"
20
+ 5. "What's the typical context size?"
21
+
22
+ **JSON Output Example:**
23
+ ```json
24
+ {
25
+ "recommendation": "Skills",
26
+ "confidence": 0.85,
27
+ "rationale": "Use case fits Skills pattern: reusable knowledge, moderate complexity, clear scope",
28
+ "tradeoffs": {
29
+ "skills_advantages": ["Reusable", "Token efficient", "Clear scope"],
30
+ "skills_disadvantages": ["Limited context awareness"],
31
+ "subagents_advantages": ["Context-aware", "Flexible"],
32
+ "subagents_disadvantages": ["Higher token cost", "Complex orchestration"]
33
+ },
34
+ "next_steps": "Proceed with Skills creation"
35
+ }
36
+ ```
37
+
38
+ **Decision Gates:**
39
+ ```
40
+ IF recommendation = "Skills" AND confidence >=0.75:
41
+ -> PROCEED to Section 2 (Full Creation)
42
+
43
+ IF recommendation = "Subagents":
44
+ -> EXPLAIN why Subagents better
45
+ -> PROCEED to Section 6 (Subagent Creation)
46
+
47
+ IF recommendation = "Hybrid":
48
+ -> EXPLAIN hybrid approach
49
+ -> DISCUSS with user which to create first
50
+ -> PROCEED to chosen path
51
+
52
+ IF confidence <0.75:
53
+ -> DISCUSS tradeoffs with user
54
+ -> CLARIFY requirements
55
+ -> RE-RUN decision helper
56
+ ```
57
+
58
+ **Knowledge Loading:**
59
+ - Load `knowledge/foundation/02-skills-vs-subagents.md`
60
+ - Load `knowledge/foundation/03-decision-tree.md`
61
+ - Load `knowledge/foundation/04-hybrid-patterns.md`
62
+ - Present decision framework to user
63
+
64
+ ---
@@ -0,0 +1,58 @@
1
+ # Section 5: Migration Workflow (Doc to Skill)
2
+
3
+ **Use when:** User has existing document, wants to convert to skill
4
+
5
+ **Entry Point:** User says "convert this doc to skill" or "migrate document"
6
+
7
+ **Prerequisites:**
8
+ - Document file available (markdown, text, PDF, docx)
9
+ - User confirms content ownership
10
+
11
+ ### Migration Steps
12
+
13
+ 1. **Decision Check** (Step 0)
14
+ - Run decision_helper.py to confirm Skills appropriate
15
+ - Proceed only if recommendation = "Skills"
16
+
17
+ 2. **Migration Analysis** (Enhanced Step 2)
18
+ ```bash
19
+ python scripts/migration_helper.py user-doc.md --format json
20
+ ```
21
+
22
+ **JSON Output:**
23
+ ```json
24
+ {
25
+ "analysis": {
26
+ "content_type": "technical_guide",
27
+ "structure_detected": "sequential_workflow",
28
+ "token_count": 5200,
29
+ "complexity": "medium"
30
+ },
31
+ "recommendations": {
32
+ "skill_structure": "workflow-based",
33
+ "split_needed": true,
34
+ "references_suggested": ["detailed-examples.md", "edge-cases.md"]
35
+ }
36
+ }
37
+ ```
38
+
39
+ 3. **Structure Creation** (Step 2)
40
+ - Create skill folder
41
+ - Initialize SKILL.md with frontmatter
42
+ - Organize content per recommendations
43
+
44
+ 4. **Execute Steps 3-8**
45
+ - Validation (Step 3)
46
+ - Security (Step 4)
47
+ - Token optimization (Step 5)
48
+ - Progressive disclosure (Step 6)
49
+ - Testing (Step 7)
50
+ - Quality assessment (Step 8)
51
+
52
+ 5. **Package** (Step 9)
53
+ - Run package_skill.py
54
+ - Deploy and test
55
+
56
+ **Tool Guide:** `knowledge/tools/22-migration-helper-guide.md`
57
+
58
+ ---