@techwavedev/agi-agent-kit 1.5.2 → 1.6.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 (2612) hide show
  1. package/CHANGELOG.md +59 -0
  2. package/README.md +12 -10
  3. package/README.pt-BR.md +8 -8
  4. package/package.json +1 -1
  5. package/templates/base/.agent/rules/agent_team_rules.md +104 -0
  6. package/templates/base/.agent/workflows/run-agent-team-tests.md +88 -0
  7. package/templates/base/AGENTS.md +166 -0
  8. package/templates/base/CHANGELOG.md +209 -220
  9. package/templates/base/README.md +13 -1
  10. package/templates/base/directives/blockchain_agent_trust.md +89 -0
  11. package/templates/base/directives/control_tower.md +61 -0
  12. package/templates/base/directives/event_driven_agent_streaming.md +80 -0
  13. package/templates/base/directives/memory_integration.md +3 -3
  14. package/templates/base/directives/subagents/asset_compiler.md +25 -0
  15. package/templates/base/directives/subagents/changelog_updater.md +89 -0
  16. package/templates/base/directives/subagents/cloud_deployer.md +23 -0
  17. package/templates/base/directives/subagents/doc_reviewer.md +75 -0
  18. package/templates/base/directives/subagents/doc_writer.md +93 -0
  19. package/templates/base/directives/subagents/quality_reviewer.md +85 -0
  20. package/templates/base/directives/subagents/spec_reviewer.md +79 -0
  21. package/templates/base/directives/subagents/test_generator.md +87 -0
  22. package/templates/base/directives/subagents/test_verifier.md +98 -0
  23. package/templates/base/directives/teams/build_deploy_team.md +40 -0
  24. package/templates/base/directives/teams/code_review_team.md +102 -0
  25. package/templates/base/directives/teams/documentation_team.md +111 -0
  26. package/templates/base/directives/teams/qa_team.md +93 -0
  27. package/templates/base/docs/agent-teams/README.md +170 -0
  28. package/templates/base/execution/agent_identity.py +276 -0
  29. package/templates/base/execution/agent_team_result.py +216 -0
  30. package/templates/base/execution/chain_anchor.py +217 -0
  31. package/templates/base/execution/control_tower.py +362 -0
  32. package/templates/base/execution/cross_agent_context.py +401 -0
  33. package/templates/base/execution/dispatch_agent_team.py +203 -0
  34. package/templates/base/execution/run_test_scenario.py +481 -0
  35. package/templates/base/execution/session_boot.py +50 -0
  36. package/templates/base/requirements.txt +5 -0
  37. package/templates/base/tests/agents/scenario_01_single_subagent.md +63 -0
  38. package/templates/base/tests/agents/scenario_02_parallel_subagents.md +70 -0
  39. package/templates/base/tests/agents/scenario_03_doc_team_on_code.md +107 -0
  40. package/templates/base/tests/agents/scenario_04_full_pipeline.md +114 -0
  41. package/templates/base/tests/agents/scenario_05_failure_recovery.md +105 -0
  42. package/templates/skills/category_map.json +375 -0
  43. package/templates/skills/core/documentation/scripts/__pycache__/analyze_code.cpython-312.pyc +0 -0
  44. package/templates/skills/core/documentation/scripts/__pycache__/detect_changes.cpython-312.pyc +0 -0
  45. package/templates/skills/core/documentation/scripts/__pycache__/generate_changelog.cpython-312.pyc +0 -0
  46. package/templates/skills/core/documentation/scripts/__pycache__/sync_docs.cpython-312.pyc +0 -0
  47. package/templates/skills/core/documentation/scripts/__pycache__/update_skill_docs.cpython-312.pyc +0 -0
  48. package/templates/skills/core/pdf-reader/scripts/__pycache__/extract_text.cpython-312.pyc +0 -0
  49. package/templates/skills/core/qdrant-memory/references/complete_guide.md +3 -3
  50. package/templates/skills/core/qdrant-memory/scripts/__pycache__/benchmark_token_savings.cpython-312.pyc +0 -0
  51. package/templates/skills/core/qdrant-memory/scripts/__pycache__/bm25_index.cpython-312.pyc +0 -0
  52. package/templates/skills/core/qdrant-memory/scripts/__pycache__/embedding_utils.cpython-312.pyc +0 -0
  53. package/templates/skills/core/qdrant-memory/scripts/__pycache__/hybrid_search.cpython-312.pyc +0 -0
  54. package/templates/skills/core/qdrant-memory/scripts/__pycache__/init_collection.cpython-312.pyc +0 -0
  55. package/templates/skills/core/qdrant-memory/scripts/__pycache__/memory_retrieval.cpython-312.pyc +0 -0
  56. package/templates/skills/core/qdrant-memory/scripts/__pycache__/semantic_cache.cpython-312.pyc +0 -0
  57. package/templates/skills/core/qdrant-memory/scripts/__pycache__/test_skill.cpython-312.pyc +0 -0
  58. package/templates/skills/core/qdrant-memory/scripts/memory_retrieval.py +34 -1
  59. package/templates/skills/core/qdrant-memory/scripts/semantic_cache.py +34 -1
  60. package/templates/skills/core/webcrawler/scripts/__pycache__/crawl_docs.cpython-312.pyc +0 -0
  61. package/templates/skills/core/webcrawler/scripts/__pycache__/extract_page.cpython-312.pyc +0 -0
  62. package/templates/skills/core/webcrawler/scripts/__pycache__/filter_docs.cpython-312.pyc +0 -0
  63. package/templates/skills/extended/ai-agents/activecampaign-automation/SKILL.md +35 -22
  64. package/templates/skills/extended/ai-agents/agent-evaluation/SKILL.md +36 -22
  65. package/templates/skills/extended/ai-agents/agent-framework-azure-ai-py/SKILL.md +40 -26
  66. package/templates/skills/extended/ai-agents/agent-manager-skill/SKILL.md +34 -22
  67. package/templates/skills/extended/ai-agents/agent-memory-mcp/SKILL.md +36 -22
  68. package/templates/skills/extended/ai-agents/agent-orchestration-improve-agent/SKILL.md +33 -21
  69. package/templates/skills/extended/ai-agents/agents-v2-py/SKILL.md +36 -26
  70. package/templates/skills/extended/ai-agents/ai-product/SKILL.md +35 -21
  71. package/templates/skills/extended/ai-agents/ai-wrapper-product/SKILL.md +36 -22
  72. package/templates/skills/extended/ai-agents/airtable-automation/SKILL.md +35 -22
  73. package/templates/skills/extended/ai-agents/autonomous-agents/SKILL.md +36 -22
  74. package/templates/skills/extended/ai-agents/azure-ai-agents-persistent-dotnet/SKILL.md +36 -23
  75. package/templates/skills/extended/ai-agents/azure-ai-agents-persistent-java/SKILL.md +36 -24
  76. package/templates/skills/extended/ai-agents/azure-ai-contentsafety-ts/SKILL.md +36 -22
  77. package/templates/skills/extended/ai-agents/azure-ai-openai-dotnet/SKILL.md +36 -23
  78. package/templates/skills/extended/ai-agents/azure-ai-projects-py/SKILL.md +55 -41
  79. package/templates/skills/extended/ai-agents/azure-ai-projects-ts/SKILL.md +36 -22
  80. package/templates/skills/extended/ai-agents/azure-ai-vision-imageanalysis-java/SKILL.md +36 -22
  81. package/templates/skills/extended/ai-agents/azure-ai-vision-imageanalysis-py/SKILL.md +36 -24
  82. package/templates/skills/extended/ai-agents/azure-ai-voicelive-py/SKILL.md +39 -25
  83. package/templates/skills/extended/ai-agents/bullmq-specialist/SKILL.md +35 -21
  84. package/templates/skills/extended/ai-agents/business-analyst/SKILL.md +34 -27
  85. package/templates/skills/extended/ai-agents/code-review-ai-ai-review/SKILL.md +33 -21
  86. package/templates/skills/extended/ai-agents/codex-review/SKILL.md +34 -22
  87. package/templates/skills/extended/ai-agents/computer-use-agents/SKILL.md +36 -22
  88. package/templates/skills/extended/ai-agents/computer-vision-expert/SKILL.md +34 -22
  89. package/templates/skills/extended/ai-agents/context-degradation/SKILL.md +32 -30
  90. package/templates/skills/extended/ai-agents/context-fundamentals/SKILL.md +32 -30
  91. package/templates/skills/extended/ai-agents/context-manager/SKILL.md +34 -28
  92. package/templates/skills/extended/ai-agents/conversation-memory/SKILL.md +35 -21
  93. package/templates/skills/extended/ai-agents/crewai/SKILL.md +36 -22
  94. package/templates/skills/extended/ai-agents/customer-support/SKILL.md +34 -28
  95. package/templates/skills/extended/ai-agents/daily-news-report/SKILL.md +37 -26
  96. package/templates/skills/extended/ai-agents/dispatching-parallel-agents/SKILL.md +30 -20
  97. package/templates/skills/extended/ai-agents/email-sequence/SKILL.md +36 -21
  98. package/templates/skills/extended/ai-agents/email-systems/SKILL.md +35 -21
  99. package/templates/skills/extended/ai-agents/embedding-strategies/SKILL.md +34 -22
  100. package/templates/skills/extended/ai-agents/evaluation/SKILL.md +33 -23
  101. package/templates/skills/extended/ai-agents/fal-audio/SKILL.md +32 -22
  102. package/templates/skills/extended/ai-agents/fal-generate/SKILL.md +32 -22
  103. package/templates/skills/extended/ai-agents/fal-image-edit/SKILL.md +32 -22
  104. package/templates/skills/extended/ai-agents/fal-upscale/SKILL.md +32 -22
  105. package/templates/skills/extended/ai-agents/fal-workflow/SKILL.md +32 -22
  106. package/templates/skills/extended/ai-agents/fp-ts-pragmatic/SKILL.md +33 -23
  107. package/templates/skills/extended/ai-agents/gemini-api-dev/SKILL.md +36 -21
  108. package/templates/skills/extended/ai-agents/gmail-automation/SKILL.md +175 -254
  109. package/templates/skills/extended/ai-agents/hosted-agents-v2-py/SKILL.md +36 -26
  110. package/templates/skills/extended/ai-agents/imagen/SKILL.md +33 -23
  111. package/templates/skills/extended/ai-agents/incident-response-smart-fix/SKILL.md +33 -21
  112. package/templates/skills/extended/ai-agents/internal-comms-anthropic/LICENSE.txt +202 -0
  113. package/templates/skills/extended/ai-agents/internal-comms-anthropic/SKILL.md +84 -0
  114. package/templates/skills/extended/ai-agents/internal-comms-anthropic/examples/3p-updates.md +47 -0
  115. package/templates/skills/extended/ai-agents/internal-comms-anthropic/examples/company-newsletter.md +65 -0
  116. package/templates/skills/extended/ai-agents/internal-comms-anthropic/examples/faq-answers.md +30 -0
  117. package/templates/skills/extended/ai-agents/internal-comms-anthropic/examples/general-comms.md +16 -0
  118. package/templates/skills/extended/ai-agents/javascript-mastery/SKILL.md +34 -22
  119. package/templates/skills/extended/ai-agents/kaizen/SKILL.md +34 -22
  120. package/templates/skills/extended/ai-agents/langchain-architecture/SKILL.md +34 -22
  121. package/templates/skills/extended/ai-agents/langfuse/SKILL.md +36 -22
  122. package/templates/skills/extended/ai-agents/langgraph/SKILL.md +36 -22
  123. package/templates/skills/extended/ai-agents/last30days/SKILL.md +36 -26
  124. package/templates/skills/extended/ai-agents/last30days/scripts/__pycache__/last30days.cpython-312.pyc +0 -0
  125. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/__init__.cpython-312.pyc +0 -0
  126. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/cache.cpython-312.pyc +0 -0
  127. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/dates.cpython-312.pyc +0 -0
  128. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/dedupe.cpython-312.pyc +0 -0
  129. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/env.cpython-312.pyc +0 -0
  130. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/http.cpython-312.pyc +0 -0
  131. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/models.cpython-312.pyc +0 -0
  132. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/normalize.cpython-312.pyc +0 -0
  133. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/openai_reddit.cpython-312.pyc +0 -0
  134. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/reddit_enrich.cpython-312.pyc +0 -0
  135. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/render.cpython-312.pyc +0 -0
  136. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/schema.cpython-312.pyc +0 -0
  137. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/score.cpython-312.pyc +0 -0
  138. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/ui.cpython-312.pyc +0 -0
  139. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/websearch.cpython-312.pyc +0 -0
  140. package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/xai_x.cpython-312.pyc +0 -0
  141. package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/__init__.cpython-312.pyc +0 -0
  142. package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/test_cache.cpython-312.pyc +0 -0
  143. package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/test_dates.cpython-312.pyc +0 -0
  144. package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/test_dedupe.cpython-312.pyc +0 -0
  145. package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/test_models.cpython-312.pyc +0 -0
  146. package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/test_normalize.cpython-312.pyc +0 -0
  147. package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/test_render.cpython-312.pyc +0 -0
  148. package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/test_score.cpython-312.pyc +0 -0
  149. package/templates/skills/extended/ai-agents/legal-advisor/SKILL.md +34 -27
  150. package/templates/skills/extended/ai-agents/llm-app-patterns/SKILL.md +35 -23
  151. package/templates/skills/extended/ai-agents/llm-application-dev-ai-assistant/SKILL.md +33 -21
  152. package/templates/skills/extended/ai-agents/llm-application-dev-langchain-agent/SKILL.md +33 -21
  153. package/templates/skills/extended/ai-agents/llm-application-dev-prompt-optimize/SKILL.md +33 -21
  154. package/templates/skills/extended/ai-agents/llm-evaluation/SKILL.md +34 -22
  155. package/templates/skills/extended/ai-agents/m365-agents-dotnet/SKILL.md +37 -24
  156. package/templates/skills/extended/ai-agents/m365-agents-py/SKILL.md +39 -30
  157. package/templates/skills/extended/ai-agents/m365-agents-ts/SKILL.md +37 -24
  158. package/templates/skills/extended/ai-agents/mailchimp-automation/SKILL.md +35 -22
  159. package/templates/skills/extended/ai-agents/memory-systems/SKILL.md +33 -23
  160. package/templates/skills/extended/ai-agents/mermaid-expert/SKILL.md +34 -26
  161. package/templates/skills/extended/ai-agents/multi-agent-brainstorming/SKILL.md +37 -26
  162. package/templates/skills/extended/ai-agents/nanobanana-ppt-skills/SKILL.md +32 -22
  163. package/templates/skills/extended/ai-agents/onboarding-cro/SKILL.md +36 -21
  164. package/templates/skills/extended/ai-agents/paid-ads/SKILL.md +36 -21
  165. package/templates/skills/extended/ai-agents/performance-testing-review-ai-review/SKILL.md +33 -21
  166. package/templates/skills/extended/ai-agents/plaid-fintech/SKILL.md +36 -22
  167. package/templates/skills/extended/ai-agents/prompt-caching/SKILL.md +36 -22
  168. package/templates/skills/extended/ai-agents/prompt-engineer/SKILL.md +29 -27
  169. package/templates/skills/extended/ai-agents/prompt-engineering/SKILL.md +36 -21
  170. package/templates/skills/extended/ai-agents/prompt-library/SKILL.md +34 -22
  171. package/templates/skills/extended/ai-agents/rag-engineer/SKILL.md +36 -22
  172. package/templates/skills/extended/ai-agents/rag-implementation/SKILL.md +160 -380
  173. package/templates/skills/extended/ai-agents/sales-automator/SKILL.md +38 -24
  174. package/templates/skills/extended/ai-agents/shodan-reconnaissance/SKILL.md +38 -25
  175. package/templates/skills/extended/ai-agents/skill-creator-ms/SKILL.md +669 -0
  176. package/templates/skills/extended/ai-agents/skill-developer/SKILL.md +34 -22
  177. package/templates/skills/extended/ai-agents/skill-rails-upgrade/SKILL.md +32 -22
  178. package/templates/skills/extended/ai-agents/subagent-driven-development/SKILL.md +66 -21
  179. package/templates/skills/extended/ai-agents/voice-agents/SKILL.md +36 -22
  180. package/templates/skills/extended/ai-agents/voice-ai-development/SKILL.md +36 -22
  181. package/templates/skills/extended/ai-agents/voice-ai-engine-development/SKILL.md +33 -21
  182. package/templates/skills/extended/ai-agents/voice-ai-engine-development/examples/__pycache__/complete_voice_engine.cpython-312.pyc +0 -0
  183. package/templates/skills/extended/ai-agents/voice-ai-engine-development/examples/__pycache__/gemini_agent_example.cpython-312.pyc +0 -0
  184. package/templates/skills/extended/ai-agents/voice-ai-engine-development/examples/__pycache__/interrupt_system_example.cpython-312.pyc +0 -0
  185. package/templates/skills/extended/ai-agents/voice-ai-engine-development/templates/__pycache__/base_worker_template.cpython-312.pyc +0 -0
  186. package/templates/skills/extended/ai-agents/voice-ai-engine-development/templates/__pycache__/multi_provider_factory_template.cpython-312.pyc +0 -0
  187. package/templates/skills/extended/ai-agents/youtube-summarizer/SKILL.md +26 -28
  188. package/templates/skills/extended/ai-agents/youtube-summarizer/scripts/__pycache__/extract-transcript.cpython-312.pyc +0 -0
  189. package/templates/skills/extended/architecture/SPDD/SKILL.md +26 -20
  190. package/templates/skills/extended/architecture/architect-review/SKILL.md +30 -27
  191. package/templates/skills/extended/architecture/architecture-patterns/SKILL.md +35 -22
  192. package/templates/skills/extended/architecture/binary-analysis-patterns/SKILL.md +30 -22
  193. package/templates/skills/extended/architecture/brainstorming/SKILL.md +211 -0
  194. package/templates/skills/extended/architecture/brainstorming/spec-document-reviewer-prompt.md +50 -0
  195. package/templates/skills/extended/architecture/brainstorming/visual-companion.md +276 -0
  196. package/templates/skills/extended/architecture/c4-code/SKILL.md +30 -28
  197. package/templates/skills/extended/architecture/c4-context/SKILL.md +32 -31
  198. package/templates/skills/extended/architecture/concise-planning/SKILL.md +32 -21
  199. package/templates/skills/extended/architecture/conductor-new-track/SKILL.md +35 -29
  200. package/templates/skills/extended/architecture/ddd-context-mapping/SKILL.md +34 -21
  201. package/templates/skills/extended/architecture/ddd-strategic-design/SKILL.md +34 -21
  202. package/templates/skills/extended/architecture/ddd-tactical-patterns/SKILL.md +34 -21
  203. package/templates/skills/extended/architecture/domain-driven-design/SKILL.md +34 -21
  204. package/templates/skills/extended/architecture/error-handling-patterns/SKILL.md +30 -22
  205. package/templates/skills/extended/architecture/go-concurrency-patterns/SKILL.md +30 -22
  206. package/templates/skills/extended/architecture/linkerd-patterns/SKILL.md +30 -22
  207. package/templates/skills/extended/architecture/memory-safety-patterns/SKILL.md +30 -22
  208. package/templates/skills/extended/architecture/modern-javascript-patterns/SKILL.md +30 -22
  209. package/templates/skills/extended/architecture/multi-agent-patterns/SKILL.md +28 -30
  210. package/templates/skills/extended/architecture/nx-workspace-patterns/SKILL.md +30 -22
  211. package/templates/skills/extended/architecture/on-call-handoff-patterns/SKILL.md +30 -22
  212. package/templates/skills/extended/architecture/plan-writing/SKILL.md +194 -0
  213. package/templates/skills/extended/architecture/planning-with-files/SKILL.md +30 -52
  214. package/templates/skills/extended/architecture/projection-patterns/SKILL.md +30 -22
  215. package/templates/skills/extended/architecture/rust-async-patterns/SKILL.md +30 -22
  216. package/templates/skills/extended/architecture/software-architecture/SKILL.md +32 -21
  217. package/templates/skills/extended/architecture/stride-analysis-patterns/SKILL.md +30 -22
  218. package/templates/skills/extended/architecture/team-composition-analysis/SKILL.md +30 -27
  219. package/templates/skills/extended/architecture/workflow-patterns/SKILL.md +30 -26
  220. package/templates/skills/extended/architecture/writing-plans/SKILL.md +32 -21
  221. package/templates/skills/extended/backend/anti-reversing-techniques/SKILL.md +30 -22
  222. package/templates/skills/extended/backend/api-fuzzing-bug-bounty/SKILL.md +34 -25
  223. package/templates/skills/extended/backend/async-python-patterns/SKILL.md +30 -22
  224. package/templates/skills/extended/backend/azure-ai-formrecognizer-java/SKILL.md +32 -22
  225. package/templates/skills/extended/backend/azure-communication-callingserver-java/SKILL.md +32 -22
  226. package/templates/skills/extended/backend/azure-cosmos-db-py/SKILL.md +43 -33
  227. package/templates/skills/extended/backend/azure-data-tables-java/SKILL.md +32 -22
  228. package/templates/skills/extended/backend/azure-mgmt-apicenter-dotnet/SKILL.md +32 -23
  229. package/templates/skills/extended/backend/azure-mgmt-apicenter-py/SKILL.md +32 -24
  230. package/templates/skills/extended/backend/azure-mgmt-apimanagement-dotnet/SKILL.md +36 -27
  231. package/templates/skills/extended/backend/azure-mgmt-apimanagement-py/SKILL.md +32 -24
  232. package/templates/skills/extended/backend/azure-mgmt-mongodbatlas-dotnet/SKILL.md +32 -22
  233. package/templates/skills/extended/backend/azure-postgres-ts/SKILL.md +32 -23
  234. package/templates/skills/extended/backend/azure-resource-manager-mysql-dotnet/SKILL.md +32 -23
  235. package/templates/skills/extended/backend/azure-resource-manager-postgresql-dotnet/SKILL.md +32 -23
  236. package/templates/skills/extended/backend/azure-resource-manager-redis-dotnet/SKILL.md +32 -23
  237. package/templates/skills/extended/backend/azure-resource-manager-sql-dotnet/SKILL.md +35 -26
  238. package/templates/skills/extended/backend/azure-speech-to-text-rest-py/SKILL.md +33 -25
  239. package/templates/skills/extended/backend/backend-architect/SKILL.md +30 -29
  240. package/templates/skills/extended/backend/backend-dev-guidelines/SKILL.md +32 -21
  241. package/templates/skills/extended/backend/backend-development-feature-development/SKILL.md +29 -21
  242. package/templates/skills/extended/backend/backend-security-coder/SKILL.md +30 -26
  243. package/templates/skills/extended/backend/broken-authentication/SKILL.md +34 -25
  244. package/templates/skills/extended/backend/bun-development/SKILL.md +30 -22
  245. package/templates/skills/extended/backend/cc-skill-backend-patterns/SKILL.md +33 -24
  246. package/templates/skills/extended/backend/cc-skill-clickhouse-io/SKILL.md +33 -24
  247. package/templates/skills/extended/backend/clerk-auth/SKILL.md +31 -21
  248. package/templates/skills/extended/backend/code-refactoring-context-restore/SKILL.md +29 -21
  249. package/templates/skills/extended/backend/conductor-manage/SKILL.md +29 -23
  250. package/templates/skills/extended/backend/context-management-context-restore/SKILL.md +29 -21
  251. package/templates/skills/extended/backend/copilot-sdk/SKILL.md +32 -21
  252. package/templates/skills/extended/backend/database-admin/SKILL.md +30 -29
  253. package/templates/skills/extended/backend/database-architect/SKILL.md +30 -30
  254. package/templates/skills/extended/backend/database-migration/SKILL.md +30 -22
  255. package/templates/skills/extended/backend/database-migrations-sql-migrations/SKILL.md +42 -41
  256. package/templates/skills/extended/backend/database-optimizer/SKILL.md +30 -29
  257. package/templates/skills/extended/backend/dbos-golang/SKILL.md +34 -28
  258. package/templates/skills/extended/backend/dbos-python/SKILL.md +34 -28
  259. package/templates/skills/extended/backend/dbos-typescript/SKILL.md +34 -28
  260. package/templates/skills/extended/backend/dbt-transformation-patterns/SKILL.md +30 -22
  261. package/templates/skills/extended/backend/django-pro/SKILL.md +30 -27
  262. package/templates/skills/extended/backend/dotnet-architect/SKILL.md +30 -28
  263. package/templates/skills/extended/backend/dotnet-backend/SKILL.md +28 -24
  264. package/templates/skills/extended/backend/dotnet-backend-patterns/SKILL.md +30 -22
  265. package/templates/skills/extended/backend/exa-search/SKILL.md +30 -22
  266. package/templates/skills/extended/backend/fal-platform/SKILL.md +28 -22
  267. package/templates/skills/extended/backend/fastapi-pro/SKILL.md +30 -27
  268. package/templates/skills/extended/backend/fastapi-router-py/SKILL.md +33 -22
  269. package/templates/skills/extended/backend/fastapi-templates/SKILL.md +30 -22
  270. package/templates/skills/extended/backend/file-organizer/SKILL.md +30 -22
  271. package/templates/skills/extended/backend/firebase/SKILL.md +32 -22
  272. package/templates/skills/extended/backend/form-cro/SKILL.md +32 -25
  273. package/templates/skills/extended/backend/graphql/SKILL.md +32 -22
  274. package/templates/skills/extended/backend/graphql-architect/SKILL.md +30 -27
  275. package/templates/skills/extended/backend/hubspot-integration/SKILL.md +32 -22
  276. package/templates/skills/extended/backend/incident-responder/SKILL.md +30 -29
  277. package/templates/skills/extended/backend/inngest/SKILL.md +32 -22
  278. package/templates/skills/extended/backend/laravel-expert/SKILL.md +33 -20
  279. package/templates/skills/extended/backend/microservices-patterns/SKILL.md +30 -22
  280. package/templates/skills/extended/backend/microsoft-azure-webjobs-extensions-authentication-events-dotnet/SKILL.md +32 -22
  281. package/templates/skills/extended/backend/moodle-external-api-development/SKILL.md +30 -22
  282. package/templates/skills/extended/backend/multi-platform-apps-multi-platform/SKILL.md +29 -21
  283. package/templates/skills/extended/backend/n8n-code-python/SKILL.md +38 -35
  284. package/templates/skills/extended/backend/neon-postgres/SKILL.md +32 -22
  285. package/templates/skills/extended/backend/nestjs-expert/SKILL.md +32 -23
  286. package/templates/skills/extended/backend/network-101/SKILL.md +34 -25
  287. package/templates/skills/extended/backend/nextjs-supabase-auth/SKILL.md +31 -21
  288. package/templates/skills/extended/backend/nodejs-backend-patterns/SKILL.md +30 -22
  289. package/templates/skills/extended/backend/nosql-expert/SKILL.md +29 -21
  290. package/templates/skills/extended/backend/openapi-spec-generation/SKILL.md +30 -22
  291. package/templates/skills/extended/backend/performance-testing-review-multi-agent-review/SKILL.md +29 -21
  292. package/templates/skills/extended/backend/podcast-generation/SKILL.md +35 -24
  293. package/templates/skills/extended/backend/postgres-best-practices/SKILL.md +33 -26
  294. package/templates/skills/extended/backend/postgresql/SKILL.md +30 -22
  295. package/templates/skills/extended/backend/prisma-expert/SKILL.md +32 -21
  296. package/templates/skills/extended/backend/pydantic-models-py/SKILL.md +33 -22
  297. package/templates/skills/extended/backend/python-development-python-scaffold/SKILL.md +29 -21
  298. package/templates/skills/extended/backend/python-packaging/SKILL.md +30 -22
  299. package/templates/skills/extended/backend/python-pro/SKILL.md +30 -27
  300. package/templates/skills/extended/backend/salesforce-development/SKILL.md +32 -22
  301. package/templates/skills/extended/backend/segment-cdp/SKILL.md +32 -22
  302. package/templates/skills/extended/backend/senior-architect/SKILL.md +32 -21
  303. package/templates/skills/extended/backend/senior-architect/scripts/__pycache__/architecture_diagram_generator.cpython-312.pyc +0 -0
  304. package/templates/skills/extended/backend/senior-architect/scripts/__pycache__/dependency_analyzer.cpython-312.pyc +0 -0
  305. package/templates/skills/extended/backend/senior-architect/scripts/__pycache__/project_architect.cpython-312.pyc +0 -0
  306. package/templates/skills/extended/backend/sharp-edges/SKILL.md +295 -67
  307. package/templates/skills/extended/backend/signup-flow-cro/SKILL.md +32 -21
  308. package/templates/skills/extended/backend/similarity-search-patterns/SKILL.md +30 -22
  309. package/templates/skills/extended/backend/sql-injection-testing/SKILL.md +34 -25
  310. package/templates/skills/extended/backend/sql-optimization-patterns/SKILL.md +30 -22
  311. package/templates/skills/extended/backend/sql-pro/SKILL.md +30 -27
  312. package/templates/skills/extended/backend/sqlmap-database-pentesting/SKILL.md +34 -25
  313. package/templates/skills/extended/backend/supabase-automation/SKILL.md +31 -22
  314. package/templates/skills/extended/backend/tavily-web/SKILL.md +30 -22
  315. package/templates/skills/extended/backend/telegram-mini-app/SKILL.md +32 -22
  316. package/templates/skills/extended/backend/terraform-specialist/SKILL.md +30 -29
  317. package/templates/skills/extended/backend/twilio-communications/SKILL.md +32 -22
  318. package/templates/skills/extended/backend/using-neon/SKILL.md +29 -23
  319. package/templates/skills/extended/backend/vector-database-engineer/SKILL.md +29 -21
  320. package/templates/skills/extended/backend/vector-index-tuning/SKILL.md +30 -22
  321. package/templates/skills/extended/backend/wireshark-analysis/SKILL.md +34 -25
  322. package/templates/skills/extended/blockchain/crypto-bd-agent/SKILL.md +34 -35
  323. package/templates/skills/extended/blockchain/nft-standards/SKILL.md +30 -22
  324. package/templates/skills/extended/blockchain/web3-testing/SKILL.md +30 -22
  325. package/templates/skills/extended/content/algorithmic-art/SKILL.md +29 -23
  326. package/templates/skills/extended/content/content-marketer/SKILL.md +27 -29
  327. package/templates/skills/extended/content/copy-editing/SKILL.md +27 -23
  328. package/templates/skills/extended/content/free-tool-strategy/SKILL.md +29 -22
  329. package/templates/skills/extended/content/marketing-ideas/SKILL.md +30 -22
  330. package/templates/skills/extended/content/marketing-psychology/SKILL.md +30 -22
  331. package/templates/skills/extended/content/popup-cro/SKILL.md +29 -22
  332. package/templates/skills/extended/content/postmortem-writing/SKILL.md +29 -25
  333. package/templates/skills/extended/content/programmatic-seo/SKILL.md +29 -28
  334. package/templates/skills/extended/content/seo-authority-builder/SKILL.md +31 -25
  335. package/templates/skills/extended/content/seo-cannibalization-detector/SKILL.md +27 -27
  336. package/templates/skills/extended/content/seo-content-auditor/SKILL.md +27 -27
  337. package/templates/skills/extended/content/seo-content-refresher/SKILL.md +27 -27
  338. package/templates/skills/extended/content/seo-content-writer/SKILL.md +27 -27
  339. package/templates/skills/extended/content/seo-keyword-strategist/SKILL.md +27 -27
  340. package/templates/skills/extended/content/seo-meta-optimizer/SKILL.md +27 -27
  341. package/templates/skills/extended/content/seo-snippet-hunter/SKILL.md +27 -27
  342. package/templates/skills/extended/content/seo-structure-architect/SKILL.md +27 -27
  343. package/templates/skills/extended/content/social-content/SKILL.md +29 -22
  344. package/templates/skills/extended/content/writing-skills/SKILL.md +29 -31
  345. package/templates/skills/extended/content/x-article-publisher-skill/SKILL.md +25 -23
  346. package/templates/skills/extended/data/analytics-tracking/SKILL.md +29 -27
  347. package/templates/skills/extended/data/blockrun/SKILL.md +27 -24
  348. package/templates/skills/extended/data/data-engineer/SKILL.md +27 -28
  349. package/templates/skills/extended/data/data-engineering-data-driven-feature/SKILL.md +26 -22
  350. package/templates/skills/extended/data/data-engineering-data-pipeline/SKILL.md +26 -22
  351. package/templates/skills/extended/data/data-scientist/SKILL.md +27 -28
  352. package/templates/skills/extended/data/data-storytelling/SKILL.md +27 -23
  353. package/templates/skills/extended/data/datadog-automation/SKILL.md +28 -23
  354. package/templates/skills/extended/data/firecrawl-scraper/SKILL.md +27 -23
  355. package/templates/skills/extended/data/gdpr-data-handling/SKILL.md +27 -23
  356. package/templates/skills/extended/data/grafana-dashboards/SKILL.md +27 -23
  357. package/templates/skills/extended/data/pdf/SKILL.md +30 -24
  358. package/templates/skills/extended/data/pdf/scripts/__pycache__/check_bounding_boxes.cpython-312.pyc +0 -0
  359. package/templates/skills/extended/data/pdf/scripts/__pycache__/check_bounding_boxes_test.cpython-312.pyc +0 -0
  360. package/templates/skills/extended/data/pdf/scripts/__pycache__/check_fillable_fields.cpython-312.pyc +0 -0
  361. package/templates/skills/extended/data/pdf/scripts/__pycache__/convert_pdf_to_images.cpython-312.pyc +0 -0
  362. package/templates/skills/extended/data/pdf/scripts/__pycache__/create_validation_image.cpython-312.pyc +0 -0
  363. package/templates/skills/extended/data/pdf/scripts/__pycache__/extract_form_field_info.cpython-312.pyc +0 -0
  364. package/templates/skills/extended/data/pdf/scripts/__pycache__/fill_fillable_fields.cpython-312.pyc +0 -0
  365. package/templates/skills/extended/data/pdf/scripts/__pycache__/fill_pdf_form_with_annotations.cpython-312.pyc +0 -0
  366. package/templates/skills/extended/data/pdf-official/SKILL.md +30 -24
  367. package/templates/skills/extended/data/pdf-official/scripts/__pycache__/check_bounding_boxes.cpython-312.pyc +0 -0
  368. package/templates/skills/extended/data/pdf-official/scripts/__pycache__/check_bounding_boxes_test.cpython-312.pyc +0 -0
  369. package/templates/skills/extended/data/pdf-official/scripts/__pycache__/check_fillable_fields.cpython-312.pyc +0 -0
  370. package/templates/skills/extended/data/pdf-official/scripts/__pycache__/convert_pdf_to_images.cpython-312.pyc +0 -0
  371. package/templates/skills/extended/data/pdf-official/scripts/__pycache__/create_validation_image.cpython-312.pyc +0 -0
  372. package/templates/skills/extended/data/pdf-official/scripts/__pycache__/extract_form_field_info.cpython-312.pyc +0 -0
  373. package/templates/skills/extended/data/pdf-official/scripts/__pycache__/fill_fillable_fields.cpython-312.pyc +0 -0
  374. package/templates/skills/extended/data/pdf-official/scripts/__pycache__/fill_pdf_form_with_annotations.cpython-312.pyc +0 -0
  375. package/templates/skills/extended/data/schema-markup/SKILL.md +29 -28
  376. package/templates/skills/extended/data/xlsx/SKILL.md +30 -24
  377. package/templates/skills/extended/data/xlsx/__pycache__/recalc.cpython-312.pyc +0 -0
  378. package/templates/skills/extended/data/xlsx-official/SKILL.md +30 -24
  379. package/templates/skills/extended/data/xlsx-official/__pycache__/recalc.cpython-312.pyc +0 -0
  380. package/templates/skills/extended/debugging/application-performance-performance-optimization/SKILL.md +33 -21
  381. package/templates/skills/extended/debugging/bazel-build-optimization/SKILL.md +34 -22
  382. package/templates/skills/extended/debugging/code-refactoring-refactor-clean/SKILL.md +34 -22
  383. package/templates/skills/extended/debugging/codebase-cleanup-refactor-clean/SKILL.md +34 -22
  384. package/templates/skills/extended/debugging/codebase-cleanup-tech-debt/SKILL.md +33 -21
  385. package/templates/skills/extended/debugging/context-optimization/SKILL.md +32 -30
  386. package/templates/skills/extended/debugging/cost-optimization/SKILL.md +34 -22
  387. package/templates/skills/extended/debugging/database-migrations-migration-observability/SKILL.md +35 -26
  388. package/templates/skills/extended/debugging/debugger/SKILL.md +37 -24
  389. package/templates/skills/extended/debugging/debugging-strategies/SKILL.md +34 -22
  390. package/templates/skills/extended/debugging/debugging-toolkit-smart-debug/SKILL.md +33 -21
  391. package/templates/skills/extended/debugging/devops-troubleshooter/SKILL.md +34 -29
  392. package/templates/skills/extended/debugging/distributed-debugging-debug-trace/SKILL.md +34 -22
  393. package/templates/skills/extended/debugging/distributed-tracing/SKILL.md +34 -22
  394. package/templates/skills/extended/debugging/error-debugging-error-analysis/SKILL.md +33 -21
  395. package/templates/skills/extended/debugging/error-debugging-error-trace/SKILL.md +34 -22
  396. package/templates/skills/extended/debugging/error-debugging-multi-agent-review/SKILL.md +33 -21
  397. package/templates/skills/extended/debugging/error-diagnostics-error-analysis/SKILL.md +33 -21
  398. package/templates/skills/extended/debugging/error-diagnostics-error-trace/SKILL.md +33 -21
  399. package/templates/skills/extended/debugging/error-diagnostics-smart-debug/SKILL.md +33 -21
  400. package/templates/skills/extended/debugging/fp-ts-errors/SKILL.md +33 -23
  401. package/templates/skills/extended/debugging/framework-migration-code-migrate/SKILL.md +33 -21
  402. package/templates/skills/extended/debugging/framework-migration-deps-upgrade/SKILL.md +33 -21
  403. package/templates/skills/extended/debugging/framework-migration-legacy-modernize/SKILL.md +33 -21
  404. package/templates/skills/extended/debugging/legacy-modernizer/SKILL.md +34 -27
  405. package/templates/skills/extended/debugging/observability-engineer/SKILL.md +34 -27
  406. package/templates/skills/extended/debugging/observability-monitoring-monitor-setup/SKILL.md +33 -21
  407. package/templates/skills/extended/debugging/observability-monitoring-slo-implement/SKILL.md +34 -22
  408. package/templates/skills/extended/debugging/page-cro/SKILL.md +36 -27
  409. package/templates/skills/extended/debugging/paywall-upgrade-cro/SKILL.md +36 -21
  410. package/templates/skills/extended/debugging/performance-engineer/SKILL.md +34 -29
  411. package/templates/skills/extended/debugging/python-performance-optimization/SKILL.md +34 -22
  412. package/templates/skills/extended/debugging/service-mesh-observability/SKILL.md +34 -22
  413. package/templates/skills/extended/debugging/slo-implementation/SKILL.md +34 -22
  414. package/templates/skills/extended/debugging/spark-optimization/SKILL.md +34 -22
  415. package/templates/skills/extended/debugging/systematic-debugging/SKILL.md +347 -0
  416. package/templates/skills/extended/debugging/systematic-debugging/condition-based-waiting.md +115 -0
  417. package/templates/skills/extended/debugging/systematic-debugging/defense-in-depth.md +122 -0
  418. package/templates/skills/extended/debugging/systematic-debugging/root-cause-tracing.md +169 -0
  419. package/templates/skills/extended/debugging/web-performance-optimization/SKILL.md +33 -21
  420. package/templates/skills/extended/devops/agent-orchestration-multi-agent-optimize/SKILL.md +29 -21
  421. package/templates/skills/extended/devops/airflow-dag-patterns/SKILL.md +30 -22
  422. package/templates/skills/extended/devops/aws-penetration-testing/SKILL.md +34 -25
  423. package/templates/skills/extended/devops/aws-skills/SKILL.md +28 -22
  424. package/templates/skills/extended/devops/azd-deployment/SKILL.md +35 -24
  425. package/templates/skills/extended/devops/azure-ai-anomalydetector-java/SKILL.md +32 -22
  426. package/templates/skills/extended/devops/azure-ai-contentsafety-java/SKILL.md +32 -22
  427. package/templates/skills/extended/devops/azure-ai-contentsafety-py/SKILL.md +32 -24
  428. package/templates/skills/extended/devops/azure-ai-contentunderstanding-py/SKILL.md +32 -24
  429. package/templates/skills/extended/devops/azure-ai-document-intelligence-dotnet/SKILL.md +32 -23
  430. package/templates/skills/extended/devops/azure-ai-document-intelligence-ts/SKILL.md +32 -22
  431. package/templates/skills/extended/devops/azure-ai-ml-py/SKILL.md +32 -24
  432. package/templates/skills/extended/devops/azure-ai-projects-dotnet/SKILL.md +32 -23
  433. package/templates/skills/extended/devops/azure-ai-projects-java/SKILL.md +32 -24
  434. package/templates/skills/extended/devops/azure-ai-textanalytics-py/SKILL.md +32 -24
  435. package/templates/skills/extended/devops/azure-ai-transcription-py/SKILL.md +32 -24
  436. package/templates/skills/extended/devops/azure-ai-translation-document-py/SKILL.md +32 -24
  437. package/templates/skills/extended/devops/azure-ai-translation-text-py/SKILL.md +32 -24
  438. package/templates/skills/extended/devops/azure-ai-translation-ts/SKILL.md +32 -22
  439. package/templates/skills/extended/devops/azure-ai-voicelive-dotnet/SKILL.md +32 -23
  440. package/templates/skills/extended/devops/azure-ai-voicelive-java/SKILL.md +32 -24
  441. package/templates/skills/extended/devops/azure-ai-voicelive-ts/SKILL.md +32 -23
  442. package/templates/skills/extended/devops/azure-appconfiguration-java/SKILL.md +32 -24
  443. package/templates/skills/extended/devops/azure-appconfiguration-py/SKILL.md +32 -24
  444. package/templates/skills/extended/devops/azure-appconfiguration-ts/SKILL.md +32 -22
  445. package/templates/skills/extended/devops/azure-communication-chat-java/SKILL.md +32 -22
  446. package/templates/skills/extended/devops/azure-communication-common-java/SKILL.md +32 -22
  447. package/templates/skills/extended/devops/azure-communication-sms-java/SKILL.md +32 -22
  448. package/templates/skills/extended/devops/azure-compute-batch-java/SKILL.md +32 -23
  449. package/templates/skills/extended/devops/azure-containerregistry-py/SKILL.md +32 -24
  450. package/templates/skills/extended/devops/azure-cosmos-java/SKILL.md +32 -24
  451. package/templates/skills/extended/devops/azure-cosmos-py/SKILL.md +35 -27
  452. package/templates/skills/extended/devops/azure-cosmos-rust/SKILL.md +32 -24
  453. package/templates/skills/extended/devops/azure-cosmos-ts/SKILL.md +32 -23
  454. package/templates/skills/extended/devops/azure-data-tables-py/SKILL.md +32 -24
  455. package/templates/skills/extended/devops/azure-eventgrid-dotnet/SKILL.md +32 -23
  456. package/templates/skills/extended/devops/azure-eventgrid-java/SKILL.md +32 -22
  457. package/templates/skills/extended/devops/azure-eventgrid-py/SKILL.md +32 -24
  458. package/templates/skills/extended/devops/azure-eventhub-dotnet/SKILL.md +32 -23
  459. package/templates/skills/extended/devops/azure-eventhub-java/SKILL.md +32 -22
  460. package/templates/skills/extended/devops/azure-eventhub-py/SKILL.md +35 -27
  461. package/templates/skills/extended/devops/azure-eventhub-rust/SKILL.md +32 -24
  462. package/templates/skills/extended/devops/azure-eventhub-ts/SKILL.md +32 -22
  463. package/templates/skills/extended/devops/azure-functions/SKILL.md +32 -22
  464. package/templates/skills/extended/devops/azure-identity-dotnet/SKILL.md +32 -23
  465. package/templates/skills/extended/devops/azure-identity-java/SKILL.md +32 -22
  466. package/templates/skills/extended/devops/azure-identity-py/SKILL.md +32 -24
  467. package/templates/skills/extended/devops/azure-identity-rust/SKILL.md +32 -24
  468. package/templates/skills/extended/devops/azure-identity-ts/SKILL.md +32 -22
  469. package/templates/skills/extended/devops/azure-keyvault-certificates-rust/SKILL.md +32 -24
  470. package/templates/skills/extended/devops/azure-keyvault-keys-rust/SKILL.md +32 -24
  471. package/templates/skills/extended/devops/azure-keyvault-keys-ts/SKILL.md +32 -22
  472. package/templates/skills/extended/devops/azure-keyvault-py/SKILL.md +32 -24
  473. package/templates/skills/extended/devops/azure-keyvault-secrets-rust/SKILL.md +32 -24
  474. package/templates/skills/extended/devops/azure-keyvault-secrets-ts/SKILL.md +32 -22
  475. package/templates/skills/extended/devops/azure-maps-search-dotnet/SKILL.md +32 -23
  476. package/templates/skills/extended/devops/azure-messaging-webpubsub-java/SKILL.md +32 -22
  477. package/templates/skills/extended/devops/azure-messaging-webpubsubservice-py/SKILL.md +32 -24
  478. package/templates/skills/extended/devops/azure-mgmt-applicationinsights-dotnet/SKILL.md +32 -23
  479. package/templates/skills/extended/devops/azure-mgmt-arizeaiobservabilityeval-dotnet/SKILL.md +32 -25
  480. package/templates/skills/extended/devops/azure-mgmt-botservice-dotnet/SKILL.md +32 -23
  481. package/templates/skills/extended/devops/azure-mgmt-botservice-py/SKILL.md +32 -23
  482. package/templates/skills/extended/devops/azure-mgmt-fabric-dotnet/SKILL.md +32 -23
  483. package/templates/skills/extended/devops/azure-mgmt-fabric-py/SKILL.md +32 -23
  484. package/templates/skills/extended/devops/azure-mgmt-weightsandbiases-dotnet/SKILL.md +32 -23
  485. package/templates/skills/extended/devops/azure-microsoft-playwright-testing-ts/SKILL.md +32 -22
  486. package/templates/skills/extended/devops/azure-monitor-ingestion-java/SKILL.md +33 -25
  487. package/templates/skills/extended/devops/azure-monitor-ingestion-py/SKILL.md +32 -24
  488. package/templates/skills/extended/devops/azure-monitor-opentelemetry-exporter-java/SKILL.md +32 -25
  489. package/templates/skills/extended/devops/azure-monitor-opentelemetry-exporter-py/SKILL.md +30 -25
  490. package/templates/skills/extended/devops/azure-monitor-opentelemetry-py/SKILL.md +32 -24
  491. package/templates/skills/extended/devops/azure-monitor-opentelemetry-ts/SKILL.md +32 -22
  492. package/templates/skills/extended/devops/azure-monitor-query-java/SKILL.md +32 -25
  493. package/templates/skills/extended/devops/azure-monitor-query-py/SKILL.md +32 -24
  494. package/templates/skills/extended/devops/azure-resource-manager-cosmosdb-dotnet/SKILL.md +35 -26
  495. package/templates/skills/extended/devops/azure-resource-manager-durabletask-dotnet/SKILL.md +32 -23
  496. package/templates/skills/extended/devops/azure-resource-manager-playwright-dotnet/SKILL.md +32 -23
  497. package/templates/skills/extended/devops/azure-search-documents-dotnet/SKILL.md +36 -27
  498. package/templates/skills/extended/devops/azure-search-documents-py/SKILL.md +36 -28
  499. package/templates/skills/extended/devops/azure-security-keyvault-keys-dotnet/SKILL.md +32 -23
  500. package/templates/skills/extended/devops/azure-security-keyvault-keys-java/SKILL.md +32 -22
  501. package/templates/skills/extended/devops/azure-security-keyvault-secrets-java/SKILL.md +32 -22
  502. package/templates/skills/extended/devops/azure-servicebus-dotnet/SKILL.md +32 -23
  503. package/templates/skills/extended/devops/azure-servicebus-py/SKILL.md +35 -27
  504. package/templates/skills/extended/devops/azure-servicebus-ts/SKILL.md +34 -24
  505. package/templates/skills/extended/devops/azure-storage-blob-java/SKILL.md +32 -22
  506. package/templates/skills/extended/devops/azure-storage-blob-py/SKILL.md +32 -24
  507. package/templates/skills/extended/devops/azure-storage-blob-rust/SKILL.md +32 -24
  508. package/templates/skills/extended/devops/azure-storage-blob-ts/SKILL.md +32 -23
  509. package/templates/skills/extended/devops/azure-storage-file-datalake-py/SKILL.md +32 -24
  510. package/templates/skills/extended/devops/azure-storage-file-share-py/SKILL.md +32 -23
  511. package/templates/skills/extended/devops/azure-storage-file-share-ts/SKILL.md +32 -23
  512. package/templates/skills/extended/devops/azure-storage-queue-py/SKILL.md +32 -24
  513. package/templates/skills/extended/devops/azure-storage-queue-ts/SKILL.md +32 -23
  514. package/templates/skills/extended/devops/azure-web-pubsub-ts/SKILL.md +32 -22
  515. package/templates/skills/extended/devops/bash-defensive-patterns/SKILL.md +30 -22
  516. package/templates/skills/extended/devops/bash-pro/SKILL.md +34 -24
  517. package/templates/skills/extended/devops/busybox-on-windows/SKILL.md +32 -22
  518. package/templates/skills/extended/devops/c4-container/SKILL.md +31 -29
  519. package/templates/skills/extended/devops/claude-win11-speckit-update-skill/SKILL.md +28 -22
  520. package/templates/skills/extended/devops/cloud-architect/SKILL.md +30 -29
  521. package/templates/skills/extended/devops/cloud-penetration-testing/SKILL.md +34 -25
  522. package/templates/skills/extended/devops/context-window-management/SKILL.md +32 -22
  523. package/templates/skills/extended/devops/database-cloud-optimization-cost-optimize/SKILL.md +30 -22
  524. package/templates/skills/extended/devops/deployment-engineer/SKILL.md +30 -29
  525. package/templates/skills/extended/devops/deployment-pipeline-design/SKILL.md +30 -22
  526. package/templates/skills/extended/devops/deployment-validation-config-validate/SKILL.md +29 -21
  527. package/templates/skills/extended/devops/expo-deployment/SKILL.md +28 -22
  528. package/templates/skills/extended/devops/file-uploads/SKILL.md +32 -22
  529. package/templates/skills/extended/devops/full-stack-orchestration-full-stack-feature/SKILL.md +29 -21
  530. package/templates/skills/extended/devops/gcp-cloud-run/SKILL.md +32 -22
  531. package/templates/skills/extended/devops/helm-chart-scaffolding/SKILL.md +30 -22
  532. package/templates/skills/extended/devops/hugging-face-cli/SKILL.md +31 -25
  533. package/templates/skills/extended/devops/hugging-face-jobs/SKILL.md +29 -24
  534. package/templates/skills/extended/devops/hybrid-cloud-architect/SKILL.md +30 -29
  535. package/templates/skills/extended/devops/hybrid-cloud-networking/SKILL.md +30 -22
  536. package/templates/skills/extended/devops/k8s-manifest-generator/SKILL.md +30 -22
  537. package/templates/skills/extended/devops/k8s-security-policies/SKILL.md +30 -22
  538. package/templates/skills/extended/devops/kubernetes-architect/SKILL.md +30 -30
  539. package/templates/skills/extended/devops/linux-shell-scripting/SKILL.md +34 -25
  540. package/templates/skills/extended/devops/loki-mode/SKILL.md +32 -21
  541. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/0.cpython-312.pyc +0 -0
  542. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/1.cpython-312.pyc +0 -0
  543. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/10.cpython-312.pyc +0 -0
  544. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/100.cpython-312.pyc +0 -0
  545. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/101.cpython-312.pyc +0 -0
  546. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/102.cpython-312.pyc +0 -0
  547. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/103.cpython-312.pyc +0 -0
  548. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/104.cpython-312.pyc +0 -0
  549. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/105.cpython-312.pyc +0 -0
  550. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/106.cpython-312.pyc +0 -0
  551. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/107.cpython-312.pyc +0 -0
  552. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/108.cpython-312.pyc +0 -0
  553. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/109.cpython-312.pyc +0 -0
  554. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/11.cpython-312.pyc +0 -0
  555. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/110.cpython-312.pyc +0 -0
  556. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/111.cpython-312.pyc +0 -0
  557. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/112.cpython-312.pyc +0 -0
  558. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/113.cpython-312.pyc +0 -0
  559. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/114.cpython-312.pyc +0 -0
  560. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/115.cpython-312.pyc +0 -0
  561. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/116.cpython-312.pyc +0 -0
  562. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/117.cpython-312.pyc +0 -0
  563. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/118.cpython-312.pyc +0 -0
  564. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/119.cpython-312.pyc +0 -0
  565. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/12.cpython-312.pyc +0 -0
  566. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/120.cpython-312.pyc +0 -0
  567. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/121.cpython-312.pyc +0 -0
  568. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/122.cpython-312.pyc +0 -0
  569. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/123.cpython-312.pyc +0 -0
  570. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/124.cpython-312.pyc +0 -0
  571. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/125.cpython-312.pyc +0 -0
  572. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/126.cpython-312.pyc +0 -0
  573. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/127.cpython-312.pyc +0 -0
  574. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/128.cpython-312.pyc +0 -0
  575. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/129.cpython-312.pyc +0 -0
  576. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/13.cpython-312.pyc +0 -0
  577. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/130.cpython-312.pyc +0 -0
  578. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/131.cpython-312.pyc +0 -0
  579. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/132.cpython-312.pyc +0 -0
  580. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/133.cpython-312.pyc +0 -0
  581. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/134.cpython-312.pyc +0 -0
  582. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/135.cpython-312.pyc +0 -0
  583. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/136.cpython-312.pyc +0 -0
  584. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/137.cpython-312.pyc +0 -0
  585. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/138.cpython-312.pyc +0 -0
  586. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/139.cpython-312.pyc +0 -0
  587. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/14.cpython-312.pyc +0 -0
  588. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/140.cpython-312.pyc +0 -0
  589. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/141.cpython-312.pyc +0 -0
  590. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/142.cpython-312.pyc +0 -0
  591. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/143.cpython-312.pyc +0 -0
  592. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/144.cpython-312.pyc +0 -0
  593. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/145.cpython-312.pyc +0 -0
  594. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/146.cpython-312.pyc +0 -0
  595. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/147.cpython-312.pyc +0 -0
  596. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/148.cpython-312.pyc +0 -0
  597. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/149.cpython-312.pyc +0 -0
  598. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/15.cpython-312.pyc +0 -0
  599. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/150.cpython-312.pyc +0 -0
  600. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/151.cpython-312.pyc +0 -0
  601. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/152.cpython-312.pyc +0 -0
  602. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/153.cpython-312.pyc +0 -0
  603. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/154.cpython-312.pyc +0 -0
  604. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/155.cpython-312.pyc +0 -0
  605. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/156.cpython-312.pyc +0 -0
  606. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/157.cpython-312.pyc +0 -0
  607. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/158.cpython-312.pyc +0 -0
  608. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/159.cpython-312.pyc +0 -0
  609. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/16.cpython-312.pyc +0 -0
  610. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/160.cpython-312.pyc +0 -0
  611. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/161.cpython-312.pyc +0 -0
  612. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/162.cpython-312.pyc +0 -0
  613. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/163.cpython-312.pyc +0 -0
  614. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/17.cpython-312.pyc +0 -0
  615. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/18.cpython-312.pyc +0 -0
  616. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/19.cpython-312.pyc +0 -0
  617. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/2.cpython-312.pyc +0 -0
  618. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/20.cpython-312.pyc +0 -0
  619. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/21.cpython-312.pyc +0 -0
  620. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/22.cpython-312.pyc +0 -0
  621. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/23.cpython-312.pyc +0 -0
  622. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/24.cpython-312.pyc +0 -0
  623. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/25.cpython-312.pyc +0 -0
  624. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/26.cpython-312.pyc +0 -0
  625. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/27.cpython-312.pyc +0 -0
  626. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/28.cpython-312.pyc +0 -0
  627. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/29.cpython-312.pyc +0 -0
  628. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/3.cpython-312.pyc +0 -0
  629. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/30.cpython-312.pyc +0 -0
  630. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/31.cpython-312.pyc +0 -0
  631. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/32.cpython-312.pyc +0 -0
  632. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/33.cpython-312.pyc +0 -0
  633. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/34.cpython-312.pyc +0 -0
  634. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/35.cpython-312.pyc +0 -0
  635. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/36.cpython-312.pyc +0 -0
  636. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/37.cpython-312.pyc +0 -0
  637. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/38.cpython-312.pyc +0 -0
  638. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/39.cpython-312.pyc +0 -0
  639. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/4.cpython-312.pyc +0 -0
  640. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/40.cpython-312.pyc +0 -0
  641. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/41.cpython-312.pyc +0 -0
  642. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/42.cpython-312.pyc +0 -0
  643. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/43.cpython-312.pyc +0 -0
  644. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/44.cpython-312.pyc +0 -0
  645. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/45.cpython-312.pyc +0 -0
  646. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/46.cpython-312.pyc +0 -0
  647. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/47.cpython-312.pyc +0 -0
  648. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/48.cpython-312.pyc +0 -0
  649. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/49.cpython-312.pyc +0 -0
  650. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/5.cpython-312.pyc +0 -0
  651. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/50.cpython-312.pyc +0 -0
  652. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/51.cpython-312.pyc +0 -0
  653. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/52.cpython-312.pyc +0 -0
  654. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/53.cpython-312.pyc +0 -0
  655. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/54.cpython-312.pyc +0 -0
  656. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/55.cpython-312.pyc +0 -0
  657. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/56.cpython-312.pyc +0 -0
  658. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/57.cpython-312.pyc +0 -0
  659. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/58.cpython-312.pyc +0 -0
  660. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/59.cpython-312.pyc +0 -0
  661. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/6.cpython-312.pyc +0 -0
  662. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/60.cpython-312.pyc +0 -0
  663. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/61.cpython-312.pyc +0 -0
  664. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/62.cpython-312.pyc +0 -0
  665. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/63.cpython-312.pyc +0 -0
  666. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/64.cpython-312.pyc +0 -0
  667. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/65.cpython-312.pyc +0 -0
  668. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/66.cpython-312.pyc +0 -0
  669. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/67.cpython-312.pyc +0 -0
  670. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/68.cpython-312.pyc +0 -0
  671. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/69.cpython-312.pyc +0 -0
  672. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/7.cpython-312.pyc +0 -0
  673. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/70.cpython-312.pyc +0 -0
  674. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/71.cpython-312.pyc +0 -0
  675. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/72.cpython-312.pyc +0 -0
  676. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/73.cpython-312.pyc +0 -0
  677. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/74.cpython-312.pyc +0 -0
  678. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/75.cpython-312.pyc +0 -0
  679. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/76.cpython-312.pyc +0 -0
  680. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/77.cpython-312.pyc +0 -0
  681. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/78.cpython-312.pyc +0 -0
  682. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/79.cpython-312.pyc +0 -0
  683. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/8.cpython-312.pyc +0 -0
  684. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/80.cpython-312.pyc +0 -0
  685. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/81.cpython-312.pyc +0 -0
  686. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/82.cpython-312.pyc +0 -0
  687. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/83.cpython-312.pyc +0 -0
  688. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/84.cpython-312.pyc +0 -0
  689. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/85.cpython-312.pyc +0 -0
  690. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/86.cpython-312.pyc +0 -0
  691. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/87.cpython-312.pyc +0 -0
  692. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/88.cpython-312.pyc +0 -0
  693. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/89.cpython-312.pyc +0 -0
  694. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/9.cpython-312.pyc +0 -0
  695. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/90.cpython-312.pyc +0 -0
  696. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/91.cpython-312.pyc +0 -0
  697. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/92.cpython-312.pyc +0 -0
  698. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/93.cpython-312.pyc +0 -0
  699. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/94.cpython-312.pyc +0 -0
  700. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/95.cpython-312.pyc +0 -0
  701. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/96.cpython-312.pyc +0 -0
  702. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/97.cpython-312.pyc +0 -0
  703. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/98.cpython-312.pyc +0 -0
  704. package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/99.cpython-312.pyc +0 -0
  705. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/0.cpython-312.pyc +0 -0
  706. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/1.cpython-312.pyc +0 -0
  707. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/10.cpython-312.pyc +0 -0
  708. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/100.cpython-312.pyc +0 -0
  709. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/101.cpython-312.pyc +0 -0
  710. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/102.cpython-312.pyc +0 -0
  711. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/103.cpython-312.pyc +0 -0
  712. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/104.cpython-312.pyc +0 -0
  713. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/105.cpython-312.pyc +0 -0
  714. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/106.cpython-312.pyc +0 -0
  715. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/107.cpython-312.pyc +0 -0
  716. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/108.cpython-312.pyc +0 -0
  717. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/109.cpython-312.pyc +0 -0
  718. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/11.cpython-312.pyc +0 -0
  719. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/110.cpython-312.pyc +0 -0
  720. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/111.cpython-312.pyc +0 -0
  721. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/112.cpython-312.pyc +0 -0
  722. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/113.cpython-312.pyc +0 -0
  723. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/114.cpython-312.pyc +0 -0
  724. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/115.cpython-312.pyc +0 -0
  725. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/116.cpython-312.pyc +0 -0
  726. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/117.cpython-312.pyc +0 -0
  727. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/118.cpython-312.pyc +0 -0
  728. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/119.cpython-312.pyc +0 -0
  729. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/12.cpython-312.pyc +0 -0
  730. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/120.cpython-312.pyc +0 -0
  731. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/121.cpython-312.pyc +0 -0
  732. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/122.cpython-312.pyc +0 -0
  733. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/123.cpython-312.pyc +0 -0
  734. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/124.cpython-312.pyc +0 -0
  735. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/125.cpython-312.pyc +0 -0
  736. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/126.cpython-312.pyc +0 -0
  737. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/127.cpython-312.pyc +0 -0
  738. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/128.cpython-312.pyc +0 -0
  739. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/129.cpython-312.pyc +0 -0
  740. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/13.cpython-312.pyc +0 -0
  741. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/130.cpython-312.pyc +0 -0
  742. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/131.cpython-312.pyc +0 -0
  743. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/132.cpython-312.pyc +0 -0
  744. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/133.cpython-312.pyc +0 -0
  745. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/134.cpython-312.pyc +0 -0
  746. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/135.cpython-312.pyc +0 -0
  747. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/136.cpython-312.pyc +0 -0
  748. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/137.cpython-312.pyc +0 -0
  749. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/138.cpython-312.pyc +0 -0
  750. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/139.cpython-312.pyc +0 -0
  751. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/14.cpython-312.pyc +0 -0
  752. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/140.cpython-312.pyc +0 -0
  753. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/141.cpython-312.pyc +0 -0
  754. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/142.cpython-312.pyc +0 -0
  755. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/143.cpython-312.pyc +0 -0
  756. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/144.cpython-312.pyc +0 -0
  757. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/145.cpython-312.pyc +0 -0
  758. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/146.cpython-312.pyc +0 -0
  759. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/147.cpython-312.pyc +0 -0
  760. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/148.cpython-312.pyc +0 -0
  761. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/149.cpython-312.pyc +0 -0
  762. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/15.cpython-312.pyc +0 -0
  763. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/150.cpython-312.pyc +0 -0
  764. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/151.cpython-312.pyc +0 -0
  765. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/152.cpython-312.pyc +0 -0
  766. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/153.cpython-312.pyc +0 -0
  767. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/154.cpython-312.pyc +0 -0
  768. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/155.cpython-312.pyc +0 -0
  769. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/156.cpython-312.pyc +0 -0
  770. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/157.cpython-312.pyc +0 -0
  771. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/158.cpython-312.pyc +0 -0
  772. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/159.cpython-312.pyc +0 -0
  773. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/16.cpython-312.pyc +0 -0
  774. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/160.cpython-312.pyc +0 -0
  775. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/161.cpython-312.pyc +0 -0
  776. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/162.cpython-312.pyc +0 -0
  777. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/163.cpython-312.pyc +0 -0
  778. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/17.cpython-312.pyc +0 -0
  779. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/18.cpython-312.pyc +0 -0
  780. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/19.cpython-312.pyc +0 -0
  781. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/2.cpython-312.pyc +0 -0
  782. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/20.cpython-312.pyc +0 -0
  783. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/21.cpython-312.pyc +0 -0
  784. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/22.cpython-312.pyc +0 -0
  785. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/23.cpython-312.pyc +0 -0
  786. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/24.cpython-312.pyc +0 -0
  787. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/25.cpython-312.pyc +0 -0
  788. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/26.cpython-312.pyc +0 -0
  789. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/27.cpython-312.pyc +0 -0
  790. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/28.cpython-312.pyc +0 -0
  791. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/29.cpython-312.pyc +0 -0
  792. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/3.cpython-312.pyc +0 -0
  793. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/30.cpython-312.pyc +0 -0
  794. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/31.cpython-312.pyc +0 -0
  795. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/32.cpython-312.pyc +0 -0
  796. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/33.cpython-312.pyc +0 -0
  797. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/34.cpython-312.pyc +0 -0
  798. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/35.cpython-312.pyc +0 -0
  799. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/36.cpython-312.pyc +0 -0
  800. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/37.cpython-312.pyc +0 -0
  801. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/38.cpython-312.pyc +0 -0
  802. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/39.cpython-312.pyc +0 -0
  803. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/4.cpython-312.pyc +0 -0
  804. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/40.cpython-312.pyc +0 -0
  805. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/41.cpython-312.pyc +0 -0
  806. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/42.cpython-312.pyc +0 -0
  807. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/43.cpython-312.pyc +0 -0
  808. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/44.cpython-312.pyc +0 -0
  809. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/45.cpython-312.pyc +0 -0
  810. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/46.cpython-312.pyc +0 -0
  811. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/47.cpython-312.pyc +0 -0
  812. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/48.cpython-312.pyc +0 -0
  813. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/49.cpython-312.pyc +0 -0
  814. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/5.cpython-312.pyc +0 -0
  815. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/50.cpython-312.pyc +0 -0
  816. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/51.cpython-312.pyc +0 -0
  817. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/52.cpython-312.pyc +0 -0
  818. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/53.cpython-312.pyc +0 -0
  819. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/54.cpython-312.pyc +0 -0
  820. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/55.cpython-312.pyc +0 -0
  821. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/56.cpython-312.pyc +0 -0
  822. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/57.cpython-312.pyc +0 -0
  823. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/58.cpython-312.pyc +0 -0
  824. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/59.cpython-312.pyc +0 -0
  825. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/6.cpython-312.pyc +0 -0
  826. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/60.cpython-312.pyc +0 -0
  827. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/61.cpython-312.pyc +0 -0
  828. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/62.cpython-312.pyc +0 -0
  829. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/63.cpython-312.pyc +0 -0
  830. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/64.cpython-312.pyc +0 -0
  831. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/65.cpython-312.pyc +0 -0
  832. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/66.cpython-312.pyc +0 -0
  833. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/67.cpython-312.pyc +0 -0
  834. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/68.cpython-312.pyc +0 -0
  835. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/69.cpython-312.pyc +0 -0
  836. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/7.cpython-312.pyc +0 -0
  837. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/70.cpython-312.pyc +0 -0
  838. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/71.cpython-312.pyc +0 -0
  839. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/72.cpython-312.pyc +0 -0
  840. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/73.cpython-312.pyc +0 -0
  841. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/74.cpython-312.pyc +0 -0
  842. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/75.cpython-312.pyc +0 -0
  843. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/76.cpython-312.pyc +0 -0
  844. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/77.cpython-312.pyc +0 -0
  845. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/78.cpython-312.pyc +0 -0
  846. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/79.cpython-312.pyc +0 -0
  847. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/8.cpython-312.pyc +0 -0
  848. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/80.cpython-312.pyc +0 -0
  849. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/81.cpython-312.pyc +0 -0
  850. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/82.cpython-312.pyc +0 -0
  851. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/83.cpython-312.pyc +0 -0
  852. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/84.cpython-312.pyc +0 -0
  853. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/85.cpython-312.pyc +0 -0
  854. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/86.cpython-312.pyc +0 -0
  855. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/87.cpython-312.pyc +0 -0
  856. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/88.cpython-312.pyc +0 -0
  857. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/89.cpython-312.pyc +0 -0
  858. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/9.cpython-312.pyc +0 -0
  859. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/90.cpython-312.pyc +0 -0
  860. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/91.cpython-312.pyc +0 -0
  861. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/92.cpython-312.pyc +0 -0
  862. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/93.cpython-312.pyc +0 -0
  863. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/94.cpython-312.pyc +0 -0
  864. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/95.cpython-312.pyc +0 -0
  865. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/96.cpython-312.pyc +0 -0
  866. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/97.cpython-312.pyc +0 -0
  867. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/98.cpython-312.pyc +0 -0
  868. package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/99.cpython-312.pyc +0 -0
  869. package/templates/skills/extended/devops/loki-mode/examples/todo-app-generated/backend/package.json +0 -0
  870. package/templates/skills/extended/devops/loki-mode/examples/todo-app-generated/backend/src/routes/todos.ts +0 -0
  871. package/templates/skills/extended/devops/loki-mode/examples/todo-app-generated/frontend/package-lock.json +175 -91
  872. package/templates/skills/extended/devops/machine-learning-ops-ml-pipeline/SKILL.md +29 -21
  873. package/templates/skills/extended/devops/ml-pipeline-workflow/SKILL.md +30 -22
  874. package/templates/skills/extended/devops/multi-cloud-architecture/SKILL.md +30 -22
  875. package/templates/skills/extended/devops/network-engineer/SKILL.md +30 -29
  876. package/templates/skills/extended/devops/posix-shell-pro/SKILL.md +30 -26
  877. package/templates/skills/extended/devops/saga-orchestration/SKILL.md +38 -22
  878. package/templates/skills/extended/devops/secrets-management/SKILL.md +30 -22
  879. package/templates/skills/extended/devops/service-mesh-expert/SKILL.md +29 -21
  880. package/templates/skills/extended/devops/shellcheck-configuration/SKILL.md +30 -22
  881. package/templates/skills/extended/devops/tdd-orchestrator/SKILL.md +30 -28
  882. package/templates/skills/extended/devops/terraform-module-library/SKILL.md +30 -22
  883. package/templates/skills/extended/devops/terraform-skill/SKILL.md +47 -45
  884. package/templates/skills/extended/devops/upstash-qstash/SKILL.md +32 -22
  885. package/templates/skills/extended/devops/vercel-automation/SKILL.md +31 -22
  886. package/templates/skills/extended/devops/vercel-deploy-claimable/SKILL.md +26 -20
  887. package/templates/skills/extended/devops/vercel-deployment/SKILL.md +28 -22
  888. package/templates/skills/extended/devops/windows-privilege-escalation/SKILL.md +34 -25
  889. package/templates/skills/extended/documentation/api-documentation-generator/SKILL.md +29 -21
  890. package/templates/skills/extended/documentation/api-documenter/SKILL.md +30 -27
  891. package/templates/skills/extended/documentation/azure-search-documents-ts/SKILL.md +32 -22
  892. package/templates/skills/extended/documentation/claude-code-guide/SKILL.md +33 -22
  893. package/templates/skills/extended/documentation/claude-scientific-skills/SKILL.md +28 -22
  894. package/templates/skills/extended/documentation/code-documentation-code-explain/SKILL.md +30 -22
  895. package/templates/skills/extended/documentation/code-documentation-doc-generate/SKILL.md +30 -22
  896. package/templates/skills/extended/documentation/context7-auto-research/SKILL.md +30 -22
  897. package/templates/skills/extended/documentation/culture-index/SKILL.md +26 -20
  898. package/templates/skills/extended/documentation/defi-protocol-templates/SKILL.md +30 -22
  899. package/templates/skills/extended/documentation/docs-architect/SKILL.md +30 -27
  900. package/templates/skills/extended/documentation/documentation-generation-doc-generate/SKILL.md +30 -23
  901. package/templates/skills/extended/documentation/docusign-automation/SKILL.md +31 -22
  902. package/templates/skills/extended/documentation/docx/SKILL.md +33 -23
  903. package/templates/skills/extended/documentation/docx/ooxml/scripts/__pycache__/pack.cpython-312.pyc +0 -0
  904. package/templates/skills/extended/documentation/docx/ooxml/scripts/__pycache__/unpack.cpython-312.pyc +0 -0
  905. package/templates/skills/extended/documentation/docx/ooxml/scripts/__pycache__/validate.cpython-312.pyc +0 -0
  906. package/templates/skills/extended/documentation/docx/ooxml/scripts/validation/__pycache__/__init__.cpython-312.pyc +0 -0
  907. package/templates/skills/extended/documentation/docx/ooxml/scripts/validation/__pycache__/base.cpython-312.pyc +0 -0
  908. package/templates/skills/extended/documentation/docx/ooxml/scripts/validation/__pycache__/docx.cpython-312.pyc +0 -0
  909. package/templates/skills/extended/documentation/docx/ooxml/scripts/validation/__pycache__/pptx.cpython-312.pyc +0 -0
  910. package/templates/skills/extended/documentation/docx/ooxml/scripts/validation/__pycache__/redlining.cpython-312.pyc +0 -0
  911. package/templates/skills/extended/documentation/docx/scripts/__pycache__/__init__.cpython-312.pyc +0 -0
  912. package/templates/skills/extended/documentation/docx/scripts/__pycache__/document.cpython-312.pyc +0 -0
  913. package/templates/skills/extended/documentation/docx/scripts/__pycache__/utilities.cpython-312.pyc +0 -0
  914. package/templates/skills/extended/documentation/docx-official/LICENSE.txt +30 -0
  915. package/templates/skills/extended/documentation/docx-official/SKILL.md +248 -0
  916. package/templates/skills/extended/documentation/docx-official/docx-js.md +350 -0
  917. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  918. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  919. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  920. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  921. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  922. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  923. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  924. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  925. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  926. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  927. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  928. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  929. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  930. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  931. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  932. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  933. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  934. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  935. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  936. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  937. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  938. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  939. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  940. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  941. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  942. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  943. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  944. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  945. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  946. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  947. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  948. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/mce/mc.xsd +75 -0
  949. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  950. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  951. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  952. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  953. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  954. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  955. package/templates/skills/extended/documentation/docx-official/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  956. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/__pycache__/pack.cpython-312.pyc +0 -0
  957. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/__pycache__/unpack.cpython-312.pyc +0 -0
  958. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/__pycache__/validate.cpython-312.pyc +0 -0
  959. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/pack.py +159 -0
  960. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/unpack.py +29 -0
  961. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/validate.py +69 -0
  962. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/validation/__init__.py +15 -0
  963. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/validation/__pycache__/__init__.cpython-312.pyc +0 -0
  964. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/validation/__pycache__/base.cpython-312.pyc +0 -0
  965. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/validation/__pycache__/docx.cpython-312.pyc +0 -0
  966. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/validation/__pycache__/pptx.cpython-312.pyc +0 -0
  967. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/validation/__pycache__/redlining.cpython-312.pyc +0 -0
  968. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/validation/base.py +951 -0
  969. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/validation/docx.py +274 -0
  970. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/validation/pptx.py +315 -0
  971. package/templates/skills/extended/documentation/docx-official/ooxml/scripts/validation/redlining.py +279 -0
  972. package/templates/skills/extended/documentation/docx-official/ooxml.md +610 -0
  973. package/templates/skills/extended/documentation/docx-official/scripts/__init__.py +1 -0
  974. package/templates/skills/extended/documentation/docx-official/scripts/__pycache__/__init__.cpython-312.pyc +0 -0
  975. package/templates/skills/extended/documentation/docx-official/scripts/__pycache__/document.cpython-312.pyc +0 -0
  976. package/templates/skills/extended/documentation/docx-official/scripts/__pycache__/utilities.cpython-312.pyc +0 -0
  977. package/templates/skills/extended/documentation/docx-official/scripts/document.py +1276 -0
  978. package/templates/skills/extended/documentation/docx-official/scripts/templates/comments.xml +3 -0
  979. package/templates/skills/extended/documentation/docx-official/scripts/templates/commentsExtended.xml +3 -0
  980. package/templates/skills/extended/documentation/docx-official/scripts/templates/commentsExtensible.xml +3 -0
  981. package/templates/skills/extended/documentation/docx-official/scripts/templates/commentsIds.xml +3 -0
  982. package/templates/skills/extended/documentation/docx-official/scripts/templates/people.xml +3 -0
  983. package/templates/skills/extended/documentation/docx-official/scripts/utilities.py +374 -0
  984. package/templates/skills/extended/documentation/employment-contract-templates/SKILL.md +30 -22
  985. package/templates/skills/extended/documentation/incident-runbook-templates/SKILL.md +30 -22
  986. package/templates/skills/extended/documentation/malware-analyst/SKILL.md +30 -28
  987. package/templates/skills/extended/documentation/notebooklm/SKILL.md +30 -22
  988. package/templates/skills/extended/documentation/notebooklm/scripts/auth_manager.py +0 -0
  989. package/templates/skills/extended/documentation/notebooklm/scripts/browser_session.py +0 -0
  990. package/templates/skills/extended/documentation/obsidian-clipper-template-creator/SKILL.md +39 -25
  991. package/templates/skills/extended/documentation/product-manager-toolkit/SKILL.md +32 -21
  992. package/templates/skills/extended/documentation/product-manager-toolkit/scripts/__pycache__/customer_interview_analyzer.cpython-312.pyc +0 -0
  993. package/templates/skills/extended/documentation/product-manager-toolkit/scripts/__pycache__/rice_prioritizer.cpython-312.pyc +0 -0
  994. package/templates/skills/extended/documentation/readme/SKILL.md +29 -23
  995. package/templates/skills/extended/documentation/reference-builder/SKILL.md +30 -27
  996. package/templates/skills/extended/documentation/research-engineer/SKILL.md +26 -20
  997. package/templates/skills/extended/documentation/screenshots/SKILL.md +28 -22
  998. package/templates/skills/extended/documentation/search-specialist/SKILL.md +30 -27
  999. package/templates/skills/extended/documentation/skill-seekers/SKILL.md +28 -22
  1000. package/templates/skills/extended/documentation/startup-business-analyst-business-case/SKILL.md +33 -23
  1001. package/templates/skills/extended/documentation/tutorial-engineer/SKILL.md +414 -151
  1002. package/templates/skills/extended/documentation/wiki-architect/SKILL.md +32 -21
  1003. package/templates/skills/extended/documentation/wiki-changelog/SKILL.md +32 -21
  1004. package/templates/skills/extended/documentation/wiki-onboarding/SKILL.md +32 -21
  1005. package/templates/skills/extended/documentation/wiki-page-writer/SKILL.md +32 -21
  1006. package/templates/skills/extended/documentation/wiki-qa/SKILL.md +32 -21
  1007. package/templates/skills/extended/documentation/wiki-researcher/SKILL.md +32 -21
  1008. package/templates/skills/extended/frontend/active-directory-attacks/SKILL.md +433 -0
  1009. package/templates/skills/extended/frontend/active-directory-attacks/references/advanced-attacks.md +382 -0
  1010. package/templates/skills/extended/frontend/algolia-search/SKILL.md +31 -21
  1011. package/templates/skills/extended/frontend/angular/SKILL.md +28 -26
  1012. package/templates/skills/extended/frontend/angular-best-practices/SKILL.md +30 -21
  1013. package/templates/skills/extended/frontend/angular-migration/SKILL.md +30 -22
  1014. package/templates/skills/extended/frontend/angular-state-management/SKILL.md +28 -22
  1015. package/templates/skills/extended/frontend/angular-ui-patterns/SKILL.md +30 -21
  1016. package/templates/skills/extended/frontend/avalonia-layout-zafiro/SKILL.md +32 -22
  1017. package/templates/skills/extended/frontend/avalonia-viewmodels-zafiro/SKILL.md +32 -21
  1018. package/templates/skills/extended/frontend/avalonia-zafiro-development/SKILL.md +32 -21
  1019. package/templates/skills/extended/frontend/beautiful-prose/SKILL.md +203 -31
  1020. package/templates/skills/extended/frontend/brand-guidelines-anthropic/LICENSE.txt +202 -0
  1021. package/templates/skills/extended/frontend/brand-guidelines-anthropic/SKILL.md +124 -0
  1022. package/templates/skills/extended/frontend/brand-guidelines-community/LICENSE.txt +202 -0
  1023. package/templates/skills/extended/frontend/brand-guidelines-community/SKILL.md +124 -0
  1024. package/templates/skills/extended/frontend/browser-extension-builder/SKILL.md +32 -22
  1025. package/templates/skills/extended/frontend/burp-suite-testing/SKILL.md +430 -0
  1026. package/templates/skills/extended/frontend/c4-component/SKILL.md +34 -32
  1027. package/templates/skills/extended/frontend/canvas-design/SKILL.md +32 -22
  1028. package/templates/skills/extended/frontend/cc-skill-coding-standards/SKILL.md +33 -24
  1029. package/templates/skills/extended/frontend/cc-skill-frontend-patterns/SKILL.md +33 -24
  1030. package/templates/skills/extended/frontend/cc-skill-project-guidelines-example/SKILL.md +30 -24
  1031. package/templates/skills/extended/frontend/claude-ally-health/SKILL.md +28 -22
  1032. package/templates/skills/extended/frontend/claude-d3js-skill/SKILL.md +31 -23
  1033. package/templates/skills/extended/frontend/core-components/SKILL.md +32 -21
  1034. package/templates/skills/extended/frontend/design-orchestration/SKILL.md +32 -25
  1035. package/templates/skills/extended/frontend/discord-bot-architect/SKILL.md +328 -0
  1036. package/templates/skills/extended/frontend/environment-setup-guide/SKILL.md +29 -21
  1037. package/templates/skills/extended/frontend/event-sourcing-architect/SKILL.md +112 -0
  1038. package/templates/skills/extended/frontend/event-store-design/SKILL.md +498 -0
  1039. package/templates/skills/extended/frontend/event-store-design/resources/implementation-playbook.md +25 -0
  1040. package/templates/skills/extended/frontend/fp-ts-react/SKILL.md +29 -23
  1041. package/templates/skills/extended/frontend/frontend-dev-guidelines/SKILL.md +33 -21
  1042. package/templates/skills/extended/frontend/frontend-developer/SKILL.md +30 -27
  1043. package/templates/skills/extended/frontend/frontend-mobile-development-component-scaffold/SKILL.md +29 -21
  1044. package/templates/skills/extended/frontend/frontend-slides/SKILL.md +174 -703
  1045. package/templates/skills/extended/frontend/frontend-ui-dark-ts/SKILL.md +35 -24
  1046. package/templates/skills/extended/frontend/html-injection-testing/SKILL.md +548 -0
  1047. package/templates/skills/extended/frontend/hybrid-search-implementation/SKILL.md +81 -0
  1048. package/templates/skills/extended/frontend/hybrid-search-implementation/resources/implementation-playbook.md +567 -0
  1049. package/templates/skills/extended/frontend/interactive-portfolio/SKILL.md +32 -22
  1050. package/templates/skills/extended/frontend/istio-traffic-management/SKILL.md +386 -0
  1051. package/templates/skills/extended/frontend/javascript-typescript-typescript-scaffold/SKILL.md +29 -21
  1052. package/templates/skills/extended/frontend/kpi-dashboard-design/SKILL.md +30 -22
  1053. package/templates/skills/extended/frontend/linux-privilege-escalation/SKILL.md +554 -0
  1054. package/templates/skills/extended/frontend/makepad-skills/SKILL.md +28 -22
  1055. package/templates/skills/extended/frontend/mcp-builder-ms/SKILL.md +356 -0
  1056. package/templates/skills/extended/frontend/memory-forensics/SKILL.md +540 -0
  1057. package/templates/skills/extended/frontend/metasploit-framework/SKILL.md +528 -0
  1058. package/templates/skills/extended/frontend/micro-saas-launcher/SKILL.md +32 -22
  1059. package/templates/skills/extended/frontend/ml-engineer/SKILL.md +212 -0
  1060. package/templates/skills/extended/frontend/mlops-engineer/SKILL.md +263 -0
  1061. package/templates/skills/extended/frontend/monorepo-architect/SKILL.md +110 -0
  1062. package/templates/skills/extended/frontend/monorepo-management/SKILL.md +84 -0
  1063. package/templates/skills/extended/frontend/monorepo-management/resources/implementation-playbook.md +621 -0
  1064. package/templates/skills/extended/frontend/nextjs-app-router-patterns/SKILL.md +30 -22
  1065. package/templates/skills/extended/frontend/personal-tool-builder/SKILL.md +32 -22
  1066. package/templates/skills/extended/frontend/pptx/SKILL.md +33 -23
  1067. package/templates/skills/extended/frontend/pptx/ooxml/scripts/__pycache__/pack.cpython-312.pyc +0 -0
  1068. package/templates/skills/extended/frontend/pptx/ooxml/scripts/__pycache__/unpack.cpython-312.pyc +0 -0
  1069. package/templates/skills/extended/frontend/pptx/ooxml/scripts/__pycache__/validate.cpython-312.pyc +0 -0
  1070. package/templates/skills/extended/frontend/pptx/ooxml/scripts/validation/__pycache__/__init__.cpython-312.pyc +0 -0
  1071. package/templates/skills/extended/frontend/pptx/ooxml/scripts/validation/__pycache__/base.cpython-312.pyc +0 -0
  1072. package/templates/skills/extended/frontend/pptx/ooxml/scripts/validation/__pycache__/docx.cpython-312.pyc +0 -0
  1073. package/templates/skills/extended/frontend/pptx/ooxml/scripts/validation/__pycache__/pptx.cpython-312.pyc +0 -0
  1074. package/templates/skills/extended/frontend/pptx/ooxml/scripts/validation/__pycache__/redlining.cpython-312.pyc +0 -0
  1075. package/templates/skills/extended/frontend/pptx/scripts/__pycache__/inventory.cpython-312.pyc +0 -0
  1076. package/templates/skills/extended/frontend/pptx/scripts/__pycache__/rearrange.cpython-312.pyc +0 -0
  1077. package/templates/skills/extended/frontend/pptx/scripts/__pycache__/replace.cpython-312.pyc +0 -0
  1078. package/templates/skills/extended/frontend/pptx/scripts/__pycache__/thumbnail.cpython-312.pyc +0 -0
  1079. package/templates/skills/extended/frontend/pptx-official/LICENSE.txt +30 -0
  1080. package/templates/skills/extended/frontend/pptx-official/SKILL.md +535 -0
  1081. package/templates/skills/extended/frontend/pptx-official/html2pptx.md +625 -0
  1082. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  1083. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  1084. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  1085. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  1086. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  1087. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  1088. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  1089. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  1090. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  1091. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  1092. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  1093. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  1094. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  1095. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  1096. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  1097. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  1098. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  1099. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  1100. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  1101. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  1102. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  1103. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  1104. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  1105. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  1106. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  1107. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  1108. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  1109. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  1110. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  1111. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  1112. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  1113. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/mce/mc.xsd +75 -0
  1114. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  1115. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  1116. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  1117. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  1118. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  1119. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  1120. package/templates/skills/extended/frontend/pptx-official/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  1121. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/__pycache__/pack.cpython-312.pyc +0 -0
  1122. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/__pycache__/unpack.cpython-312.pyc +0 -0
  1123. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/__pycache__/validate.cpython-312.pyc +0 -0
  1124. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/pack.py +159 -0
  1125. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/unpack.py +29 -0
  1126. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/validate.py +69 -0
  1127. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/validation/__init__.py +15 -0
  1128. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/validation/__pycache__/__init__.cpython-312.pyc +0 -0
  1129. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/validation/__pycache__/base.cpython-312.pyc +0 -0
  1130. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/validation/__pycache__/docx.cpython-312.pyc +0 -0
  1131. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/validation/__pycache__/pptx.cpython-312.pyc +0 -0
  1132. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/validation/__pycache__/redlining.cpython-312.pyc +0 -0
  1133. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/validation/base.py +951 -0
  1134. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/validation/docx.py +274 -0
  1135. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/validation/pptx.py +315 -0
  1136. package/templates/skills/extended/frontend/pptx-official/ooxml/scripts/validation/redlining.py +279 -0
  1137. package/templates/skills/extended/frontend/pptx-official/ooxml.md +427 -0
  1138. package/templates/skills/extended/frontend/pptx-official/scripts/__pycache__/inventory.cpython-312.pyc +0 -0
  1139. package/templates/skills/extended/frontend/pptx-official/scripts/__pycache__/rearrange.cpython-312.pyc +0 -0
  1140. package/templates/skills/extended/frontend/pptx-official/scripts/__pycache__/replace.cpython-312.pyc +0 -0
  1141. package/templates/skills/extended/frontend/pptx-official/scripts/__pycache__/thumbnail.cpython-312.pyc +0 -0
  1142. package/templates/skills/extended/frontend/pptx-official/scripts/html2pptx.js +979 -0
  1143. package/templates/skills/extended/frontend/pptx-official/scripts/inventory.py +1020 -0
  1144. package/templates/skills/extended/frontend/pptx-official/scripts/rearrange.py +231 -0
  1145. package/templates/skills/extended/frontend/pptx-official/scripts/replace.py +385 -0
  1146. package/templates/skills/extended/frontend/pptx-official/scripts/thumbnail.py +450 -0
  1147. package/templates/skills/extended/frontend/quant-analyst/SKILL.md +97 -0
  1148. package/templates/skills/extended/frontend/radix-ui-design-system/SKILL.md +28 -22
  1149. package/templates/skills/extended/frontend/react-best-practices/SKILL.md +33 -22
  1150. package/templates/skills/extended/frontend/react-flow-architect/SKILL.md +38 -20
  1151. package/templates/skills/extended/frontend/react-flow-node-ts/SKILL.md +35 -24
  1152. package/templates/skills/extended/frontend/react-modernization/SKILL.md +30 -22
  1153. package/templates/skills/extended/frontend/react-state-management/SKILL.md +30 -22
  1154. package/templates/skills/extended/frontend/react-ui-patterns/SKILL.md +32 -21
  1155. package/templates/skills/extended/frontend/risk-metrics-calculation/SKILL.md +82 -0
  1156. package/templates/skills/extended/frontend/risk-metrics-calculation/resources/implementation-playbook.md +554 -0
  1157. package/templates/skills/extended/frontend/security-bluebook-builder/SKILL.md +92 -0
  1158. package/templates/skills/extended/frontend/senior-fullstack/SKILL.md +32 -21
  1159. package/templates/skills/extended/frontend/senior-fullstack/scripts/__pycache__/code_quality_analyzer.cpython-312.pyc +0 -0
  1160. package/templates/skills/extended/frontend/senior-fullstack/scripts/__pycache__/fullstack_scaffolder.cpython-312.pyc +0 -0
  1161. package/templates/skills/extended/frontend/senior-fullstack/scripts/__pycache__/project_scaffolder.cpython-312.pyc +0 -0
  1162. package/templates/skills/extended/frontend/shopify-apps/SKILL.md +32 -22
  1163. package/templates/skills/extended/frontend/skill-creator/LICENSE.txt +202 -0
  1164. package/templates/skills/extended/frontend/skill-creator/README.md +270 -0
  1165. package/templates/skills/extended/frontend/skill-creator/SKILL.md +636 -0
  1166. package/templates/skills/extended/frontend/skill-creator/references/output-patterns.md +82 -0
  1167. package/templates/skills/extended/frontend/skill-creator/references/workflows.md +28 -0
  1168. package/templates/skills/extended/frontend/skill-creator/scripts/__pycache__/init_skill.cpython-312.pyc +0 -0
  1169. package/templates/skills/extended/frontend/skill-creator/scripts/__pycache__/package_skill.cpython-312.pyc +0 -0
  1170. package/templates/skills/extended/frontend/skill-creator/scripts/__pycache__/quick_validate.cpython-312.pyc +0 -0
  1171. package/templates/skills/extended/frontend/skill-creator/scripts/init_skill.py +303 -0
  1172. package/templates/skills/extended/frontend/skill-creator/scripts/package_skill.py +110 -0
  1173. package/templates/skills/extended/frontend/skill-creator/scripts/quick_validate.py +95 -0
  1174. package/templates/skills/extended/frontend/stitch-ui-design/SKILL.md +32 -23
  1175. package/templates/skills/extended/frontend/tailwind-design-system/SKILL.md +30 -22
  1176. package/templates/skills/extended/frontend/telegram-bot-builder/SKILL.md +305 -0
  1177. package/templates/skills/extended/frontend/theme-factory/SKILL.md +32 -22
  1178. package/templates/skills/extended/frontend/tool-design/SKILL.md +31 -25
  1179. package/templates/skills/extended/frontend/trigger-dev/SKILL.md +32 -22
  1180. package/templates/skills/extended/frontend/turborepo-caching/SKILL.md +30 -22
  1181. package/templates/skills/extended/frontend/typescript-advanced-types/SKILL.md +30 -22
  1182. package/templates/skills/extended/frontend/ui-skills/SKILL.md +28 -22
  1183. package/templates/skills/extended/frontend/ui-ux-designer/SKILL.md +30 -27
  1184. package/templates/skills/extended/frontend/ui-ux-pro-max/.claude-plugin/marketplace.json +35 -0
  1185. package/templates/skills/extended/frontend/ui-ux-pro-max/.claude-plugin/plugin.json +11 -0
  1186. package/templates/skills/extended/frontend/ui-ux-pro-max/CLAUDE.md +98 -0
  1187. package/templates/skills/extended/frontend/ui-ux-pro-max/LICENSE +21 -0
  1188. package/templates/skills/extended/frontend/ui-ux-pro-max/README.md +498 -0
  1189. package/templates/skills/extended/frontend/ui-ux-pro-max/SKILL.md +34 -56
  1190. package/templates/skills/extended/frontend/ui-ux-pro-max/cat-feeding-app/index.html +237 -0
  1191. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/README.md +63 -0
  1192. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/__pycache__/_sync_all.cpython-312.pyc +0 -0
  1193. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/_sync_all.py +414 -0
  1194. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/app-interface.csv +31 -0
  1195. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/charts.csv +26 -0
  1196. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/colors.csv +162 -0
  1197. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/design.csv +1776 -0
  1198. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/icons.csv +105 -0
  1199. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/landing.csv +31 -0
  1200. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/products.csv +162 -0
  1201. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/react-performance.csv +45 -0
  1202. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/stacks/astro.csv +54 -0
  1203. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/stacks/flutter.csv +53 -0
  1204. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/stacks/html-tailwind.csv +56 -0
  1205. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/stacks/jetpack-compose.csv +53 -0
  1206. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/stacks/nextjs.csv +53 -0
  1207. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/stacks/nuxt-ui.csv +51 -0
  1208. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/stacks/nuxtjs.csv +59 -0
  1209. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/stacks/react-native.csv +52 -0
  1210. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/stacks/react.csv +54 -0
  1211. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/stacks/shadcn.csv +61 -0
  1212. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/stacks/svelte.csv +54 -0
  1213. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/stacks/swiftui.csv +51 -0
  1214. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/stacks/vue.csv +50 -0
  1215. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/styles.csv +85 -0
  1216. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/typography.csv +74 -0
  1217. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/ui-reasoning.csv +162 -0
  1218. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/data/ux-guidelines.csv +100 -0
  1219. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/scripts/__pycache__/core.cpython-312.pyc +0 -0
  1220. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/scripts/__pycache__/design_system.cpython-312.pyc +0 -0
  1221. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/scripts/__pycache__/search.cpython-312.pyc +0 -0
  1222. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/scripts/core.py +241 -0
  1223. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/scripts/design_system.py +1067 -0
  1224. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/scripts/search.py +114 -0
  1225. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md +297 -0
  1226. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/base/skill-content.md +353 -0
  1227. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/platforms/agent.json +21 -0
  1228. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/platforms/claude.json +21 -0
  1229. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json +21 -0
  1230. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/platforms/codex.json +21 -0
  1231. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/platforms/continue.json +21 -0
  1232. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json +18 -0
  1233. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json +18 -0
  1234. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/platforms/droid.json +21 -0
  1235. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json +21 -0
  1236. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json +18 -0
  1237. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json +21 -0
  1238. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json +21 -0
  1239. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json +18 -0
  1240. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/platforms/trae.json +21 -0
  1241. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json +18 -0
  1242. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/bun.lock +77 -0
  1243. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/package-lock.json +370 -0
  1244. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/package.json +48 -0
  1245. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/src/commands/init.ts +207 -0
  1246. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/src/commands/update.ts +36 -0
  1247. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/src/commands/versions.ts +42 -0
  1248. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/src/index.ts +63 -0
  1249. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/src/types/index.ts +63 -0
  1250. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/src/utils/detect.ts +105 -0
  1251. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/src/utils/extract.ts +149 -0
  1252. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/src/utils/github.ts +104 -0
  1253. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/src/utils/logger.ts +11 -0
  1254. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/src/utils/template.ts +224 -0
  1255. package/templates/skills/extended/frontend/ui-ux-pro-max/cli/tsconfig.json +17 -0
  1256. package/templates/skills/extended/frontend/ui-ux-pro-max/docs//344/270/211/344/270/252 data-scripts-templates /347/232/204/345/214/272/345/210/253.md" +30 -0
  1257. package/templates/skills/extended/frontend/ui-ux-pro-max/preview/xiaomaomi-app.html +411 -0
  1258. package/templates/skills/extended/frontend/ui-ux-pro-max/screenshots/website.png +0 -0
  1259. package/templates/skills/extended/frontend/ui-ux-pro-max/scripts/__pycache__/core.cpython-312.pyc +0 -0
  1260. package/templates/skills/extended/frontend/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-312.pyc +0 -0
  1261. package/templates/skills/extended/frontend/ui-ux-pro-max/scripts/__pycache__/search.cpython-312.pyc +0 -0
  1262. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/__pycache__/_sync_all.cpython-312.pyc +0 -0
  1263. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py +414 -0
  1264. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/app-interface.csv +31 -0
  1265. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/charts.csv +26 -0
  1266. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/colors.csv +162 -0
  1267. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/design.csv +1776 -0
  1268. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/draft.csv +1779 -0
  1269. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/google-fonts.csv +1924 -0
  1270. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/icons.csv +106 -0
  1271. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/landing.csv +35 -0
  1272. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/products.csv +162 -0
  1273. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/react-performance.csv +45 -0
  1274. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  1275. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/styles.csv +85 -0
  1276. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/typography.csv +74 -0
  1277. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/ui-reasoning.csv +162 -0
  1278. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  1279. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/scripts/__pycache__/core.cpython-312.pyc +0 -0
  1280. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-312.pyc +0 -0
  1281. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/scripts/__pycache__/search.cpython-312.pyc +0 -0
  1282. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py +247 -0
  1283. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py +1067 -0
  1284. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/scripts/search.py +114 -0
  1285. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md +297 -0
  1286. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md +358 -0
  1287. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json +21 -0
  1288. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json +21 -0
  1289. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json +21 -0
  1290. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json +21 -0
  1291. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json +21 -0
  1292. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json +18 -0
  1293. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json +18 -0
  1294. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json +21 -0
  1295. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json +21 -0
  1296. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json +18 -0
  1297. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json +21 -0
  1298. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json +21 -0
  1299. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json +18 -0
  1300. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json +21 -0
  1301. package/templates/skills/extended/frontend/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json +18 -0
  1302. package/templates/skills/extended/frontend/ui-visual-validator/SKILL.md +30 -28
  1303. package/templates/skills/extended/frontend/using-superpowers/SKILL.md +139 -0
  1304. package/templates/skills/extended/frontend/viral-generator-builder/SKILL.md +32 -22
  1305. package/templates/skills/extended/frontend/wcag-audit-patterns/SKILL.md +30 -22
  1306. package/templates/skills/extended/frontend/web-artifacts-builder/SKILL.md +32 -22
  1307. package/templates/skills/extended/frontend/web-design-guidelines/SKILL.md +32 -22
  1308. package/templates/skills/extended/frontend/wiki-vitepress/SKILL.md +32 -21
  1309. package/templates/skills/extended/frontend/zustand-store-ts/SKILL.md +33 -22
  1310. package/templates/skills/extended/gaming/audio-transcriber/CHANGELOG.md +137 -0
  1311. package/templates/skills/extended/gaming/audio-transcriber/README.md +340 -0
  1312. package/templates/skills/extended/gaming/audio-transcriber/SKILL.md +597 -0
  1313. package/templates/skills/extended/gaming/audio-transcriber/examples/basic-transcription.sh +250 -0
  1314. package/templates/skills/extended/gaming/audio-transcriber/references/tools-comparison.md +352 -0
  1315. package/templates/skills/extended/gaming/audio-transcriber/scripts/__pycache__/transcribe.cpython-312.pyc +0 -0
  1316. package/templates/skills/extended/gaming/audio-transcriber/scripts/install-requirements.sh +190 -0
  1317. package/templates/skills/extended/gaming/audio-transcriber/scripts/transcribe.py +486 -0
  1318. package/templates/skills/extended/gaming/godot-gdscript-patterns/SKILL.md +27 -23
  1319. package/templates/skills/extended/gaming/internal-comms-community/LICENSE.txt +202 -0
  1320. package/templates/skills/extended/gaming/internal-comms-community/SKILL.md +76 -0
  1321. package/templates/skills/extended/gaming/startup-business-analyst-market-opportunity/SKILL.md +287 -0
  1322. package/templates/skills/extended/gaming/threejs-skills/SKILL.md +26 -24
  1323. package/templates/skills/extended/gaming/unity-developer/SKILL.md +27 -29
  1324. package/templates/skills/extended/gaming/unity-ecs-patterns/SKILL.md +27 -23
  1325. package/templates/skills/extended/mobile/app-store-optimization/SKILL.md +29 -22
  1326. package/templates/skills/extended/mobile/app-store-optimization/__pycache__/ab_test_planner.cpython-312.pyc +0 -0
  1327. package/templates/skills/extended/mobile/app-store-optimization/__pycache__/aso_scorer.cpython-312.pyc +0 -0
  1328. package/templates/skills/extended/mobile/app-store-optimization/__pycache__/competitor_analyzer.cpython-312.pyc +0 -0
  1329. package/templates/skills/extended/mobile/app-store-optimization/__pycache__/keyword_analyzer.cpython-312.pyc +0 -0
  1330. package/templates/skills/extended/mobile/app-store-optimization/__pycache__/launch_checklist.cpython-312.pyc +0 -0
  1331. package/templates/skills/extended/mobile/app-store-optimization/__pycache__/localization_helper.cpython-312.pyc +0 -0
  1332. package/templates/skills/extended/mobile/app-store-optimization/__pycache__/metadata_optimizer.cpython-312.pyc +0 -0
  1333. package/templates/skills/extended/mobile/app-store-optimization/__pycache__/review_analyzer.cpython-312.pyc +0 -0
  1334. package/templates/skills/extended/mobile/competitor-alternatives/SKILL.md +41 -34
  1335. package/templates/skills/extended/mobile/flutter-expert/SKILL.md +27 -29
  1336. package/templates/skills/extended/mobile/ios-developer/SKILL.md +27 -28
  1337. package/templates/skills/extended/mobile/mobile-developer/SKILL.md +27 -28
  1338. package/templates/skills/extended/mobile/react-native-architecture/SKILL.md +27 -23
  1339. package/templates/skills/extended/mobile/swiftui-expert-skill/SKILL.md +100 -132
  1340. package/templates/skills/extended/mobile/upgrading-expo/SKILL.md +25 -23
  1341. package/templates/skills/extended/other/00-andruia-consultant/SKILL.md +107 -0
  1342. package/templates/skills/extended/other/007/SKILL.md +700 -0
  1343. package/templates/skills/extended/other/007/references/ai-agent-security.md +470 -0
  1344. package/templates/skills/extended/other/007/references/api-security-patterns.md +479 -0
  1345. package/templates/skills/extended/other/007/references/incident-playbooks.md +394 -0
  1346. package/templates/skills/extended/other/007/references/owasp-checklists.md +76 -0
  1347. package/templates/skills/extended/other/007/references/stride-pasta-guide.md +395 -0
  1348. package/templates/skills/extended/other/007/scripts/__pycache__/config.cpython-312.pyc +0 -0
  1349. package/templates/skills/extended/other/007/scripts/__pycache__/full_audit.cpython-312.pyc +0 -0
  1350. package/templates/skills/extended/other/007/scripts/__pycache__/quick_scan.cpython-312.pyc +0 -0
  1351. package/templates/skills/extended/other/007/scripts/__pycache__/score_calculator.cpython-312.pyc +0 -0
  1352. package/templates/skills/extended/other/007/scripts/config.py +472 -0
  1353. package/templates/skills/extended/other/007/scripts/full_audit.py +1306 -0
  1354. package/templates/skills/extended/other/007/scripts/quick_scan.py +481 -0
  1355. package/templates/skills/extended/other/007/scripts/requirements.txt +26 -0
  1356. package/templates/skills/extended/other/007/scripts/scanners/__init__.py +0 -0
  1357. package/templates/skills/extended/other/007/scripts/scanners/__pycache__/__init__.cpython-312.pyc +0 -0
  1358. package/templates/skills/extended/other/007/scripts/scanners/__pycache__/dependency_scanner.cpython-312.pyc +0 -0
  1359. package/templates/skills/extended/other/007/scripts/scanners/__pycache__/injection_scanner.cpython-312.pyc +0 -0
  1360. package/templates/skills/extended/other/007/scripts/scanners/__pycache__/secrets_scanner.cpython-312.pyc +0 -0
  1361. package/templates/skills/extended/other/007/scripts/scanners/dependency_scanner.py +1305 -0
  1362. package/templates/skills/extended/other/007/scripts/scanners/injection_scanner.py +1104 -0
  1363. package/templates/skills/extended/other/007/scripts/scanners/secrets_scanner.py +1008 -0
  1364. package/templates/skills/extended/other/007/scripts/score_calculator.py +693 -0
  1365. package/templates/skills/extended/other/10-andruia-skill-smith/SKILL.md +91 -0
  1366. package/templates/skills/extended/other/20-andruia-niche-intelligence/SKILL.md +109 -0
  1367. package/templates/skills/extended/other/advanced-evaluation/SKILL.md +499 -0
  1368. package/templates/skills/extended/other/advogado-criminal/SKILL.md +992 -0
  1369. package/templates/skills/extended/other/advogado-especialista/SKILL.md +1151 -0
  1370. package/templates/skills/extended/other/advogado-especialista/references/fontes.md +139 -0
  1371. package/templates/skills/extended/other/agent-orchestrator/SKILL.md +362 -0
  1372. package/templates/skills/extended/other/agent-orchestrator/references/capability-taxonomy.md +85 -0
  1373. package/templates/skills/extended/other/agent-orchestrator/references/orchestration-patterns.md +129 -0
  1374. package/templates/skills/extended/other/agent-orchestrator/scripts/__pycache__/match_skills.cpython-312.pyc +0 -0
  1375. package/templates/skills/extended/other/agent-orchestrator/scripts/__pycache__/orchestrate.cpython-312.pyc +0 -0
  1376. package/templates/skills/extended/other/agent-orchestrator/scripts/__pycache__/scan_registry.cpython-312.pyc +0 -0
  1377. package/templates/skills/extended/other/agent-orchestrator/scripts/match_skills.py +329 -0
  1378. package/templates/skills/extended/other/agent-orchestrator/scripts/orchestrate.py +304 -0
  1379. package/templates/skills/extended/other/agent-orchestrator/scripts/requirements.txt +1 -0
  1380. package/templates/skills/extended/other/agent-orchestrator/scripts/scan_registry.py +508 -0
  1381. package/templates/skills/extended/other/agentfolio/SKILL.md +146 -0
  1382. package/templates/skills/extended/other/agentic-actions-auditor/SKILL.md +372 -0
  1383. package/templates/skills/extended/other/agentmail/SKILL.md +293 -0
  1384. package/templates/skills/extended/other/agents-md/SKILL.md +164 -0
  1385. package/templates/skills/extended/other/ai-agent-development/SKILL.md +219 -0
  1386. package/templates/skills/extended/other/ai-analyzer/SKILL.md +260 -0
  1387. package/templates/skills/extended/other/ai-md/SKILL.md +568 -0
  1388. package/templates/skills/extended/other/ai-ml/SKILL.md +298 -0
  1389. package/templates/skills/extended/other/ai-studio-image/SKILL.md +358 -0
  1390. package/templates/skills/extended/other/ai-studio-image/references/prompt-engineering.md +160 -0
  1391. package/templates/skills/extended/other/ai-studio-image/references/setup-guide.md +102 -0
  1392. package/templates/skills/extended/other/ai-studio-image/scripts/__pycache__/config.cpython-312.pyc +0 -0
  1393. package/templates/skills/extended/other/ai-studio-image/scripts/__pycache__/generate.cpython-312.pyc +0 -0
  1394. package/templates/skills/extended/other/ai-studio-image/scripts/__pycache__/prompt_engine.cpython-312.pyc +0 -0
  1395. package/templates/skills/extended/other/ai-studio-image/scripts/__pycache__/templates.cpython-312.pyc +0 -0
  1396. package/templates/skills/extended/other/ai-studio-image/scripts/config.py +613 -0
  1397. package/templates/skills/extended/other/ai-studio-image/scripts/generate.py +630 -0
  1398. package/templates/skills/extended/other/ai-studio-image/scripts/prompt_engine.py +424 -0
  1399. package/templates/skills/extended/other/ai-studio-image/scripts/requirements.txt +4 -0
  1400. package/templates/skills/extended/other/ai-studio-image/scripts/templates.py +349 -0
  1401. package/templates/skills/extended/other/alpha-vantage/SKILL.md +182 -0
  1402. package/templates/skills/extended/other/amazon-alexa/SKILL.md +707 -0
  1403. package/templates/skills/extended/other/analytics-product/SKILL.md +343 -0
  1404. package/templates/skills/extended/other/andrej-karpathy/SKILL.md +1210 -0
  1405. package/templates/skills/extended/other/android-jetpack-compose-expert/SKILL.md +199 -0
  1406. package/templates/skills/extended/other/android_ui_verification/SKILL.md +112 -0
  1407. package/templates/skills/extended/other/android_ui_verification/scripts/verify_ui.sh +32 -0
  1408. package/templates/skills/extended/other/animejs-animation/SKILL.md +94 -0
  1409. package/templates/skills/extended/other/antigravity-design-expert/SKILL.md +88 -0
  1410. package/templates/skills/extended/other/api-documentation/SKILL.md +209 -0
  1411. package/templates/skills/extended/other/api-endpoint-builder/README.md +15 -0
  1412. package/templates/skills/extended/other/api-endpoint-builder/SKILL.md +374 -0
  1413. package/templates/skills/extended/other/api-security-testing/SKILL.md +217 -0
  1414. package/templates/skills/extended/other/apify-actor-development/SKILL.md +264 -0
  1415. package/templates/skills/extended/other/apify-actor-development/references/actor-json.md +66 -0
  1416. package/templates/skills/extended/other/apify-actor-development/references/dataset-schema.md +209 -0
  1417. package/templates/skills/extended/other/apify-actor-development/references/input-schema.md +66 -0
  1418. package/templates/skills/extended/other/apify-actor-development/references/key-value-store-schema.md +129 -0
  1419. package/templates/skills/extended/other/apify-actor-development/references/logging.md +50 -0
  1420. package/templates/skills/extended/other/apify-actor-development/references/output-schema.md +49 -0
  1421. package/templates/skills/extended/other/apify-actor-development/references/standby-mode.md +61 -0
  1422. package/templates/skills/extended/other/apify-actorization/SKILL.md +230 -0
  1423. package/templates/skills/extended/other/apify-actorization/references/cli-actorization.md +81 -0
  1424. package/templates/skills/extended/other/apify-actorization/references/js-ts-actorization.md +111 -0
  1425. package/templates/skills/extended/other/apify-actorization/references/python-actorization.md +95 -0
  1426. package/templates/skills/extended/other/apify-actorization/references/schemas-and-output.md +140 -0
  1427. package/templates/skills/extended/other/apify-audience-analysis/SKILL.md +167 -0
  1428. package/templates/skills/extended/other/apify-audience-analysis/reference/scripts/run_actor.js +363 -0
  1429. package/templates/skills/extended/other/apify-brand-reputation-monitoring/SKILL.md +167 -0
  1430. package/templates/skills/extended/other/apify-brand-reputation-monitoring/reference/scripts/run_actor.js +363 -0
  1431. package/templates/skills/extended/other/apify-competitor-intelligence/SKILL.md +177 -0
  1432. package/templates/skills/extended/other/apify-competitor-intelligence/reference/scripts/run_actor.js +363 -0
  1433. package/templates/skills/extended/other/apify-content-analytics/SKILL.md +166 -0
  1434. package/templates/skills/extended/other/apify-content-analytics/reference/scripts/run_actor.js +363 -0
  1435. package/templates/skills/extended/other/apify-ecommerce/SKILL.md +309 -0
  1436. package/templates/skills/extended/other/apify-ecommerce/reference/scripts/package.json +3 -0
  1437. package/templates/skills/extended/other/apify-ecommerce/reference/scripts/run_actor.js +369 -0
  1438. package/templates/skills/extended/other/apify-influencer-discovery/SKILL.md +164 -0
  1439. package/templates/skills/extended/other/apify-influencer-discovery/reference/scripts/run_actor.js +363 -0
  1440. package/templates/skills/extended/other/apify-lead-generation/SKILL.md +166 -0
  1441. package/templates/skills/extended/other/apify-lead-generation/reference/scripts/run_actor.js +363 -0
  1442. package/templates/skills/extended/other/apify-market-research/SKILL.md +165 -0
  1443. package/templates/skills/extended/other/apify-market-research/reference/scripts/run_actor.js +363 -0
  1444. package/templates/skills/extended/other/apify-trend-analysis/SKILL.md +175 -0
  1445. package/templates/skills/extended/other/apify-trend-analysis/reference/scripts/run_actor.js +363 -0
  1446. package/templates/skills/extended/other/apify-ultimate-scraper/SKILL.md +276 -0
  1447. package/templates/skills/extended/other/apify-ultimate-scraper/reference/scripts/run_actor.js +363 -0
  1448. package/templates/skills/extended/other/appdeploy/SKILL.md +251 -0
  1449. package/templates/skills/extended/other/arm-cortex-expert/SKILL.md +27 -30
  1450. package/templates/skills/extended/other/ask-questions-if-underspecified/SKILL.md +131 -0
  1451. package/templates/skills/extended/other/astropy/SKILL.md +370 -0
  1452. package/templates/skills/extended/other/audit-context-building/SKILL.md +352 -0
  1453. package/templates/skills/extended/other/audit-skills/SKILL.md +178 -0
  1454. package/templates/skills/extended/other/auri-core/SKILL.md +649 -0
  1455. package/templates/skills/extended/other/avoid-ai-writing/SKILL.md +94 -0
  1456. package/templates/skills/extended/other/aws-cost-cleanup/SKILL.md +356 -0
  1457. package/templates/skills/extended/other/aws-cost-optimizer/SKILL.md +239 -0
  1458. package/templates/skills/extended/other/baseline-ui/SKILL.md +131 -0
  1459. package/templates/skills/extended/other/bash-scripting/SKILL.md +242 -0
  1460. package/templates/skills/extended/other/bdi-mental-states/SKILL.md +340 -0
  1461. package/templates/skills/extended/other/bevy-ecs-expert/SKILL.md +178 -0
  1462. package/templates/skills/extended/other/bill-gates/SKILL.md +857 -0
  1463. package/templates/skills/extended/other/biopython/SKILL.md +486 -0
  1464. package/templates/skills/extended/other/blog-writing-guide/SKILL.md +201 -0
  1465. package/templates/skills/extended/other/blueprint/SKILL.md +120 -0
  1466. package/templates/skills/extended/other/brand-guidelines/SKILL.md +214 -0
  1467. package/templates/skills/extended/other/bug-hunter/README.md +20 -0
  1468. package/templates/skills/extended/other/bug-hunter/SKILL.md +429 -0
  1469. package/templates/skills/extended/other/build/SKILL.md +688 -0
  1470. package/templates/skills/extended/other/building-native-ui/SKILL.md +367 -0
  1471. package/templates/skills/extended/other/burpsuite-project-parser/SKILL.md +410 -0
  1472. package/templates/skills/extended/other/carrier-relationship-management/SKILL.md +233 -0
  1473. package/templates/skills/extended/other/carrier-relationship-management/references/communication-templates.md +584 -0
  1474. package/templates/skills/extended/other/carrier-relationship-management/references/decision-frameworks.md +534 -0
  1475. package/templates/skills/extended/other/carrier-relationship-management/references/edge-cases.md +527 -0
  1476. package/templates/skills/extended/other/cc-skill-continuous-learning/SKILL.md +29 -24
  1477. package/templates/skills/extended/other/cc-skill-strategic-compact/SKILL.md +29 -24
  1478. package/templates/skills/extended/other/cdk-patterns/SKILL.md +124 -0
  1479. package/templates/skills/extended/other/chat-widget/SKILL.md +941 -0
  1480. package/templates/skills/extended/other/chrome-extension-developer/SKILL.md +129 -0
  1481. package/templates/skills/extended/other/cirq/SKILL.md +389 -0
  1482. package/templates/skills/extended/other/citation-management/SKILL.md +1152 -0
  1483. package/templates/skills/extended/other/claimable-postgres/SKILL.md +269 -0
  1484. package/templates/skills/extended/other/claude-code-expert/SKILL.md +606 -0
  1485. package/templates/skills/extended/other/claude-in-chrome-troubleshooting/SKILL.md +301 -0
  1486. package/templates/skills/extended/other/claude-monitor/SKILL.md +224 -0
  1487. package/templates/skills/extended/other/claude-monitor/scripts/__pycache__/api_bench.cpython-312.pyc +0 -0
  1488. package/templates/skills/extended/other/claude-monitor/scripts/__pycache__/config.cpython-312.pyc +0 -0
  1489. package/templates/skills/extended/other/claude-monitor/scripts/__pycache__/health_check.cpython-312.pyc +0 -0
  1490. package/templates/skills/extended/other/claude-monitor/scripts/__pycache__/monitor.cpython-312.pyc +0 -0
  1491. package/templates/skills/extended/other/claude-monitor/scripts/api_bench.py +240 -0
  1492. package/templates/skills/extended/other/claude-monitor/scripts/config.py +69 -0
  1493. package/templates/skills/extended/other/claude-monitor/scripts/health_check.py +362 -0
  1494. package/templates/skills/extended/other/claude-monitor/scripts/monitor.py +296 -0
  1495. package/templates/skills/extended/other/claude-settings-audit/SKILL.md +364 -0
  1496. package/templates/skills/extended/other/cloud-devops/SKILL.md +281 -0
  1497. package/templates/skills/extended/other/cloudflare-workers-expert/SKILL.md +131 -0
  1498. package/templates/skills/extended/other/cloudformation-best-practices/SKILL.md +121 -0
  1499. package/templates/skills/extended/other/code-simplifier/SKILL.md +161 -0
  1500. package/templates/skills/extended/other/codebase-audit-pre-push/SKILL.md +290 -0
  1501. package/templates/skills/extended/other/comfyui-gateway/SKILL.md +469 -0
  1502. package/templates/skills/extended/other/comfyui-gateway/references/integration.md +1796 -0
  1503. package/templates/skills/extended/other/comfyui-gateway/references/troubleshooting.md +1082 -0
  1504. package/templates/skills/extended/other/competitive-landscape/SKILL.md +27 -28
  1505. package/templates/skills/extended/other/constant-time-analysis/SKILL.md +261 -0
  1506. package/templates/skills/extended/other/context-agent/SKILL.md +234 -0
  1507. package/templates/skills/extended/other/context-agent/references/compression-rules.md +64 -0
  1508. package/templates/skills/extended/other/context-agent/references/context-format.md +116 -0
  1509. package/templates/skills/extended/other/context-agent/scripts/__pycache__/active_context.cpython-312.pyc +0 -0
  1510. package/templates/skills/extended/other/context-agent/scripts/__pycache__/compressor.cpython-312.pyc +0 -0
  1511. package/templates/skills/extended/other/context-agent/scripts/__pycache__/config.cpython-312.pyc +0 -0
  1512. package/templates/skills/extended/other/context-agent/scripts/__pycache__/context_loader.cpython-312.pyc +0 -0
  1513. package/templates/skills/extended/other/context-agent/scripts/__pycache__/context_manager.cpython-312.pyc +0 -0
  1514. package/templates/skills/extended/other/context-agent/scripts/__pycache__/models.cpython-312.pyc +0 -0
  1515. package/templates/skills/extended/other/context-agent/scripts/__pycache__/project_registry.cpython-312.pyc +0 -0
  1516. package/templates/skills/extended/other/context-agent/scripts/__pycache__/search.cpython-312.pyc +0 -0
  1517. package/templates/skills/extended/other/context-agent/scripts/__pycache__/session_parser.cpython-312.pyc +0 -0
  1518. package/templates/skills/extended/other/context-agent/scripts/__pycache__/session_summary.cpython-312.pyc +0 -0
  1519. package/templates/skills/extended/other/context-agent/scripts/active_context.py +227 -0
  1520. package/templates/skills/extended/other/context-agent/scripts/compressor.py +149 -0
  1521. package/templates/skills/extended/other/context-agent/scripts/config.py +69 -0
  1522. package/templates/skills/extended/other/context-agent/scripts/context_loader.py +155 -0
  1523. package/templates/skills/extended/other/context-agent/scripts/context_manager.py +302 -0
  1524. package/templates/skills/extended/other/context-agent/scripts/models.py +103 -0
  1525. package/templates/skills/extended/other/context-agent/scripts/project_registry.py +132 -0
  1526. package/templates/skills/extended/other/context-agent/scripts/requirements.txt +6 -0
  1527. package/templates/skills/extended/other/context-agent/scripts/search.py +115 -0
  1528. package/templates/skills/extended/other/context-agent/scripts/session_parser.py +206 -0
  1529. package/templates/skills/extended/other/context-agent/scripts/session_summary.py +319 -0
  1530. package/templates/skills/extended/other/context-driven-development/SKILL.md +27 -27
  1531. package/templates/skills/extended/other/context-guardian/SKILL.md +366 -0
  1532. package/templates/skills/extended/other/context-guardian/references/extraction-protocol.md +129 -0
  1533. package/templates/skills/extended/other/context-guardian/references/verification-checklist.md +106 -0
  1534. package/templates/skills/extended/other/context-guardian/scripts/__pycache__/context_snapshot.cpython-312.pyc +0 -0
  1535. package/templates/skills/extended/other/context-guardian/scripts/context_snapshot.py +229 -0
  1536. package/templates/skills/extended/other/context-management-context-save/SKILL.md +26 -22
  1537. package/templates/skills/extended/other/convex/SKILL.md +844 -0
  1538. package/templates/skills/extended/other/create-branch/SKILL.md +149 -0
  1539. package/templates/skills/extended/other/cred-omega/SKILL.md +927 -0
  1540. package/templates/skills/extended/other/customs-trade-compliance/SKILL.md +292 -0
  1541. package/templates/skills/extended/other/customs-trade-compliance/references/communication-templates.md +631 -0
  1542. package/templates/skills/extended/other/customs-trade-compliance/references/decision-frameworks.md +764 -0
  1543. package/templates/skills/extended/other/customs-trade-compliance/references/edge-cases.md +362 -0
  1544. package/templates/skills/extended/other/daily/SKILL.md +349 -0
  1545. package/templates/skills/extended/other/data-structure-protocol/SKILL.md +245 -0
  1546. package/templates/skills/extended/other/database/SKILL.md +258 -0
  1547. package/templates/skills/extended/other/debug-buttercup/SKILL.md +327 -0
  1548. package/templates/skills/extended/other/design-spells/SKILL.md +83 -0
  1549. package/templates/skills/extended/other/devcontainer-setup/SKILL.md +342 -0
  1550. package/templates/skills/extended/other/development/SKILL.md +308 -0
  1551. package/templates/skills/extended/other/devops-deploy/SKILL.md +340 -0
  1552. package/templates/skills/extended/other/diary/.env.example +8 -0
  1553. package/templates/skills/extended/other/diary/LICENSE +21 -0
  1554. package/templates/skills/extended/other/diary/README.md +90 -0
  1555. package/templates/skills/extended/other/diary/SKILL.md +206 -0
  1556. package/templates/skills/extended/other/diary/requirements.txt +1 -0
  1557. package/templates/skills/extended/other/diary/scripts/fetch_diaries.py +84 -0
  1558. package/templates/skills/extended/other/diary/scripts/master_diary_sync.py +270 -0
  1559. package/templates/skills/extended/other/diary/scripts/prepare_context.py +244 -0
  1560. package/templates/skills/extended/other/diary/scripts/sync_to_notion.py +469 -0
  1561. package/templates/skills/extended/other/diary/templates/global-diary-template.md +38 -0
  1562. package/templates/skills/extended/other/diary/templates/local-diary-template.md +23 -0
  1563. package/templates/skills/extended/other/differential-review/SKILL.md +256 -0
  1564. package/templates/skills/extended/other/django-access-review/SKILL.md +386 -0
  1565. package/templates/skills/extended/other/django-perf-review/SKILL.md +446 -0
  1566. package/templates/skills/extended/other/drizzle-orm-expert/SKILL.md +409 -0
  1567. package/templates/skills/extended/other/dwarf-expert/SKILL.md +143 -0
  1568. package/templates/skills/extended/other/e2e-testing/SKILL.md +211 -0
  1569. package/templates/skills/extended/other/earllm-build/SKILL.md +237 -0
  1570. package/templates/skills/extended/other/elon-musk/SKILL.md +1364 -0
  1571. package/templates/skills/extended/other/elon-musk/references/technical.md +833 -0
  1572. package/templates/skills/extended/other/emblemai-crypto-wallet/SKILL.md +119 -0
  1573. package/templates/skills/extended/other/emergency-card/SKILL.md +475 -0
  1574. package/templates/skills/extended/other/energy-procurement/SKILL.md +247 -0
  1575. package/templates/skills/extended/other/energy-procurement/references/communication-templates.md +492 -0
  1576. package/templates/skills/extended/other/energy-procurement/references/decision-frameworks.md +851 -0
  1577. package/templates/skills/extended/other/energy-procurement/references/edge-cases.md +624 -0
  1578. package/templates/skills/extended/other/enhance-prompt/SKILL.md +250 -0
  1579. package/templates/skills/extended/other/evolution/SKILL.md +460 -0
  1580. package/templates/skills/extended/other/explain-like-socrates/SKILL.md +203 -0
  1581. package/templates/skills/extended/other/expo-api-routes/SKILL.md +414 -0
  1582. package/templates/skills/extended/other/expo-cicd-workflows/SKILL.md +138 -0
  1583. package/templates/skills/extended/other/expo-dev-client/SKILL.md +210 -0
  1584. package/templates/skills/extended/other/expo-tailwind-setup/SKILL.md +526 -0
  1585. package/templates/skills/extended/other/expo-ui-jetpack-compose/SKILL.md +90 -0
  1586. package/templates/skills/extended/other/expo-ui-swift-ui/SKILL.md +90 -0
  1587. package/templates/skills/extended/other/family-health-analyzer/SKILL.md +179 -0
  1588. package/templates/skills/extended/other/favicon/SKILL.md +273 -0
  1589. package/templates/skills/extended/other/fda-food-safety-auditor/SKILL.md +107 -0
  1590. package/templates/skills/extended/other/fda-medtech-compliance-auditor/SKILL.md +110 -0
  1591. package/templates/skills/extended/other/ffuf-claude-skill/SKILL.md +25 -23
  1592. package/templates/skills/extended/other/ffuf-web-fuzzing/SKILL.md +548 -0
  1593. package/templates/skills/extended/other/filesystem-context/SKILL.md +364 -0
  1594. package/templates/skills/extended/other/firmware-analyst/SKILL.md +34 -28
  1595. package/templates/skills/extended/other/fitness-analyzer/SKILL.md +473 -0
  1596. package/templates/skills/extended/other/fixing-accessibility/SKILL.md +186 -0
  1597. package/templates/skills/extended/other/fixing-metadata/SKILL.md +153 -0
  1598. package/templates/skills/extended/other/fixing-motion-performance/SKILL.md +201 -0
  1599. package/templates/skills/extended/other/food-database-query/SKILL.md +831 -0
  1600. package/templates/skills/extended/other/fp-async/SKILL.md +1010 -0
  1601. package/templates/skills/extended/other/fp-backend/SKILL.md +1374 -0
  1602. package/templates/skills/extended/other/fp-data-transforms/SKILL.md +1558 -0
  1603. package/templates/skills/extended/other/fp-either-ref/SKILL.md +129 -0
  1604. package/templates/skills/extended/other/fp-errors/SKILL.md +907 -0
  1605. package/templates/skills/extended/other/fp-option-ref/SKILL.md +125 -0
  1606. package/templates/skills/extended/other/fp-pipe-ref/SKILL.md +129 -0
  1607. package/templates/skills/extended/other/fp-pragmatic/SKILL.md +644 -0
  1608. package/templates/skills/extended/other/fp-react/SKILL.md +836 -0
  1609. package/templates/skills/extended/other/fp-refactor/SKILL.md +1827 -0
  1610. package/templates/skills/extended/other/fp-taskeither-ref/SKILL.md +149 -0
  1611. package/templates/skills/extended/other/fp-types-ref/SKILL.md +112 -0
  1612. package/templates/skills/extended/other/gemini-api-integration/SKILL.md +234 -0
  1613. package/templates/skills/extended/other/geoffrey-hinton/SKILL.md +1323 -0
  1614. package/templates/skills/extended/other/gh-review-requests/SKILL.md +119 -0
  1615. package/templates/skills/extended/other/gha-security-review/SKILL.md +235 -0
  1616. package/templates/skills/extended/other/git-hooks-automation/SKILL.md +462 -0
  1617. package/templates/skills/extended/other/goal-analyzer/SKILL.md +647 -0
  1618. package/templates/skills/extended/other/godot-4-migration/SKILL.md +173 -0
  1619. package/templates/skills/extended/other/google-docs-automation/SKILL.md +128 -0
  1620. package/templates/skills/extended/other/google-sheets-automation/SKILL.md +194 -0
  1621. package/templates/skills/extended/other/google-slides-automation/SKILL.md +187 -0
  1622. package/templates/skills/extended/other/growth-engine/SKILL.md +290 -0
  1623. package/templates/skills/extended/other/grpc-golang/SKILL.md +150 -0
  1624. package/templates/skills/extended/other/grpc-golang/resources/implementation-playbook.md +548 -0
  1625. package/templates/skills/extended/other/health-trend-analyzer/SKILL.md +493 -0
  1626. package/templates/skills/extended/other/hierarchical-agent-memory/SKILL.md +183 -0
  1627. package/templates/skills/extended/other/hig-components-content/SKILL.md +127 -0
  1628. package/templates/skills/extended/other/hig-components-content/references/activity-views.md +79 -0
  1629. package/templates/skills/extended/other/hig-components-content/references/charts.md +180 -0
  1630. package/templates/skills/extended/other/hig-components-content/references/collections.md +48 -0
  1631. package/templates/skills/extended/other/hig-components-content/references/color-wells.md +42 -0
  1632. package/templates/skills/extended/other/hig-components-content/references/image-views.md +82 -0
  1633. package/templates/skills/extended/other/hig-components-content/references/image-wells.md +34 -0
  1634. package/templates/skills/extended/other/hig-components-content/references/lockups.md +78 -0
  1635. package/templates/skills/extended/other/hig-components-content/references/web-views.md +36 -0
  1636. package/templates/skills/extended/other/hig-components-controls/SKILL.md +129 -0
  1637. package/templates/skills/extended/other/hig-components-controls/references/combo-boxes.md +40 -0
  1638. package/templates/skills/extended/other/hig-components-controls/references/controls.md +112 -0
  1639. package/templates/skills/extended/other/hig-components-controls/references/gauges.md +74 -0
  1640. package/templates/skills/extended/other/hig-components-controls/references/labels.md +92 -0
  1641. package/templates/skills/extended/other/hig-components-controls/references/pickers.md +128 -0
  1642. package/templates/skills/extended/other/hig-components-controls/references/rating-indicators.md +38 -0
  1643. package/templates/skills/extended/other/hig-components-controls/references/segmented-controls.md +94 -0
  1644. package/templates/skills/extended/other/hig-components-controls/references/sliders.md +92 -0
  1645. package/templates/skills/extended/other/hig-components-controls/references/steppers.md +40 -0
  1646. package/templates/skills/extended/other/hig-components-controls/references/text-fields.md +88 -0
  1647. package/templates/skills/extended/other/hig-components-controls/references/text-views.md +56 -0
  1648. package/templates/skills/extended/other/hig-components-controls/references/toggles.md +127 -0
  1649. package/templates/skills/extended/other/hig-components-controls/references/token-fields.md +48 -0
  1650. package/templates/skills/extended/other/hig-components-controls/references/virtual-keyboards.md +156 -0
  1651. package/templates/skills/extended/other/hig-components-dialogs/SKILL.md +118 -0
  1652. package/templates/skills/extended/other/hig-components-dialogs/references/action-sheets.md +74 -0
  1653. package/templates/skills/extended/other/hig-components-dialogs/references/alerts.md +158 -0
  1654. package/templates/skills/extended/other/hig-components-dialogs/references/digit-entry-views.md +32 -0
  1655. package/templates/skills/extended/other/hig-components-dialogs/references/popovers.md +81 -0
  1656. package/templates/skills/extended/other/hig-components-dialogs/references/sheets.md +157 -0
  1657. package/templates/skills/extended/other/hig-components-layout/SKILL.md +141 -0
  1658. package/templates/skills/extended/other/hig-components-layout/references/boxes.md +48 -0
  1659. package/templates/skills/extended/other/hig-components-layout/references/column-views.md +44 -0
  1660. package/templates/skills/extended/other/hig-components-layout/references/lists-and-tables.md +99 -0
  1661. package/templates/skills/extended/other/hig-components-layout/references/ornaments.md +56 -0
  1662. package/templates/skills/extended/other/hig-components-layout/references/outline-views.md +64 -0
  1663. package/templates/skills/extended/other/hig-components-layout/references/panels.md +75 -0
  1664. package/templates/skills/extended/other/hig-components-layout/references/scroll-views.md +123 -0
  1665. package/templates/skills/extended/other/hig-components-layout/references/sidebars.md +109 -0
  1666. package/templates/skills/extended/other/hig-components-layout/references/split-views.md +110 -0
  1667. package/templates/skills/extended/other/hig-components-layout/references/tab-bars.md +173 -0
  1668. package/templates/skills/extended/other/hig-components-layout/references/tab-views.md +68 -0
  1669. package/templates/skills/extended/other/hig-components-layout/references/windows.md +188 -0
  1670. package/templates/skills/extended/other/hig-components-menus/SKILL.md +123 -0
  1671. package/templates/skills/extended/other/hig-components-menus/references/action-button.md +61 -0
  1672. package/templates/skills/extended/other/hig-components-menus/references/buttons.md +261 -0
  1673. package/templates/skills/extended/other/hig-components-menus/references/context-menus.md +105 -0
  1674. package/templates/skills/extended/other/hig-components-menus/references/disclosure-controls.md +84 -0
  1675. package/templates/skills/extended/other/hig-components-menus/references/dock-menus.md +40 -0
  1676. package/templates/skills/extended/other/hig-components-menus/references/edit-menus.md +88 -0
  1677. package/templates/skills/extended/other/hig-components-menus/references/menus.md +171 -0
  1678. package/templates/skills/extended/other/hig-components-menus/references/pop-up-buttons.md +70 -0
  1679. package/templates/skills/extended/other/hig-components-menus/references/pull-down-buttons.md +77 -0
  1680. package/templates/skills/extended/other/hig-components-menus/references/the-menu-bar.md +303 -0
  1681. package/templates/skills/extended/other/hig-components-menus/references/toolbars.md +256 -0
  1682. package/templates/skills/extended/other/hig-components-search/SKILL.md +111 -0
  1683. package/templates/skills/extended/other/hig-components-search/references/page-controls.md +120 -0
  1684. package/templates/skills/extended/other/hig-components-search/references/path-controls.md +40 -0
  1685. package/templates/skills/extended/other/hig-components-search/references/search-fields.md +189 -0
  1686. package/templates/skills/extended/other/hig-components-status/SKILL.md +128 -0
  1687. package/templates/skills/extended/other/hig-components-status/references/activity-rings.md +105 -0
  1688. package/templates/skills/extended/other/hig-components-status/references/progress-indicators.md +116 -0
  1689. package/templates/skills/extended/other/hig-components-status/references/status-bars.md +38 -0
  1690. package/templates/skills/extended/other/hig-components-system/SKILL.md +147 -0
  1691. package/templates/skills/extended/other/hig-components-system/references/app-clips.md +387 -0
  1692. package/templates/skills/extended/other/hig-components-system/references/app-shortcuts.md +114 -0
  1693. package/templates/skills/extended/other/hig-components-system/references/complications.md +425 -0
  1694. package/templates/skills/extended/other/hig-components-system/references/home-screen-quick-actions.md +42 -0
  1695. package/templates/skills/extended/other/hig-components-system/references/live-activities.md +442 -0
  1696. package/templates/skills/extended/other/hig-components-system/references/notifications.md +153 -0
  1697. package/templates/skills/extended/other/hig-components-system/references/top-shelf.md +135 -0
  1698. package/templates/skills/extended/other/hig-components-system/references/watch-faces.md +40 -0
  1699. package/templates/skills/extended/other/hig-components-system/references/widgets.md +517 -0
  1700. package/templates/skills/extended/other/hig-foundations/SKILL.md +140 -0
  1701. package/templates/skills/extended/other/hig-foundations/references/accessibility.md +291 -0
  1702. package/templates/skills/extended/other/hig-foundations/references/app-icons.md +210 -0
  1703. package/templates/skills/extended/other/hig-foundations/references/branding.md +44 -0
  1704. package/templates/skills/extended/other/hig-foundations/references/color.md +274 -0
  1705. package/templates/skills/extended/other/hig-foundations/references/dark-mode.md +116 -0
  1706. package/templates/skills/extended/other/hig-foundations/references/icons.md +263 -0
  1707. package/templates/skills/extended/other/hig-foundations/references/images.md +176 -0
  1708. package/templates/skills/extended/other/hig-foundations/references/immersive-experiences.md +174 -0
  1709. package/templates/skills/extended/other/hig-foundations/references/inclusion.md +189 -0
  1710. package/templates/skills/extended/other/hig-foundations/references/layout.md +425 -0
  1711. package/templates/skills/extended/other/hig-foundations/references/materials.md +238 -0
  1712. package/templates/skills/extended/other/hig-foundations/references/motion.md +103 -0
  1713. package/templates/skills/extended/other/hig-foundations/references/privacy.md +231 -0
  1714. package/templates/skills/extended/other/hig-foundations/references/right-to-left.md +206 -0
  1715. package/templates/skills/extended/other/hig-foundations/references/sf-symbols.md +310 -0
  1716. package/templates/skills/extended/other/hig-foundations/references/spatial-layout.md +142 -0
  1717. package/templates/skills/extended/other/hig-foundations/references/typography.md +1146 -0
  1718. package/templates/skills/extended/other/hig-foundations/references/writing.md +91 -0
  1719. package/templates/skills/extended/other/hig-inputs/SKILL.md +156 -0
  1720. package/templates/skills/extended/other/hig-inputs/references/apple-pencil-and-scribble.md +148 -0
  1721. package/templates/skills/extended/other/hig-inputs/references/camera-control.md +107 -0
  1722. package/templates/skills/extended/other/hig-inputs/references/digital-crown.md +83 -0
  1723. package/templates/skills/extended/other/hig-inputs/references/eyes.md +120 -0
  1724. package/templates/skills/extended/other/hig-inputs/references/focus-and-selection.md +120 -0
  1725. package/templates/skills/extended/other/hig-inputs/references/game-controls.md +156 -0
  1726. package/templates/skills/extended/other/hig-inputs/references/gestures.md +208 -0
  1727. package/templates/skills/extended/other/hig-inputs/references/gyro-and-accelerometer.md +40 -0
  1728. package/templates/skills/extended/other/hig-inputs/references/keyboards.md +234 -0
  1729. package/templates/skills/extended/other/hig-inputs/references/nearby-interactions.md +70 -0
  1730. package/templates/skills/extended/other/hig-inputs/references/pointing-devices.md +237 -0
  1731. package/templates/skills/extended/other/hig-inputs/references/remotes.md +67 -0
  1732. package/templates/skills/extended/other/hig-inputs/references/spatial-interactions.md +70 -0
  1733. package/templates/skills/extended/other/hig-patterns/SKILL.md +145 -0
  1734. package/templates/skills/extended/other/hig-patterns/references/charting-data.md +81 -0
  1735. package/templates/skills/extended/other/hig-patterns/references/collaboration-and-sharing.md +86 -0
  1736. package/templates/skills/extended/other/hig-patterns/references/drag-and-drop.md +134 -0
  1737. package/templates/skills/extended/other/hig-patterns/references/entering-data.md +69 -0
  1738. package/templates/skills/extended/other/hig-patterns/references/feedback.md +67 -0
  1739. package/templates/skills/extended/other/hig-patterns/references/file-management.md +135 -0
  1740. package/templates/skills/extended/other/hig-patterns/references/going-full-screen.md +79 -0
  1741. package/templates/skills/extended/other/hig-patterns/references/launching.md +81 -0
  1742. package/templates/skills/extended/other/hig-patterns/references/live-viewing-apps.md +79 -0
  1743. package/templates/skills/extended/other/hig-patterns/references/loading.md +59 -0
  1744. package/templates/skills/extended/other/hig-patterns/references/managing-accounts.md +107 -0
  1745. package/templates/skills/extended/other/hig-patterns/references/managing-notifications.md +99 -0
  1746. package/templates/skills/extended/other/hig-patterns/references/modality.md +82 -0
  1747. package/templates/skills/extended/other/hig-patterns/references/multitasking.md +131 -0
  1748. package/templates/skills/extended/other/hig-patterns/references/offering-help.md +117 -0
  1749. package/templates/skills/extended/other/hig-patterns/references/onboarding.md +69 -0
  1750. package/templates/skills/extended/other/hig-patterns/references/playing-audio.md +124 -0
  1751. package/templates/skills/extended/other/hig-patterns/references/playing-haptics.md +280 -0
  1752. package/templates/skills/extended/other/hig-patterns/references/playing-video.md +180 -0
  1753. package/templates/skills/extended/other/hig-patterns/references/printing.md +50 -0
  1754. package/templates/skills/extended/other/hig-patterns/references/ratings-and-reviews.md +48 -0
  1755. package/templates/skills/extended/other/hig-patterns/references/searching.md +70 -0
  1756. package/templates/skills/extended/other/hig-patterns/references/settings.md +84 -0
  1757. package/templates/skills/extended/other/hig-patterns/references/undo-and-redo.md +58 -0
  1758. package/templates/skills/extended/other/hig-patterns/references/workouts.md +76 -0
  1759. package/templates/skills/extended/other/hig-platforms/SKILL.md +127 -0
  1760. package/templates/skills/extended/other/hig-platforms/references/designing-for-games.md +159 -0
  1761. package/templates/skills/extended/other/hig-platforms/references/designing-for-ios.md +66 -0
  1762. package/templates/skills/extended/other/hig-platforms/references/designing-for-ipados.md +64 -0
  1763. package/templates/skills/extended/other/hig-platforms/references/designing-for-macos.md +70 -0
  1764. package/templates/skills/extended/other/hig-platforms/references/designing-for-tvos.md +68 -0
  1765. package/templates/skills/extended/other/hig-platforms/references/designing-for-visionos.md +85 -0
  1766. package/templates/skills/extended/other/hig-platforms/references/designing-for-watchos.md +74 -0
  1767. package/templates/skills/extended/other/hig-project-context/SKILL.md +177 -0
  1768. package/templates/skills/extended/other/hig-technologies/SKILL.md +171 -0
  1769. package/templates/skills/extended/other/hig-technologies/references/airplay.md +125 -0
  1770. package/templates/skills/extended/other/hig-technologies/references/always-on.md +62 -0
  1771. package/templates/skills/extended/other/hig-technologies/references/apple-pay.md +441 -0
  1772. package/templates/skills/extended/other/hig-technologies/references/augmented-reality.md +247 -0
  1773. package/templates/skills/extended/other/hig-technologies/references/carekit.md +224 -0
  1774. package/templates/skills/extended/other/hig-technologies/references/carplay.md +119 -0
  1775. package/templates/skills/extended/other/hig-technologies/references/game-center.md +343 -0
  1776. package/templates/skills/extended/other/hig-technologies/references/generative-ai.md +110 -0
  1777. package/templates/skills/extended/other/hig-technologies/references/healthkit.md +120 -0
  1778. package/templates/skills/extended/other/hig-technologies/references/homekit.md +343 -0
  1779. package/templates/skills/extended/other/hig-technologies/references/icloud.md +52 -0
  1780. package/templates/skills/extended/other/hig-technologies/references/id-verifier.md +73 -0
  1781. package/templates/skills/extended/other/hig-technologies/references/imessage-apps-and-stickers.md +105 -0
  1782. package/templates/skills/extended/other/hig-technologies/references/in-app-purchase.md +263 -0
  1783. package/templates/skills/extended/other/hig-technologies/references/live-photos.md +54 -0
  1784. package/templates/skills/extended/other/hig-technologies/references/mac-catalyst.md +216 -0
  1785. package/templates/skills/extended/other/hig-technologies/references/machine-learning.md +394 -0
  1786. package/templates/skills/extended/other/hig-technologies/references/maps.md +221 -0
  1787. package/templates/skills/extended/other/hig-technologies/references/nfc.md +51 -0
  1788. package/templates/skills/extended/other/hig-technologies/references/photo-editing.md +40 -0
  1789. package/templates/skills/extended/other/hig-technologies/references/researchkit.md +134 -0
  1790. package/templates/skills/extended/other/hig-technologies/references/shareplay.md +142 -0
  1791. package/templates/skills/extended/other/hig-technologies/references/shazamkit.md +47 -0
  1792. package/templates/skills/extended/other/hig-technologies/references/sign-in-with-apple.md +288 -0
  1793. package/templates/skills/extended/other/hig-technologies/references/siri.md +523 -0
  1794. package/templates/skills/extended/other/hig-technologies/references/tap-to-pay-on-iphone.md +208 -0
  1795. package/templates/skills/extended/other/hig-technologies/references/voiceover.md +90 -0
  1796. package/templates/skills/extended/other/hig-technologies/references/wallet.md +420 -0
  1797. package/templates/skills/extended/other/hosted-agents/SKILL.md +332 -0
  1798. package/templates/skills/extended/other/hugging-face-dataset-viewer/SKILL.md +172 -0
  1799. package/templates/skills/extended/other/hugging-face-datasets/SKILL.md +588 -0
  1800. package/templates/skills/extended/other/hugging-face-evaluation/SKILL.md +697 -0
  1801. package/templates/skills/extended/other/hugging-face-model-trainer/SKILL.md +760 -0
  1802. package/templates/skills/extended/other/hugging-face-paper-publisher/SKILL.md +664 -0
  1803. package/templates/skills/extended/other/hugging-face-tool-builder/SKILL.md +156 -0
  1804. package/templates/skills/extended/other/iconsax-library/SKILL.md +85 -0
  1805. package/templates/skills/extended/other/ilya-sutskever/SKILL.md +1211 -0
  1806. package/templates/skills/extended/other/image-studio/SKILL.md +373 -0
  1807. package/templates/skills/extended/other/incident-response-incident-response/SKILL.md +26 -22
  1808. package/templates/skills/extended/other/instagram/SKILL.md +460 -0
  1809. package/templates/skills/extended/other/instagram/references/account_types.md +106 -0
  1810. package/templates/skills/extended/other/instagram/references/graph_api.md +323 -0
  1811. package/templates/skills/extended/other/instagram/references/permissions.md +92 -0
  1812. package/templates/skills/extended/other/instagram/references/publishing_guide.md +173 -0
  1813. package/templates/skills/extended/other/instagram/references/rate_limits.md +113 -0
  1814. package/templates/skills/extended/other/instagram/references/schema.md +263 -0
  1815. package/templates/skills/extended/other/instagram/references/setup_walkthrough.md +142 -0
  1816. package/templates/skills/extended/other/instagram/scripts/__pycache__/account_setup.cpython-312.pyc +0 -0
  1817. package/templates/skills/extended/other/instagram/scripts/__pycache__/analyze.cpython-312.pyc +0 -0
  1818. package/templates/skills/extended/other/instagram/scripts/__pycache__/api_client.cpython-312.pyc +0 -0
  1819. package/templates/skills/extended/other/instagram/scripts/__pycache__/auth.cpython-312.pyc +0 -0
  1820. package/templates/skills/extended/other/instagram/scripts/__pycache__/comments.cpython-312.pyc +0 -0
  1821. package/templates/skills/extended/other/instagram/scripts/__pycache__/config.cpython-312.pyc +0 -0
  1822. package/templates/skills/extended/other/instagram/scripts/__pycache__/db.cpython-312.pyc +0 -0
  1823. package/templates/skills/extended/other/instagram/scripts/__pycache__/export.cpython-312.pyc +0 -0
  1824. package/templates/skills/extended/other/instagram/scripts/__pycache__/governance.cpython-312.pyc +0 -0
  1825. package/templates/skills/extended/other/instagram/scripts/__pycache__/hashtags.cpython-312.pyc +0 -0
  1826. package/templates/skills/extended/other/instagram/scripts/__pycache__/insights.cpython-312.pyc +0 -0
  1827. package/templates/skills/extended/other/instagram/scripts/__pycache__/media.cpython-312.pyc +0 -0
  1828. package/templates/skills/extended/other/instagram/scripts/__pycache__/messages.cpython-312.pyc +0 -0
  1829. package/templates/skills/extended/other/instagram/scripts/__pycache__/profile.cpython-312.pyc +0 -0
  1830. package/templates/skills/extended/other/instagram/scripts/__pycache__/publish.cpython-312.pyc +0 -0
  1831. package/templates/skills/extended/other/instagram/scripts/__pycache__/run_all.cpython-312.pyc +0 -0
  1832. package/templates/skills/extended/other/instagram/scripts/__pycache__/schedule.cpython-312.pyc +0 -0
  1833. package/templates/skills/extended/other/instagram/scripts/__pycache__/serve_api.cpython-312.pyc +0 -0
  1834. package/templates/skills/extended/other/instagram/scripts/__pycache__/templates.cpython-312.pyc +0 -0
  1835. package/templates/skills/extended/other/instagram/scripts/account_setup.py +233 -0
  1836. package/templates/skills/extended/other/instagram/scripts/analyze.py +221 -0
  1837. package/templates/skills/extended/other/instagram/scripts/api_client.py +444 -0
  1838. package/templates/skills/extended/other/instagram/scripts/auth.py +411 -0
  1839. package/templates/skills/extended/other/instagram/scripts/comments.py +160 -0
  1840. package/templates/skills/extended/other/instagram/scripts/config.py +111 -0
  1841. package/templates/skills/extended/other/instagram/scripts/db.py +467 -0
  1842. package/templates/skills/extended/other/instagram/scripts/export.py +138 -0
  1843. package/templates/skills/extended/other/instagram/scripts/governance.py +233 -0
  1844. package/templates/skills/extended/other/instagram/scripts/hashtags.py +114 -0
  1845. package/templates/skills/extended/other/instagram/scripts/insights.py +170 -0
  1846. package/templates/skills/extended/other/instagram/scripts/media.py +65 -0
  1847. package/templates/skills/extended/other/instagram/scripts/messages.py +103 -0
  1848. package/templates/skills/extended/other/instagram/scripts/profile.py +58 -0
  1849. package/templates/skills/extended/other/instagram/scripts/publish.py +449 -0
  1850. package/templates/skills/extended/other/instagram/scripts/requirements.txt +5 -0
  1851. package/templates/skills/extended/other/instagram/scripts/run_all.py +189 -0
  1852. package/templates/skills/extended/other/instagram/scripts/schedule.py +189 -0
  1853. package/templates/skills/extended/other/instagram/scripts/serve_api.py +234 -0
  1854. package/templates/skills/extended/other/instagram/scripts/templates.py +155 -0
  1855. package/templates/skills/extended/other/instagram/static/dashboard.html +189 -0
  1856. package/templates/skills/extended/other/inventory-demand-planning/SKILL.md +268 -0
  1857. package/templates/skills/extended/other/inventory-demand-planning/references/communication-templates.md +566 -0
  1858. package/templates/skills/extended/other/inventory-demand-planning/references/decision-frameworks.md +861 -0
  1859. package/templates/skills/extended/other/inventory-demand-planning/references/edge-cases.md +602 -0
  1860. package/templates/skills/extended/other/issues/SKILL.md +300 -0
  1861. package/templates/skills/extended/other/junta-leiloeiros/SKILL.md +263 -0
  1862. package/templates/skills/extended/other/junta-leiloeiros/references/juntas_urls.md +81 -0
  1863. package/templates/skills/extended/other/junta-leiloeiros/references/legal.md +59 -0
  1864. package/templates/skills/extended/other/junta-leiloeiros/references/schema.md +93 -0
  1865. package/templates/skills/extended/other/junta-leiloeiros/scripts/__pycache__/db.cpython-312.pyc +0 -0
  1866. package/templates/skills/extended/other/junta-leiloeiros/scripts/__pycache__/export.cpython-312.pyc +0 -0
  1867. package/templates/skills/extended/other/junta-leiloeiros/scripts/__pycache__/run_all.cpython-312.pyc +0 -0
  1868. package/templates/skills/extended/other/junta-leiloeiros/scripts/__pycache__/serve_api.cpython-312.pyc +0 -0
  1869. package/templates/skills/extended/other/junta-leiloeiros/scripts/__pycache__/web_scraper_fallback.cpython-312.pyc +0 -0
  1870. package/templates/skills/extended/other/junta-leiloeiros/scripts/db.py +216 -0
  1871. package/templates/skills/extended/other/junta-leiloeiros/scripts/export.py +137 -0
  1872. package/templates/skills/extended/other/junta-leiloeiros/scripts/requirements.txt +15 -0
  1873. package/templates/skills/extended/other/junta-leiloeiros/scripts/run_all.py +190 -0
  1874. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__init__.py +4 -0
  1875. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/__init__.cpython-312.pyc +0 -0
  1876. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/base_scraper.cpython-312.pyc +0 -0
  1877. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/generic_scraper.cpython-312.pyc +0 -0
  1878. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucap.cpython-312.pyc +0 -0
  1879. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/juceac.cpython-312.pyc +0 -0
  1880. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/juceal.cpython-312.pyc +0 -0
  1881. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/juceb.cpython-312.pyc +0 -0
  1882. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucec.cpython-312.pyc +0 -0
  1883. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucema.cpython-312.pyc +0 -0
  1884. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucemg.cpython-312.pyc +0 -0
  1885. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucep.cpython-312.pyc +0 -0
  1886. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucepa.cpython-312.pyc +0 -0
  1887. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucepar.cpython-312.pyc +0 -0
  1888. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucepe.cpython-312.pyc +0 -0
  1889. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucepi.cpython-312.pyc +0 -0
  1890. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucer.cpython-312.pyc +0 -0
  1891. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucerja.cpython-312.pyc +0 -0
  1892. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucern.cpython-312.pyc +0 -0
  1893. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucesc.cpython-312.pyc +0 -0
  1894. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucesp.cpython-312.pyc +0 -0
  1895. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucetins.cpython-312.pyc +0 -0
  1896. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucis_df.cpython-312.pyc +0 -0
  1897. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/jucisrs.cpython-312.pyc +0 -0
  1898. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/__pycache__/states.cpython-312.pyc +0 -0
  1899. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/base_scraper.py +209 -0
  1900. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/generic_scraper.py +110 -0
  1901. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucap.py +110 -0
  1902. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/juceac.py +72 -0
  1903. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/juceal.py +72 -0
  1904. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/juceb.py +68 -0
  1905. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucec.py +63 -0
  1906. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucema.py +211 -0
  1907. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucemg.py +218 -0
  1908. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucep.py +70 -0
  1909. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucepa.py +74 -0
  1910. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucepar.py +80 -0
  1911. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucepe.py +78 -0
  1912. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucepi.py +69 -0
  1913. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucer.py +256 -0
  1914. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucerja.py +170 -0
  1915. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucern.py +71 -0
  1916. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucesc.py +89 -0
  1917. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucesp.py +233 -0
  1918. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucetins.py +134 -0
  1919. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucis_df.py +63 -0
  1920. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/jucisrs.py +299 -0
  1921. package/templates/skills/extended/other/junta-leiloeiros/scripts/scraper/states.py +99 -0
  1922. package/templates/skills/extended/other/junta-leiloeiros/scripts/serve_api.py +164 -0
  1923. package/templates/skills/extended/other/junta-leiloeiros/scripts/web_scraper_fallback.py +233 -0
  1924. package/templates/skills/extended/other/keyword-extractor/SKILL.md +204 -0
  1925. package/templates/skills/extended/other/kotlin-coroutines-expert/SKILL.md +151 -0
  1926. package/templates/skills/extended/other/kubernetes-deployment/SKILL.md +212 -0
  1927. package/templates/skills/extended/other/leiloeiro-avaliacao/SKILL.md +553 -0
  1928. package/templates/skills/extended/other/leiloeiro-avaliacao/references/fontes.md +13 -0
  1929. package/templates/skills/extended/other/leiloeiro-avaliacao/scripts/__pycache__/governance.cpython-312.pyc +0 -0
  1930. package/templates/skills/extended/other/leiloeiro-avaliacao/scripts/governance.py +106 -0
  1931. package/templates/skills/extended/other/leiloeiro-avaliacao/scripts/requirements.txt +1 -0
  1932. package/templates/skills/extended/other/leiloeiro-edital/SKILL.md +556 -0
  1933. package/templates/skills/extended/other/leiloeiro-edital/references/fontes.md +15 -0
  1934. package/templates/skills/extended/other/leiloeiro-edital/scripts/__pycache__/governance.cpython-312.pyc +0 -0
  1935. package/templates/skills/extended/other/leiloeiro-edital/scripts/governance.py +106 -0
  1936. package/templates/skills/extended/other/leiloeiro-edital/scripts/requirements.txt +1 -0
  1937. package/templates/skills/extended/other/leiloeiro-ia/SKILL.md +442 -0
  1938. package/templates/skills/extended/other/leiloeiro-ia/references/fontes.md +21 -0
  1939. package/templates/skills/extended/other/leiloeiro-ia/scripts/__pycache__/governance.cpython-312.pyc +0 -0
  1940. package/templates/skills/extended/other/leiloeiro-ia/scripts/governance.py +106 -0
  1941. package/templates/skills/extended/other/leiloeiro-ia/scripts/requirements.txt +1 -0
  1942. package/templates/skills/extended/other/leiloeiro-juridico/SKILL.md +517 -0
  1943. package/templates/skills/extended/other/leiloeiro-juridico/references/fontes.md +17 -0
  1944. package/templates/skills/extended/other/leiloeiro-juridico/scripts/__pycache__/governance.cpython-312.pyc +0 -0
  1945. package/templates/skills/extended/other/leiloeiro-juridico/scripts/governance.py +106 -0
  1946. package/templates/skills/extended/other/leiloeiro-juridico/scripts/requirements.txt +1 -0
  1947. package/templates/skills/extended/other/leiloeiro-mercado/SKILL.md +542 -0
  1948. package/templates/skills/extended/other/leiloeiro-mercado/references/fontes.md +15 -0
  1949. package/templates/skills/extended/other/leiloeiro-mercado/scripts/__pycache__/governance.cpython-312.pyc +0 -0
  1950. package/templates/skills/extended/other/leiloeiro-mercado/scripts/governance.py +106 -0
  1951. package/templates/skills/extended/other/leiloeiro-mercado/scripts/requirements.txt +1 -0
  1952. package/templates/skills/extended/other/leiloeiro-risco/SKILL.md +545 -0
  1953. package/templates/skills/extended/other/leiloeiro-risco/references/fontes.md +15 -0
  1954. package/templates/skills/extended/other/leiloeiro-risco/scripts/__pycache__/governance.cpython-312.pyc +0 -0
  1955. package/templates/skills/extended/other/leiloeiro-risco/scripts/governance.py +106 -0
  1956. package/templates/skills/extended/other/leiloeiro-risco/scripts/requirements.txt +1 -0
  1957. package/templates/skills/extended/other/lex/SKILL.md +113 -0
  1958. package/templates/skills/extended/other/lex/findings.md +58 -0
  1959. package/templates/skills/extended/other/lex/templates/01_business_foundation.md +30 -0
  1960. package/templates/skills/extended/other/lex/templates/02_employment_workforce.md +31 -0
  1961. package/templates/skills/extended/other/lex/templates/03_sales_commercial.md +30 -0
  1962. package/templates/skills/extended/other/lex/templates/04_real_estate.md +28 -0
  1963. package/templates/skills/extended/other/lex/templates/05_intellectual_property.md +28 -0
  1964. package/templates/skills/extended/other/libreoffice/base/SKILL.md +229 -0
  1965. package/templates/skills/extended/other/libreoffice/calc/SKILL.md +242 -0
  1966. package/templates/skills/extended/other/libreoffice/draw/SKILL.md +206 -0
  1967. package/templates/skills/extended/other/libreoffice/impress/SKILL.md +219 -0
  1968. package/templates/skills/extended/other/libreoffice/writer/SKILL.md +245 -0
  1969. package/templates/skills/extended/other/lightning-architecture-review/SKILL.md +98 -0
  1970. package/templates/skills/extended/other/lightning-channel-factories/SKILL.md +97 -0
  1971. package/templates/skills/extended/other/lightning-factory-explainer/SKILL.md +97 -0
  1972. package/templates/skills/extended/other/linear/plugin.json +18 -0
  1973. package/templates/skills/extended/other/linkedin-cli/SKILL.md +583 -0
  1974. package/templates/skills/extended/other/linux-troubleshooting/SKILL.md +266 -0
  1975. package/templates/skills/extended/other/llm-ops/SKILL.md +305 -0
  1976. package/templates/skills/extended/other/llm-prompt-optimizer/SKILL.md +232 -0
  1977. package/templates/skills/extended/other/local-legal-seo-audit/SKILL.md +398 -0
  1978. package/templates/skills/extended/other/local-llm-expert/SKILL.md +125 -0
  1979. package/templates/skills/extended/other/logistics-exception-management/SKILL.md +247 -0
  1980. package/templates/skills/extended/other/logistics-exception-management/references/communication-templates.md +1170 -0
  1981. package/templates/skills/extended/other/logistics-exception-management/references/decision-frameworks.md +1460 -0
  1982. package/templates/skills/extended/other/logistics-exception-management/references/edge-cases.md +734 -0
  1983. package/templates/skills/extended/other/magic-animator/SKILL.md +83 -0
  1984. package/templates/skills/extended/other/magic-ui-generator/SKILL.md +88 -0
  1985. package/templates/skills/extended/other/makepad-animation/SKILL.md +346 -0
  1986. package/templates/skills/extended/other/makepad-basics/SKILL.md +194 -0
  1987. package/templates/skills/extended/other/makepad-deployment/SKILL.md +456 -0
  1988. package/templates/skills/extended/other/makepad-dsl/SKILL.md +196 -0
  1989. package/templates/skills/extended/other/makepad-event-action/SKILL.md +292 -0
  1990. package/templates/skills/extended/other/makepad-font/SKILL.md +272 -0
  1991. package/templates/skills/extended/other/makepad-layout/SKILL.md +218 -0
  1992. package/templates/skills/extended/other/makepad-platform/SKILL.md +204 -0
  1993. package/templates/skills/extended/other/makepad-reference/SKILL.md +94 -0
  1994. package/templates/skills/extended/other/makepad-shaders/SKILL.md +232 -0
  1995. package/templates/skills/extended/other/makepad-splash/SKILL.md +255 -0
  1996. package/templates/skills/extended/other/makepad-widgets/SKILL.md +253 -0
  1997. package/templates/skills/extended/other/manifest/SKILL.md +173 -0
  1998. package/templates/skills/extended/other/market-sizing-analysis/SKILL.md +27 -28
  1999. package/templates/skills/extended/other/matematico-tao/SKILL.md +716 -0
  2000. package/templates/skills/extended/other/matematico-tao/references/auri-analysis.md +232 -0
  2001. package/templates/skills/extended/other/matematico-tao/references/complexity-patterns.md +289 -0
  2002. package/templates/skills/extended/other/matematico-tao/references/concurrency-models.md +304 -0
  2003. package/templates/skills/extended/other/matematico-tao/references/information-theory.md +252 -0
  2004. package/templates/skills/extended/other/matematico-tao/scripts/__pycache__/complexity_analyzer.cpython-312.pyc +0 -0
  2005. package/templates/skills/extended/other/matematico-tao/scripts/__pycache__/dependency_graph.cpython-312.pyc +0 -0
  2006. package/templates/skills/extended/other/matematico-tao/scripts/complexity_analyzer.py +544 -0
  2007. package/templates/skills/extended/other/matematico-tao/scripts/dependency_graph.py +538 -0
  2008. package/templates/skills/extended/other/matplotlib/SKILL.md +404 -0
  2009. package/templates/skills/extended/other/mental-health-analyzer/SKILL.md +1023 -0
  2010. package/templates/skills/extended/other/molykit/SKILL.md +406 -0
  2011. package/templates/skills/extended/other/monetization/SKILL.md +450 -0
  2012. package/templates/skills/extended/other/mtls-configuration/SKILL.md +27 -23
  2013. package/templates/skills/extended/other/multi-advisor/SKILL.md +321 -0
  2014. package/templates/skills/extended/other/n8n-code-javascript/SKILL.md +749 -0
  2015. package/templates/skills/extended/other/n8n-expression-syntax/SKILL.md +566 -0
  2016. package/templates/skills/extended/other/n8n-validation-expert/SKILL.md +735 -0
  2017. package/templates/skills/extended/other/n8n-workflow-patterns/SKILL.md +457 -0
  2018. package/templates/skills/extended/other/native-data-fetching/SKILL.md +553 -0
  2019. package/templates/skills/extended/other/nerdzao-elite/SKILL.md +78 -0
  2020. package/templates/skills/extended/other/nerdzao-elite-gemini-high/SKILL.md +97 -0
  2021. package/templates/skills/extended/other/networkx/SKILL.md +484 -0
  2022. package/templates/skills/extended/other/new-rails-project/SKILL.md +100 -0
  2023. package/templates/skills/extended/other/nutrition-analyzer/SKILL.md +817 -0
  2024. package/templates/skills/extended/other/occupational-health-analyzer/SKILL.md +428 -0
  2025. package/templates/skills/extended/other/odoo-accounting-setup/SKILL.md +151 -0
  2026. package/templates/skills/extended/other/odoo-automated-tests/SKILL.md +174 -0
  2027. package/templates/skills/extended/other/odoo-backup-strategy/SKILL.md +158 -0
  2028. package/templates/skills/extended/other/odoo-docker-deployment/SKILL.md +185 -0
  2029. package/templates/skills/extended/other/odoo-ecommerce-configurator/SKILL.md +179 -0
  2030. package/templates/skills/extended/other/odoo-edi-connector/SKILL.md +157 -0
  2031. package/templates/skills/extended/other/odoo-hr-payroll-setup/SKILL.md +152 -0
  2032. package/templates/skills/extended/other/odoo-inventory-optimizer/SKILL.md +157 -0
  2033. package/templates/skills/extended/other/odoo-l10n-compliance/SKILL.md +151 -0
  2034. package/templates/skills/extended/other/odoo-manufacturing-advisor/SKILL.md +145 -0
  2035. package/templates/skills/extended/other/odoo-migration-helper/SKILL.md +148 -0
  2036. package/templates/skills/extended/other/odoo-module-developer/SKILL.md +148 -0
  2037. package/templates/skills/extended/other/odoo-orm-expert/SKILL.md +131 -0
  2038. package/templates/skills/extended/other/odoo-performance-tuner/SKILL.md +151 -0
  2039. package/templates/skills/extended/other/odoo-project-timesheet/SKILL.md +162 -0
  2040. package/templates/skills/extended/other/odoo-purchase-workflow/SKILL.md +150 -0
  2041. package/templates/skills/extended/other/odoo-qweb-templates/SKILL.md +137 -0
  2042. package/templates/skills/extended/other/odoo-rpc-api/SKILL.md +149 -0
  2043. package/templates/skills/extended/other/odoo-sales-crm-expert/SKILL.md +155 -0
  2044. package/templates/skills/extended/other/odoo-security-rules/SKILL.md +142 -0
  2045. package/templates/skills/extended/other/odoo-shopify-integration/SKILL.md +145 -0
  2046. package/templates/skills/extended/other/odoo-upgrade-advisor/SKILL.md +165 -0
  2047. package/templates/skills/extended/other/odoo-woocommerce-bridge/SKILL.md +175 -0
  2048. package/templates/skills/extended/other/odoo-xml-views-builder/SKILL.md +148 -0
  2049. package/templates/skills/extended/other/office-productivity/SKILL.md +264 -0
  2050. package/templates/skills/extended/other/oral-health-analyzer/SKILL.md +567 -0
  2051. package/templates/skills/extended/other/os-scripting/SKILL.md +474 -0
  2052. package/templates/skills/extended/other/oss-hunter/SKILL.md +29 -24
  2053. package/templates/skills/extended/other/oss-hunter/bin/__pycache__/hunter.cpython-312.pyc +0 -0
  2054. package/templates/skills/extended/other/pakistan-payments-stack/SKILL.md +216 -0
  2055. package/templates/skills/extended/other/performance-optimizer/README.md +20 -0
  2056. package/templates/skills/extended/other/performance-optimizer/SKILL.md +435 -0
  2057. package/templates/skills/extended/other/pipecat-friday-agent/SKILL.md +129 -0
  2058. package/templates/skills/extended/other/pipecat-friday-agent/scripts/__pycache__/friday_agent.cpython-312.pyc +0 -0
  2059. package/templates/skills/extended/other/pipecat-friday-agent/scripts/friday_agent.py +146 -0
  2060. package/templates/skills/extended/other/playwright-java/BasePage.java +137 -0
  2061. package/templates/skills/extended/other/playwright-java/BaseTest.java +126 -0
  2062. package/templates/skills/extended/other/playwright-java/SKILL.md +435 -0
  2063. package/templates/skills/extended/other/playwright-java/assertions.md +167 -0
  2064. package/templates/skills/extended/other/playwright-java/config.md +240 -0
  2065. package/templates/skills/extended/other/playwright-java/fixtures.md +263 -0
  2066. package/templates/skills/extended/other/playwright-java/page-objects.md +224 -0
  2067. package/templates/skills/extended/other/plotly/SKILL.md +306 -0
  2068. package/templates/skills/extended/other/polars/SKILL.md +430 -0
  2069. package/templates/skills/extended/other/postgresql-optimization/SKILL.md +220 -0
  2070. package/templates/skills/extended/other/pr-writer/SKILL.md +225 -0
  2071. package/templates/skills/extended/other/product-design/SKILL.md +404 -0
  2072. package/templates/skills/extended/other/product-inventor/SKILL.md +707 -0
  2073. package/templates/skills/extended/other/product-manager/SKILL.md +92 -0
  2074. package/templates/skills/extended/other/production-scheduling/SKILL.md +258 -0
  2075. package/templates/skills/extended/other/production-scheduling/references/communication-templates.md +503 -0
  2076. package/templates/skills/extended/other/production-scheduling/references/decision-frameworks.md +867 -0
  2077. package/templates/skills/extended/other/production-scheduling/references/edge-cases.md +611 -0
  2078. package/templates/skills/extended/other/professional-proofreader/SKILL.md +148 -0
  2079. package/templates/skills/extended/other/professional-proofreader/references/file-processing-mode.md +44 -0
  2080. package/templates/skills/extended/other/professional-proofreader/references/inline-text-mode.md +93 -0
  2081. package/templates/skills/extended/other/progressive-estimation/SKILL.md +134 -0
  2082. package/templates/skills/extended/other/project-development/SKILL.md +387 -0
  2083. package/templates/skills/extended/other/pubmed-database/SKILL.md +503 -0
  2084. package/templates/skills/extended/other/python-fastapi-development/SKILL.md +261 -0
  2085. package/templates/skills/extended/other/qiskit/SKILL.md +322 -0
  2086. package/templates/skills/extended/other/quality-nonconformance/SKILL.md +279 -0
  2087. package/templates/skills/extended/other/quality-nonconformance/references/communication-templates.md +711 -0
  2088. package/templates/skills/extended/other/quality-nonconformance/references/decision-frameworks.md +769 -0
  2089. package/templates/skills/extended/other/quality-nonconformance/references/edge-cases.md +588 -0
  2090. package/templates/skills/extended/other/react-nextjs-development/SKILL.md +274 -0
  2091. package/templates/skills/extended/other/rehabilitation-analyzer/SKILL.md +678 -0
  2092. package/templates/skills/extended/other/remotion/SKILL.md +442 -0
  2093. package/templates/skills/extended/other/returns-reverse-logistics/SKILL.md +260 -0
  2094. package/templates/skills/extended/other/returns-reverse-logistics/references/communication-templates.md +532 -0
  2095. package/templates/skills/extended/other/returns-reverse-logistics/references/decision-frameworks.md +823 -0
  2096. package/templates/skills/extended/other/returns-reverse-logistics/references/edge-cases.md +635 -0
  2097. package/templates/skills/extended/other/reverse-engineer/SKILL.md +27 -30
  2098. package/templates/skills/extended/other/risk-manager/SKILL.md +27 -27
  2099. package/templates/skills/extended/other/robius-app-architecture/SKILL.md +374 -0
  2100. package/templates/skills/extended/other/robius-event-action/SKILL.md +401 -0
  2101. package/templates/skills/extended/other/robius-matrix-integration/SKILL.md +470 -0
  2102. package/templates/skills/extended/other/robius-state-management/SKILL.md +453 -0
  2103. package/templates/skills/extended/other/robius-widget-patterns/SKILL.md +468 -0
  2104. package/templates/skills/extended/other/saas-mvp-launcher/SKILL.md +264 -0
  2105. package/templates/skills/extended/other/sam-altman/SKILL.md +1129 -0
  2106. package/templates/skills/extended/other/sankhya-dashboard-html-jsp-custom-best-pratices/README.md +47 -0
  2107. package/templates/skills/extended/other/sankhya-dashboard-html-jsp-custom-best-pratices/SKILL.md +481 -0
  2108. package/templates/skills/extended/other/scanpy/SKILL.md +429 -0
  2109. package/templates/skills/extended/other/scientific-writing/SKILL.md +758 -0
  2110. package/templates/skills/extended/other/scikit-learn/SKILL.md +566 -0
  2111. package/templates/skills/extended/other/seaborn/SKILL.md +716 -0
  2112. package/templates/skills/extended/other/security/aws-compliance-checker/SKILL.md +567 -0
  2113. package/templates/skills/extended/other/security/aws-iam-best-practices/SKILL.md +448 -0
  2114. package/templates/skills/extended/other/security/aws-secrets-rotation/SKILL.md +516 -0
  2115. package/templates/skills/extended/other/security/aws-security-audit/SKILL.md +420 -0
  2116. package/templates/skills/extended/other/security-audit/SKILL.md +263 -0
  2117. package/templates/skills/extended/other/seek-and-analyze-video/SKILL.md +141 -0
  2118. package/templates/skills/extended/other/semgrep-rule-creator/SKILL.md +218 -0
  2119. package/templates/skills/extended/other/semgrep-rule-variant-creator/SKILL.md +249 -0
  2120. package/templates/skills/extended/other/senior-frontend/SKILL.md +537 -0
  2121. package/templates/skills/extended/other/senior-frontend/references/frontend_best_practices.md +806 -0
  2122. package/templates/skills/extended/other/senior-frontend/references/nextjs_optimization_guide.md +724 -0
  2123. package/templates/skills/extended/other/senior-frontend/references/react_patterns.md +746 -0
  2124. package/templates/skills/extended/other/senior-frontend/scripts/__pycache__/bundle_analyzer.cpython-312.pyc +0 -0
  2125. package/templates/skills/extended/other/senior-frontend/scripts/__pycache__/component_generator.cpython-312.pyc +0 -0
  2126. package/templates/skills/extended/other/senior-frontend/scripts/__pycache__/frontend_scaffolder.cpython-312.pyc +0 -0
  2127. package/templates/skills/extended/other/senior-frontend/scripts/bundle_analyzer.py +407 -0
  2128. package/templates/skills/extended/other/senior-frontend/scripts/component_generator.py +329 -0
  2129. package/templates/skills/extended/other/senior-frontend/scripts/frontend_scaffolder.py +1005 -0
  2130. package/templates/skills/extended/other/seo-forensic-incident-response/SKILL.md +304 -0
  2131. package/templates/skills/extended/other/sexual-health-analyzer/SKILL.md +1160 -0
  2132. package/templates/skills/extended/other/shadcn/SKILL.md +296 -0
  2133. package/templates/skills/extended/other/shadcn/agents/openai.yml +5 -0
  2134. package/templates/skills/extended/other/shadcn/assets/shadcn-small.png +0 -0
  2135. package/templates/skills/extended/other/shadcn/assets/shadcn.png +0 -0
  2136. package/templates/skills/extended/other/shadcn/cli.md +255 -0
  2137. package/templates/skills/extended/other/shadcn/customization.md +202 -0
  2138. package/templates/skills/extended/other/shadcn/evals/evals.json +47 -0
  2139. package/templates/skills/extended/other/shadcn/mcp.md +94 -0
  2140. package/templates/skills/extended/other/shadcn/rules/base-vs-radix.md +306 -0
  2141. package/templates/skills/extended/other/shadcn/rules/composition.md +195 -0
  2142. package/templates/skills/extended/other/shadcn/rules/forms.md +192 -0
  2143. package/templates/skills/extended/other/shadcn/rules/icons.md +101 -0
  2144. package/templates/skills/extended/other/shadcn/rules/styling.md +162 -0
  2145. package/templates/skills/extended/other/shader-programming-glsl/SKILL.md +168 -0
  2146. package/templates/skills/extended/other/shopify-development/SKILL.md +32 -25
  2147. package/templates/skills/extended/other/skill-check/SKILL.md +162 -0
  2148. package/templates/skills/extended/other/skill-improver/SKILL.md +191 -0
  2149. package/templates/skills/extended/other/skill-installer/SKILL.md +341 -0
  2150. package/templates/skills/extended/other/skill-installer/references/known-locations.md +44 -0
  2151. package/templates/skills/extended/other/skill-installer/scripts/__pycache__/detect_skills.cpython-312.pyc +0 -0
  2152. package/templates/skills/extended/other/skill-installer/scripts/__pycache__/install_skill.cpython-312.pyc +0 -0
  2153. package/templates/skills/extended/other/skill-installer/scripts/__pycache__/package_skill.cpython-312.pyc +0 -0
  2154. package/templates/skills/extended/other/skill-installer/scripts/__pycache__/validate_skill.cpython-312.pyc +0 -0
  2155. package/templates/skills/extended/other/skill-installer/scripts/detect_skills.py +318 -0
  2156. package/templates/skills/extended/other/skill-installer/scripts/install_skill.py +1708 -0
  2157. package/templates/skills/extended/other/skill-installer/scripts/package_skill.py +417 -0
  2158. package/templates/skills/extended/other/skill-installer/scripts/requirements.txt +1 -0
  2159. package/templates/skills/extended/other/skill-installer/scripts/validate_skill.py +430 -0
  2160. package/templates/skills/extended/other/skill-router/SKILL.md +295 -0
  2161. package/templates/skills/extended/other/skill-scanner/SKILL.md +247 -0
  2162. package/templates/skills/extended/other/skill-sentinel/SKILL.md +327 -0
  2163. package/templates/skills/extended/other/skill-sentinel/references/analysis_criteria.md +96 -0
  2164. package/templates/skills/extended/other/skill-sentinel/references/schema.md +107 -0
  2165. package/templates/skills/extended/other/skill-sentinel/references/security_patterns.md +81 -0
  2166. package/templates/skills/extended/other/skill-sentinel/references/skill_template.md +118 -0
  2167. package/templates/skills/extended/other/skill-sentinel/scripts/__pycache__/config.cpython-312.pyc +0 -0
  2168. package/templates/skills/extended/other/skill-sentinel/scripts/__pycache__/cost_optimizer.cpython-312.pyc +0 -0
  2169. package/templates/skills/extended/other/skill-sentinel/scripts/__pycache__/db.cpython-312.pyc +0 -0
  2170. package/templates/skills/extended/other/skill-sentinel/scripts/__pycache__/governance.cpython-312.pyc +0 -0
  2171. package/templates/skills/extended/other/skill-sentinel/scripts/__pycache__/recommender.cpython-312.pyc +0 -0
  2172. package/templates/skills/extended/other/skill-sentinel/scripts/__pycache__/report_generator.cpython-312.pyc +0 -0
  2173. package/templates/skills/extended/other/skill-sentinel/scripts/__pycache__/run_audit.cpython-312.pyc +0 -0
  2174. package/templates/skills/extended/other/skill-sentinel/scripts/__pycache__/scanner.cpython-312.pyc +0 -0
  2175. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/__init__.py +13 -0
  2176. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/__pycache__/__init__.cpython-312.pyc +0 -0
  2177. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/__pycache__/code_quality.cpython-312.pyc +0 -0
  2178. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/__pycache__/cross_skill.cpython-312.pyc +0 -0
  2179. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/__pycache__/dependencies.cpython-312.pyc +0 -0
  2180. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/__pycache__/documentation.cpython-312.pyc +0 -0
  2181. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/__pycache__/governance_audit.cpython-312.pyc +0 -0
  2182. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/__pycache__/performance.cpython-312.pyc +0 -0
  2183. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/__pycache__/security.cpython-312.pyc +0 -0
  2184. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/code_quality.py +247 -0
  2185. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/cross_skill.py +134 -0
  2186. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/dependencies.py +121 -0
  2187. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/documentation.py +189 -0
  2188. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/governance_audit.py +153 -0
  2189. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/performance.py +164 -0
  2190. package/templates/skills/extended/other/skill-sentinel/scripts/analyzers/security.py +189 -0
  2191. package/templates/skills/extended/other/skill-sentinel/scripts/config.py +158 -0
  2192. package/templates/skills/extended/other/skill-sentinel/scripts/cost_optimizer.py +146 -0
  2193. package/templates/skills/extended/other/skill-sentinel/scripts/db.py +354 -0
  2194. package/templates/skills/extended/other/skill-sentinel/scripts/governance.py +58 -0
  2195. package/templates/skills/extended/other/skill-sentinel/scripts/recommender.py +228 -0
  2196. package/templates/skills/extended/other/skill-sentinel/scripts/report_generator.py +224 -0
  2197. package/templates/skills/extended/other/skill-sentinel/scripts/requirements.txt +1 -0
  2198. package/templates/skills/extended/other/skill-sentinel/scripts/run_audit.py +290 -0
  2199. package/templates/skills/extended/other/skill-sentinel/scripts/scanner.py +271 -0
  2200. package/templates/skills/extended/other/skill-writer/SKILL.md +160 -0
  2201. package/templates/skills/extended/other/skin-health-analyzer/SKILL.md +754 -0
  2202. package/templates/skills/extended/other/sleep-analyzer/SKILL.md +815 -0
  2203. package/templates/skills/extended/other/social-orchestrator/SKILL.md +341 -0
  2204. package/templates/skills/extended/other/spec-to-code-compliance/SKILL.md +407 -0
  2205. package/templates/skills/extended/other/speckit-updater/SKILL.md +207 -0
  2206. package/templates/skills/extended/other/speed/SKILL.md +77 -0
  2207. package/templates/skills/extended/other/spline-3d-integration/SKILL.md +126 -0
  2208. package/templates/skills/extended/other/spline-3d-integration/examples/interactive-scene.tsx +198 -0
  2209. package/templates/skills/extended/other/spline-3d-integration/examples/react-spline-wrapper.tsx +124 -0
  2210. package/templates/skills/extended/other/spline-3d-integration/examples/vanilla-embed.html +146 -0
  2211. package/templates/skills/extended/other/spline-3d-integration/guides/COMMON_PROBLEMS.md +262 -0
  2212. package/templates/skills/extended/other/spline-3d-integration/guides/PERFORMANCE.md +163 -0
  2213. package/templates/skills/extended/other/spline-3d-integration/guides/REACT_INTEGRATION.md +212 -0
  2214. package/templates/skills/extended/other/spline-3d-integration/guides/VANILLA_INTEGRATION.md +203 -0
  2215. package/templates/skills/extended/other/spline-3d-integration/spline-3d-integration-skill (1).zip +0 -0
  2216. package/templates/skills/extended/other/sred-project-organizer/SKILL.md +175 -0
  2217. package/templates/skills/extended/other/sred-work-summary/SKILL.md +186 -0
  2218. package/templates/skills/extended/other/stability-ai/SKILL.md +260 -0
  2219. package/templates/skills/extended/other/stability-ai/references/api-reference.md +246 -0
  2220. package/templates/skills/extended/other/stability-ai/references/prompt-engineering.md +232 -0
  2221. package/templates/skills/extended/other/stability-ai/references/setup-guide.md +94 -0
  2222. package/templates/skills/extended/other/stability-ai/scripts/__pycache__/config.cpython-312.pyc +0 -0
  2223. package/templates/skills/extended/other/stability-ai/scripts/__pycache__/generate.cpython-312.pyc +0 -0
  2224. package/templates/skills/extended/other/stability-ai/scripts/__pycache__/styles.cpython-312.pyc +0 -0
  2225. package/templates/skills/extended/other/stability-ai/scripts/config.py +266 -0
  2226. package/templates/skills/extended/other/stability-ai/scripts/generate.py +687 -0
  2227. package/templates/skills/extended/other/stability-ai/scripts/requirements.txt +4 -0
  2228. package/templates/skills/extended/other/stability-ai/scripts/styles.py +174 -0
  2229. package/templates/skills/extended/other/startup-analyst/SKILL.md +27 -30
  2230. package/templates/skills/extended/other/startup-financial-modeling/SKILL.md +30 -27
  2231. package/templates/skills/extended/other/startup-metrics-framework/SKILL.md +27 -28
  2232. package/templates/skills/extended/other/statsmodels/SKILL.md +653 -0
  2233. package/templates/skills/extended/other/steve-jobs/SKILL.md +644 -0
  2234. package/templates/skills/extended/other/superpowers-lab/SKILL.md +26 -24
  2235. package/templates/skills/extended/other/superpowers-lab/using-git-worktrees/SKILL.md +261 -0
  2236. package/templates/skills/extended/other/superpowers-lab/using-superpowers/SKILL.md +162 -0
  2237. package/templates/skills/extended/other/superpowers-lab/verification-before-completion/SKILL.md +186 -0
  2238. package/templates/skills/extended/other/superpowers-lab/writing-skills/SKILL.md +702 -0
  2239. package/templates/skills/extended/other/supply-chain-risk-auditor/SKILL.md +117 -0
  2240. package/templates/skills/extended/other/sympy/SKILL.md +539 -0
  2241. package/templates/skills/extended/other/tanstack-query-expert/SKILL.md +288 -0
  2242. package/templates/skills/extended/other/task-intelligence/SKILL.md +354 -0
  2243. package/templates/skills/extended/other/task-intelligence/references/problem-catalog.md +58 -0
  2244. package/templates/skills/extended/other/task-intelligence/references/time-patterns.md +61 -0
  2245. package/templates/skills/extended/other/tcm-constitution-analyzer/SKILL.md +706 -0
  2246. package/templates/skills/extended/other/telegram/SKILL.md +622 -0
  2247. package/templates/skills/extended/other/telegram/assets/boilerplate/nodejs/.env.example +10 -0
  2248. package/templates/skills/extended/other/telegram/assets/boilerplate/nodejs/package.json +23 -0
  2249. package/templates/skills/extended/other/telegram/assets/boilerplate/nodejs/src/bot-client.ts +86 -0
  2250. package/templates/skills/extended/other/telegram/assets/boilerplate/nodejs/src/handlers.ts +79 -0
  2251. package/templates/skills/extended/other/telegram/assets/boilerplate/nodejs/src/index.ts +32 -0
  2252. package/templates/skills/extended/other/telegram/assets/boilerplate/nodejs/tsconfig.json +17 -0
  2253. package/templates/skills/extended/other/telegram/assets/boilerplate/python/.env.example +10 -0
  2254. package/templates/skills/extended/other/telegram/assets/boilerplate/python/__pycache__/bot.cpython-312.pyc +0 -0
  2255. package/templates/skills/extended/other/telegram/assets/boilerplate/python/__pycache__/webhook_server.cpython-312.pyc +0 -0
  2256. package/templates/skills/extended/other/telegram/assets/boilerplate/python/bot.py +122 -0
  2257. package/templates/skills/extended/other/telegram/assets/boilerplate/python/requirements.txt +4 -0
  2258. package/templates/skills/extended/other/telegram/assets/boilerplate/python/webhook_server.py +110 -0
  2259. package/templates/skills/extended/other/telegram/assets/examples/inline-keyboard.json +74 -0
  2260. package/templates/skills/extended/other/telegram/assets/examples/webhook-payloads.json +159 -0
  2261. package/templates/skills/extended/other/telegram/references/advanced-features.md +355 -0
  2262. package/templates/skills/extended/other/telegram/references/api-reference.md +275 -0
  2263. package/templates/skills/extended/other/telegram/references/chat-management.md +303 -0
  2264. package/templates/skills/extended/other/telegram/references/webhook-setup.md +307 -0
  2265. package/templates/skills/extended/other/telegram/scripts/__pycache__/send_message.cpython-312.pyc +0 -0
  2266. package/templates/skills/extended/other/telegram/scripts/__pycache__/setup_project.cpython-312.pyc +0 -0
  2267. package/templates/skills/extended/other/telegram/scripts/__pycache__/test_bot.cpython-312.pyc +0 -0
  2268. package/templates/skills/extended/other/telegram/scripts/send_message.py +143 -0
  2269. package/templates/skills/extended/other/telegram/scripts/setup_project.py +103 -0
  2270. package/templates/skills/extended/other/telegram/scripts/test_bot.py +144 -0
  2271. package/templates/skills/extended/other/temporal-golang-pro/SKILL.md +262 -0
  2272. package/templates/skills/extended/other/temporal-golang-pro/resources/implementation-playbook.md +242 -0
  2273. package/templates/skills/extended/other/temporal-golang-pro/resources/testing-strategies.md +145 -0
  2274. package/templates/skills/extended/other/terraform-aws-modules/SKILL.md +124 -0
  2275. package/templates/skills/extended/other/terraform-infrastructure/SKILL.md +209 -0
  2276. package/templates/skills/extended/other/testing-qa/SKILL.md +276 -0
  2277. package/templates/skills/extended/other/threejs-animation/SKILL.md +594 -0
  2278. package/templates/skills/extended/other/threejs-fundamentals/SKILL.md +530 -0
  2279. package/templates/skills/extended/other/threejs-geometry/SKILL.md +594 -0
  2280. package/templates/skills/extended/other/threejs-interaction/SKILL.md +702 -0
  2281. package/templates/skills/extended/other/threejs-lighting/SKILL.md +523 -0
  2282. package/templates/skills/extended/other/threejs-loaders/SKILL.md +665 -0
  2283. package/templates/skills/extended/other/threejs-materials/SKILL.md +569 -0
  2284. package/templates/skills/extended/other/threejs-postprocessing/SKILL.md +644 -0
  2285. package/templates/skills/extended/other/threejs-shaders/SKILL.md +688 -0
  2286. package/templates/skills/extended/other/threejs-textures/SKILL.md +670 -0
  2287. package/templates/skills/extended/other/track-management/SKILL.md +27 -27
  2288. package/templates/skills/extended/other/travel-health-analyzer/SKILL.md +463 -0
  2289. package/templates/skills/extended/other/typescript-expert/SKILL.md +29 -31
  2290. package/templates/skills/extended/other/typescript-expert/scripts/__pycache__/ts_diagnostic.cpython-312.pyc +0 -0
  2291. package/templates/skills/extended/other/uncle-bob-craft/README.md +12 -0
  2292. package/templates/skills/extended/other/uncle-bob-craft/SKILL.md +210 -0
  2293. package/templates/skills/extended/other/uncle-bob-craft/examples/code-review-checklist.md +55 -0
  2294. package/templates/skills/extended/other/uncle-bob-craft/reference.md +146 -0
  2295. package/templates/skills/extended/other/uncle-bob-craft/references/clean-agile.md +32 -0
  2296. package/templates/skills/extended/other/uncle-bob-craft/references/clean-architecture.md +56 -0
  2297. package/templates/skills/extended/other/uncle-bob-craft/references/clean-coder.md +34 -0
  2298. package/templates/skills/extended/other/uncle-bob-craft/references/design-patterns.md +32 -0
  2299. package/templates/skills/extended/other/uniprot-database/SKILL.md +238 -0
  2300. package/templates/skills/extended/other/unsplash-integration/SKILL.md +78 -0
  2301. package/templates/skills/extended/other/variant-analysis/SKILL.md +192 -0
  2302. package/templates/skills/extended/other/varlock/SKILL.md +480 -0
  2303. package/templates/skills/extended/other/vercel-ai-sdk-expert/SKILL.md +268 -0
  2304. package/templates/skills/extended/other/vexor/SKILL.md +25 -23
  2305. package/templates/skills/extended/other/vexor-cli/SKILL.md +121 -0
  2306. package/templates/skills/extended/other/vibe-code-auditor/SKILL.md +385 -0
  2307. package/templates/skills/extended/other/videodb/SKILL.md +418 -0
  2308. package/templates/skills/extended/other/videodb/reference/api-reference.md +548 -0
  2309. package/templates/skills/extended/other/videodb/reference/capture-reference.md +386 -0
  2310. package/templates/skills/extended/other/videodb/reference/capture.md +101 -0
  2311. package/templates/skills/extended/other/videodb/reference/editor.md +434 -0
  2312. package/templates/skills/extended/other/videodb/reference/generative.md +321 -0
  2313. package/templates/skills/extended/other/videodb/reference/rtstream-reference.md +551 -0
  2314. package/templates/skills/extended/other/videodb/reference/rtstream.md +65 -0
  2315. package/templates/skills/extended/other/videodb/reference/search.md +230 -0
  2316. package/templates/skills/extended/other/videodb/reference/streaming.md +339 -0
  2317. package/templates/skills/extended/other/videodb/reference/use-cases.md +118 -0
  2318. package/templates/skills/extended/other/videodb/scripts/__pycache__/ws_listener.cpython-312.pyc +0 -0
  2319. package/templates/skills/extended/other/videodb/scripts/ws_listener.py +204 -0
  2320. package/templates/skills/extended/other/videodb-skills/SKILL.md +161 -0
  2321. package/templates/skills/extended/other/vizcom/SKILL.md +83 -0
  2322. package/templates/skills/extended/other/warren-buffett/SKILL.md +657 -0
  2323. package/templates/skills/extended/other/web-scraper/SKILL.md +798 -0
  2324. package/templates/skills/extended/other/web-scraper/references/data-transforms.md +397 -0
  2325. package/templates/skills/extended/other/web-scraper/references/extraction-patterns.md +475 -0
  2326. package/templates/skills/extended/other/web-scraper/references/output-templates.md +481 -0
  2327. package/templates/skills/extended/other/web-security-testing/SKILL.md +229 -0
  2328. package/templates/skills/extended/other/weightloss-analyzer/SKILL.md +362 -0
  2329. package/templates/skills/extended/other/wellally-tech/SKILL.md +726 -0
  2330. package/templates/skills/extended/other/whatsapp-cloud-api/SKILL.md +534 -0
  2331. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/nodejs/.env.example +20 -0
  2332. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/nodejs/package.json +22 -0
  2333. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/nodejs/src/index.ts +125 -0
  2334. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/nodejs/src/template-manager.ts +67 -0
  2335. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/nodejs/src/types.ts +216 -0
  2336. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/nodejs/src/webhook-handler.ts +173 -0
  2337. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/nodejs/src/whatsapp-client.ts +193 -0
  2338. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/nodejs/tsconfig.json +17 -0
  2339. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/python/.env.example +20 -0
  2340. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/python/__pycache__/app.cpython-312.pyc +0 -0
  2341. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/python/__pycache__/template_manager.cpython-312.pyc +0 -0
  2342. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/python/__pycache__/webhook_handler.cpython-312.pyc +0 -0
  2343. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/python/__pycache__/whatsapp_client.cpython-312.pyc +0 -0
  2344. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/python/app.py +115 -0
  2345. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/python/requirements.txt +4 -0
  2346. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/python/template_manager.py +100 -0
  2347. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/python/webhook_handler.py +132 -0
  2348. package/templates/skills/extended/other/whatsapp-cloud-api/assets/boilerplate/python/whatsapp_client.py +219 -0
  2349. package/templates/skills/extended/other/whatsapp-cloud-api/assets/examples/flow-example.json +170 -0
  2350. package/templates/skills/extended/other/whatsapp-cloud-api/assets/examples/interactive-menu.json +186 -0
  2351. package/templates/skills/extended/other/whatsapp-cloud-api/assets/examples/template-messages.json +173 -0
  2352. package/templates/skills/extended/other/whatsapp-cloud-api/assets/examples/webhook-payloads.json +240 -0
  2353. package/templates/skills/extended/other/whatsapp-cloud-api/references/advanced-features.md +546 -0
  2354. package/templates/skills/extended/other/whatsapp-cloud-api/references/api-reference.md +566 -0
  2355. package/templates/skills/extended/other/whatsapp-cloud-api/references/automation-patterns.md +690 -0
  2356. package/templates/skills/extended/other/whatsapp-cloud-api/references/compliance.md +404 -0
  2357. package/templates/skills/extended/other/whatsapp-cloud-api/references/message-types.md +1639 -0
  2358. package/templates/skills/extended/other/whatsapp-cloud-api/references/setup-guide.md +692 -0
  2359. package/templates/skills/extended/other/whatsapp-cloud-api/references/template-management.md +570 -0
  2360. package/templates/skills/extended/other/whatsapp-cloud-api/references/webhook-setup.md +603 -0
  2361. package/templates/skills/extended/other/whatsapp-cloud-api/scripts/__pycache__/send_test_message.cpython-312.pyc +0 -0
  2362. package/templates/skills/extended/other/whatsapp-cloud-api/scripts/__pycache__/setup_project.cpython-312.pyc +0 -0
  2363. package/templates/skills/extended/other/whatsapp-cloud-api/scripts/__pycache__/validate_config.cpython-312.pyc +0 -0
  2364. package/templates/skills/extended/other/whatsapp-cloud-api/scripts/send_test_message.py +137 -0
  2365. package/templates/skills/extended/other/whatsapp-cloud-api/scripts/setup_project.py +118 -0
  2366. package/templates/skills/extended/other/whatsapp-cloud-api/scripts/validate_config.py +190 -0
  2367. package/templates/skills/extended/other/wordpress/SKILL.md +364 -0
  2368. package/templates/skills/extended/other/wordpress-plugin-development/SKILL.md +249 -0
  2369. package/templates/skills/extended/other/wordpress-theme-development/SKILL.md +234 -0
  2370. package/templates/skills/extended/other/wordpress-woocommerce-development/SKILL.md +233 -0
  2371. package/templates/skills/extended/other/x-twitter-scraper/SKILL.md +171 -0
  2372. package/templates/skills/extended/other/yann-lecun/SKILL.md +1516 -0
  2373. package/templates/skills/extended/other/yann-lecun-debate/SKILL.md +481 -0
  2374. package/templates/skills/extended/other/yann-lecun-filosofia/SKILL.md +456 -0
  2375. package/templates/skills/extended/other/yann-lecun-tecnico/SKILL.md +561 -0
  2376. package/templates/skills/extended/other/yes-md/SKILL.md +272 -0
  2377. package/templates/skills/extended/other/zeroize-audit/SKILL.md +421 -0
  2378. package/templates/skills/extended/other/zod-validation-expert/SKILL.md +313 -0
  2379. package/templates/skills/extended/security/attack-tree-construction/SKILL.md +34 -22
  2380. package/templates/skills/extended/security/cc-skill-security-review/SKILL.md +37 -24
  2381. package/templates/skills/extended/security/codebase-cleanup-deps-audit/SKILL.md +34 -22
  2382. package/templates/skills/extended/security/dependency-management-deps-audit/SKILL.md +34 -22
  2383. package/templates/skills/extended/security/ethical-hacking-methodology/SKILL.md +38 -25
  2384. package/templates/skills/extended/security/find-bugs/SKILL.md +31 -33
  2385. package/templates/skills/extended/security/fix-review/SKILL.md +32 -22
  2386. package/templates/skills/extended/security/frontend-mobile-security-xss-scan/SKILL.md +33 -21
  2387. package/templates/skills/extended/security/frontend-security-coder/SKILL.md +34 -27
  2388. package/templates/skills/extended/security/laravel-security-audit/SKILL.md +37 -20
  2389. package/templates/skills/extended/security/mobile-security-coder/SKILL.md +34 -27
  2390. package/templates/skills/extended/security/pci-compliance/SKILL.md +34 -22
  2391. package/templates/skills/extended/security/pentest-checklist/SKILL.md +38 -25
  2392. package/templates/skills/extended/security/pentest-commands/SKILL.md +38 -25
  2393. package/templates/skills/extended/security/production-code-audit/SKILL.md +33 -21
  2394. package/templates/skills/extended/security/red-team-tools/SKILL.md +38 -25
  2395. package/templates/skills/extended/security/sast-configuration/SKILL.md +43 -31
  2396. package/templates/skills/extended/security/scanning-tools/SKILL.md +38 -25
  2397. package/templates/skills/extended/security/security-auditor/SKILL.md +34 -29
  2398. package/templates/skills/extended/security/security-compliance-compliance-check/SKILL.md +34 -22
  2399. package/templates/skills/extended/security/security-requirement-extraction/SKILL.md +34 -22
  2400. package/templates/skills/extended/security/security-scanning-security-dependencies/SKILL.md +34 -22
  2401. package/templates/skills/extended/security/security-scanning-security-hardening/SKILL.md +33 -21
  2402. package/templates/skills/extended/security/security-scanning-security-sast/SKILL.md +37 -27
  2403. package/templates/skills/extended/security/seo-audit/SKILL.md +37 -27
  2404. package/templates/skills/extended/security/solidity-security/SKILL.md +34 -22
  2405. package/templates/skills/extended/security/ssh-penetration-testing/SKILL.md +38 -25
  2406. package/templates/skills/extended/security/threat-mitigation-mapping/SKILL.md +34 -22
  2407. package/templates/skills/extended/security/threat-modeling-expert/SKILL.md +34 -22
  2408. package/templates/skills/extended/security/top-web-vulnerabilities/SKILL.md +38 -25
  2409. package/templates/skills/extended/security/xss-html-injection/SKILL.md +38 -25
  2410. package/templates/skills/extended/testing/ab-test-setup/SKILL.md +36 -21
  2411. package/templates/skills/extended/testing/api-testing-observability-api-mock/SKILL.md +33 -21
  2412. package/templates/skills/extended/testing/backtesting-frameworks/SKILL.md +34 -22
  2413. package/templates/skills/extended/testing/bats-testing-patterns/SKILL.md +34 -22
  2414. package/templates/skills/extended/testing/code-review-excellence/SKILL.md +34 -22
  2415. package/templates/skills/extended/testing/code-reviewer/SKILL.md +34 -28
  2416. package/templates/skills/extended/testing/conductor-implement/SKILL.md +34 -24
  2417. package/templates/skills/extended/testing/data-quality-frameworks/SKILL.md +34 -22
  2418. package/templates/skills/extended/testing/e2e-testing-patterns/SKILL.md +34 -22
  2419. package/templates/skills/extended/testing/file-path-traversal/SKILL.md +38 -25
  2420. package/templates/skills/extended/testing/go-playwright/SKILL.md +33 -23
  2421. package/templates/skills/extended/testing/idor-testing/SKILL.md +38 -25
  2422. package/templates/skills/extended/testing/infinite-gratitude/SKILL.md +34 -24
  2423. package/templates/skills/extended/testing/javascript-testing-patterns/SKILL.md +34 -22
  2424. package/templates/skills/extended/testing/payment-integration/SKILL.md +34 -26
  2425. package/templates/skills/extended/testing/paypal-integration/SKILL.md +34 -22
  2426. package/templates/skills/extended/testing/pypict-skill/SKILL.md +32 -22
  2427. package/templates/skills/extended/testing/python-testing-patterns/SKILL.md +34 -22
  2428. package/templates/skills/extended/testing/receiving-code-review/SKILL.md +30 -20
  2429. package/templates/skills/extended/testing/requesting-code-review/SKILL.md +31 -21
  2430. package/templates/skills/extended/testing/screen-reader-testing/SKILL.md +34 -22
  2431. package/templates/skills/extended/testing/smtp-penetration-testing/SKILL.md +38 -25
  2432. package/templates/skills/extended/testing/stripe-integration/SKILL.md +34 -22
  2433. package/templates/skills/extended/testing/tdd-workflows-tdd-cycle/SKILL.md +33 -21
  2434. package/templates/skills/extended/testing/tdd-workflows-tdd-green/SKILL.md +34 -22
  2435. package/templates/skills/extended/testing/tdd-workflows-tdd-red/SKILL.md +34 -22
  2436. package/templates/skills/extended/testing/tdd-workflows-tdd-refactor/SKILL.md +33 -21
  2437. package/templates/skills/extended/testing/temporal-python-testing/SKILL.md +34 -22
  2438. package/templates/skills/extended/testing/test-automator/SKILL.md +34 -27
  2439. package/templates/skills/extended/testing/test-driven-development/SKILL.md +422 -0
  2440. package/templates/skills/extended/testing/test-driven-development/testing-anti-patterns.md +299 -0
  2441. package/templates/skills/extended/testing/test-fixing/SKILL.md +34 -22
  2442. package/templates/skills/extended/testing/unit-testing-test-generate/SKILL.md +34 -22
  2443. package/templates/skills/extended/testing/verification-before-completion/SKILL.md +189 -0
  2444. package/templates/skills/extended/testing/wordpress-penetration-testing/SKILL.md +38 -25
  2445. package/templates/skills/extended/workflow/address-github-comments/SKILL.md +32 -21
  2446. package/templates/skills/extended/workflow/amplitude-automation/SKILL.md +31 -22
  2447. package/templates/skills/extended/workflow/antigravity-workflows/SKILL.md +33 -22
  2448. package/templates/skills/extended/workflow/asana-automation/SKILL.md +31 -22
  2449. package/templates/skills/extended/workflow/automate-whatsapp/SKILL.md +26 -20
  2450. package/templates/skills/extended/workflow/azure-communication-callautomation-java/SKILL.md +32 -22
  2451. package/templates/skills/extended/workflow/bamboohr-automation/SKILL.md +31 -22
  2452. package/templates/skills/extended/workflow/basecamp-automation/SKILL.md +31 -22
  2453. package/templates/skills/extended/workflow/billing-automation/SKILL.md +30 -22
  2454. package/templates/skills/extended/workflow/bitbucket-automation/SKILL.md +31 -22
  2455. package/templates/skills/extended/workflow/box-automation/SKILL.md +32 -23
  2456. package/templates/skills/extended/workflow/brevo-automation/SKILL.md +32 -23
  2457. package/templates/skills/extended/workflow/browser-automation/SKILL.md +32 -22
  2458. package/templates/skills/extended/workflow/c-pro/SKILL.md +30 -27
  2459. package/templates/skills/extended/workflow/cal-com-automation/SKILL.md +31 -22
  2460. package/templates/skills/extended/workflow/calendly-automation/SKILL.md +31 -22
  2461. package/templates/skills/extended/workflow/canva-automation/SKILL.md +31 -22
  2462. package/templates/skills/extended/workflow/cicd-automation-workflow-automate/SKILL.md +30 -22
  2463. package/templates/skills/extended/workflow/circleci-automation/SKILL.md +31 -22
  2464. package/templates/skills/extended/workflow/clarity-gate/SKILL.md +726 -31
  2465. package/templates/skills/extended/workflow/claude-speed-reader/SKILL.md +28 -22
  2466. package/templates/skills/extended/workflow/clickup-automation/SKILL.md +31 -22
  2467. package/templates/skills/extended/workflow/close-automation/SKILL.md +31 -22
  2468. package/templates/skills/extended/workflow/coda-automation/SKILL.md +31 -22
  2469. package/templates/skills/extended/workflow/commit/SKILL.md +33 -39
  2470. package/templates/skills/extended/workflow/comprehensive-review-full-review/SKILL.md +29 -21
  2471. package/templates/skills/extended/workflow/comprehensive-review-pr-enhance/SKILL.md +30 -22
  2472. package/templates/skills/extended/workflow/conductor-revert/SKILL.md +30 -24
  2473. package/templates/skills/extended/workflow/conductor-setup/SKILL.md +99 -407
  2474. package/templates/skills/extended/workflow/conductor-status/SKILL.md +30 -24
  2475. package/templates/skills/extended/workflow/conductor-validator/SKILL.md +34 -26
  2476. package/templates/skills/extended/workflow/confluence-automation/SKILL.md +31 -22
  2477. package/templates/skills/extended/workflow/context-compression/SKILL.md +29 -25
  2478. package/templates/skills/extended/workflow/convertkit-automation/SKILL.md +31 -22
  2479. package/templates/skills/extended/workflow/cpp-pro/SKILL.md +30 -27
  2480. package/templates/skills/extended/workflow/create-pr/SKILL.md +29 -204
  2481. package/templates/skills/extended/workflow/csharp-pro/SKILL.md +30 -27
  2482. package/templates/skills/extended/workflow/discord-automation/SKILL.md +31 -22
  2483. package/templates/skills/extended/workflow/dropbox-automation/SKILL.md +31 -22
  2484. package/templates/skills/extended/workflow/dx-optimizer/SKILL.md +30 -26
  2485. package/templates/skills/extended/workflow/elixir-pro/SKILL.md +30 -27
  2486. package/templates/skills/extended/workflow/executing-plans/SKILL.md +117 -0
  2487. package/templates/skills/extended/workflow/finishing-a-development-branch/SKILL.md +26 -20
  2488. package/templates/skills/extended/workflow/freshdesk-automation/SKILL.md +31 -22
  2489. package/templates/skills/extended/workflow/freshservice-automation/SKILL.md +31 -22
  2490. package/templates/skills/extended/workflow/git-advanced-workflows/SKILL.md +30 -22
  2491. package/templates/skills/extended/workflow/git-pr-workflows-git-workflow/SKILL.md +29 -21
  2492. package/templates/skills/extended/workflow/git-pr-workflows-onboard/SKILL.md +29 -21
  2493. package/templates/skills/extended/workflow/git-pr-workflows-pr-enhance/SKILL.md +29 -21
  2494. package/templates/skills/extended/workflow/git-pushing/SKILL.md +30 -22
  2495. package/templates/skills/extended/workflow/github-actions-templates/SKILL.md +30 -22
  2496. package/templates/skills/extended/workflow/github-automation/SKILL.md +31 -22
  2497. package/templates/skills/extended/workflow/github-issue-creator/SKILL.md +33 -22
  2498. package/templates/skills/extended/workflow/github-workflow-automation/SKILL.md +30 -22
  2499. package/templates/skills/extended/workflow/gitlab-automation/SKILL.md +31 -22
  2500. package/templates/skills/extended/workflow/gitlab-ci-patterns/SKILL.md +30 -22
  2501. package/templates/skills/extended/workflow/gitops-workflow/SKILL.md +30 -22
  2502. package/templates/skills/extended/workflow/go-rod-master/SKILL.md +28 -22
  2503. package/templates/skills/extended/workflow/golang-pro/SKILL.md +30 -28
  2504. package/templates/skills/extended/workflow/google-analytics-automation/SKILL.md +31 -22
  2505. package/templates/skills/extended/workflow/google-calendar-automation/SKILL.md +173 -185
  2506. package/templates/skills/extended/workflow/google-drive-automation/SKILL.md +152 -204
  2507. package/templates/skills/extended/workflow/googlesheets-automation/SKILL.md +31 -22
  2508. package/templates/skills/extended/workflow/haskell-pro/SKILL.md +30 -26
  2509. package/templates/skills/extended/workflow/helpdesk-automation/SKILL.md +31 -22
  2510. package/templates/skills/extended/workflow/hr-pro/SKILL.md +30 -27
  2511. package/templates/skills/extended/workflow/hubspot-automation/SKILL.md +31 -22
  2512. package/templates/skills/extended/workflow/instagram-automation/SKILL.md +31 -22
  2513. package/templates/skills/extended/workflow/intercom-automation/SKILL.md +31 -22
  2514. package/templates/skills/extended/workflow/iterate-pr/SKILL.md +149 -107
  2515. package/templates/skills/extended/workflow/java-pro/SKILL.md +30 -27
  2516. package/templates/skills/extended/workflow/javascript-pro/SKILL.md +30 -27
  2517. package/templates/skills/extended/workflow/jira-automation/SKILL.md +31 -22
  2518. package/templates/skills/extended/workflow/julia-pro/SKILL.md +30 -28
  2519. package/templates/skills/extended/workflow/klaviyo-automation/SKILL.md +31 -22
  2520. package/templates/skills/extended/workflow/launch-strategy/SKILL.md +32 -21
  2521. package/templates/skills/extended/workflow/linear-automation/SKILL.md +31 -22
  2522. package/templates/skills/extended/workflow/linear-claude-skill/SKILL.md +42 -38
  2523. package/templates/skills/extended/workflow/linkedin-automation/SKILL.md +31 -22
  2524. package/templates/skills/extended/workflow/make-automation/SKILL.md +31 -22
  2525. package/templates/skills/extended/workflow/microsoft-teams-automation/SKILL.md +31 -22
  2526. package/templates/skills/extended/workflow/minecraft-bukkit-pro/SKILL.md +30 -28
  2527. package/templates/skills/extended/workflow/miro-automation/SKILL.md +31 -22
  2528. package/templates/skills/extended/workflow/mixpanel-automation/SKILL.md +31 -22
  2529. package/templates/skills/extended/workflow/monday-automation/SKILL.md +31 -22
  2530. package/templates/skills/extended/workflow/n8n-mcp-tools-expert/SKILL.md +36 -43
  2531. package/templates/skills/extended/workflow/n8n-node-configuration/SKILL.md +29 -35
  2532. package/templates/skills/extended/workflow/notion-automation/SKILL.md +31 -22
  2533. package/templates/skills/extended/workflow/notion-template-business/SKILL.md +32 -22
  2534. package/templates/skills/extended/workflow/observe-whatsapp/SKILL.md +26 -20
  2535. package/templates/skills/extended/workflow/one-drive-automation/SKILL.md +31 -22
  2536. package/templates/skills/extended/workflow/outlook-automation/SKILL.md +31 -22
  2537. package/templates/skills/extended/workflow/outlook-calendar-automation/SKILL.md +31 -22
  2538. package/templates/skills/extended/workflow/pagerduty-automation/SKILL.md +31 -22
  2539. package/templates/skills/extended/workflow/php-pro/SKILL.md +34 -24
  2540. package/templates/skills/extended/workflow/pipedrive-automation/SKILL.md +31 -22
  2541. package/templates/skills/extended/workflow/posthog-automation/SKILL.md +31 -22
  2542. package/templates/skills/extended/workflow/postmark-automation/SKILL.md +31 -22
  2543. package/templates/skills/extended/workflow/privilege-escalation-methods/SKILL.md +34 -25
  2544. package/templates/skills/extended/workflow/prometheus-configuration/SKILL.md +30 -22
  2545. package/templates/skills/extended/workflow/protocol-reverse-engineering/SKILL.md +30 -22
  2546. package/templates/skills/extended/workflow/reddit-automation/SKILL.md +32 -23
  2547. package/templates/skills/extended/workflow/referral-program/SKILL.md +32 -21
  2548. package/templates/skills/extended/workflow/remotion-best-practices/SKILL.md +31 -26
  2549. package/templates/skills/extended/workflow/render-automation/SKILL.md +31 -22
  2550. package/templates/skills/extended/workflow/ruby-pro/SKILL.md +30 -27
  2551. package/templates/skills/extended/workflow/rust-pro/SKILL.md +30 -27
  2552. package/templates/skills/extended/workflow/salesforce-automation/SKILL.md +31 -22
  2553. package/templates/skills/extended/workflow/scala-pro/SKILL.md +30 -28
  2554. package/templates/skills/extended/workflow/segment-automation/SKILL.md +31 -22
  2555. package/templates/skills/extended/workflow/sendgrid-automation/SKILL.md +32 -23
  2556. package/templates/skills/extended/workflow/sentry-automation/SKILL.md +31 -22
  2557. package/templates/skills/extended/workflow/shopify-automation/SKILL.md +31 -22
  2558. package/templates/skills/extended/workflow/slack-automation/SKILL.md +32 -23
  2559. package/templates/skills/extended/workflow/slack-bot-builder/SKILL.md +32 -22
  2560. package/templates/skills/extended/workflow/slack-gif-creator/SKILL.md +32 -22
  2561. package/templates/skills/extended/workflow/slack-gif-creator/core/__pycache__/easing.cpython-312.pyc +0 -0
  2562. package/templates/skills/extended/workflow/slack-gif-creator/core/__pycache__/frame_composer.cpython-312.pyc +0 -0
  2563. package/templates/skills/extended/workflow/slack-gif-creator/core/__pycache__/gif_builder.cpython-312.pyc +0 -0
  2564. package/templates/skills/extended/workflow/slack-gif-creator/core/__pycache__/validators.cpython-312.pyc +0 -0
  2565. package/templates/skills/extended/workflow/square-automation/SKILL.md +31 -22
  2566. package/templates/skills/extended/workflow/startup-business-analyst-financial-projections/SKILL.md +33 -23
  2567. package/templates/skills/extended/workflow/stripe-automation/SKILL.md +31 -22
  2568. package/templates/skills/extended/workflow/systems-programming-rust-project/SKILL.md +29 -21
  2569. package/templates/skills/extended/workflow/team-collaboration-issue/SKILL.md +29 -21
  2570. package/templates/skills/extended/workflow/team-collaboration-standup-notes/SKILL.md +29 -21
  2571. package/templates/skills/extended/workflow/telegram-automation/SKILL.md +31 -22
  2572. package/templates/skills/extended/workflow/temporal-python-pro/SKILL.md +30 -27
  2573. package/templates/skills/extended/workflow/tiktok-automation/SKILL.md +31 -22
  2574. package/templates/skills/extended/workflow/todoist-automation/SKILL.md +31 -22
  2575. package/templates/skills/extended/workflow/trello-automation/SKILL.md +31 -22
  2576. package/templates/skills/extended/workflow/twitter-automation/SKILL.md +31 -22
  2577. package/templates/skills/extended/workflow/typescript-pro/SKILL.md +30 -27
  2578. package/templates/skills/extended/workflow/unreal-engine-cpp-pro/SKILL.md +28 -22
  2579. package/templates/skills/extended/workflow/using-git-worktrees/SKILL.md +32 -21
  2580. package/templates/skills/extended/workflow/uv-package-manager/SKILL.md +30 -22
  2581. package/templates/skills/extended/workflow/varlock-claude-skill/SKILL.md +28 -22
  2582. package/templates/skills/extended/workflow/webflow-automation/SKILL.md +31 -22
  2583. package/templates/skills/extended/workflow/whatsapp-automation/SKILL.md +31 -22
  2584. package/templates/skills/extended/workflow/workflow-automation/SKILL.md +37 -26
  2585. package/templates/skills/extended/workflow/workflow-orchestration-patterns/SKILL.md +30 -22
  2586. package/templates/skills/extended/workflow/wrike-automation/SKILL.md +31 -22
  2587. package/templates/skills/extended/workflow/youtube-automation/SKILL.md +31 -22
  2588. package/templates/skills/extended/workflow/zapier-make-patterns/SKILL.md +32 -22
  2589. package/templates/skills/extended/workflow/zendesk-automation/SKILL.md +31 -22
  2590. package/templates/skills/extended/workflow/zoho-crm-automation/SKILL.md +31 -22
  2591. package/templates/skills/extended/workflow/zoom-automation/SKILL.md +31 -22
  2592. package/templates/skills/knowledge/ai-agents/notebooklm-rag/scripts/auth_manager.py +0 -0
  2593. package/templates/skills/knowledge/ai-agents/prompt-engineering-patterns/scripts/__pycache__/optimize-prompt.cpython-312.pyc +0 -0
  2594. package/templates/skills/knowledge/backend/api-design-principles/assets/__pycache__/rest-api-template.cpython-312.pyc +0 -0
  2595. package/templates/skills/knowledge/backend/api-patterns/scripts/__pycache__/api_validator.cpython-312.pyc +0 -0
  2596. package/templates/skills/knowledge/backend/database-design/scripts/__pycache__/schema_validator.cpython-312.pyc +0 -0
  2597. package/templates/skills/knowledge/content/content-creator/scripts/__pycache__/brand_voice_analyzer.cpython-312.pyc +0 -0
  2598. package/templates/skills/knowledge/content/content-creator/scripts/__pycache__/seo_optimizer.cpython-312.pyc +0 -0
  2599. package/templates/skills/knowledge/content/geo-fundamentals/scripts/__pycache__/geo_checker.cpython-312.pyc +0 -0
  2600. package/templates/skills/knowledge/content/seo-fundamentals/scripts/__pycache__/seo_checker.cpython-312.pyc +0 -0
  2601. package/templates/skills/knowledge/debugging/performance-profiling/scripts/__pycache__/lighthouse_audit.cpython-312.pyc +0 -0
  2602. package/templates/skills/knowledge/frontend/frontend-design/scripts/__pycache__/accessibility_checker.cpython-312.pyc +0 -0
  2603. package/templates/skills/knowledge/frontend/frontend-design/scripts/__pycache__/ux_audit.cpython-312.pyc +0 -0
  2604. package/templates/skills/knowledge/i18n/i18n-localization/scripts/__pycache__/i18n_checker.cpython-312.pyc +0 -0
  2605. package/templates/skills/knowledge/mobile/mobile-design/scripts/__pycache__/mobile_audit.cpython-312.pyc +0 -0
  2606. package/templates/skills/knowledge/security/vulnerability-scanner/scripts/__pycache__/security_scan.cpython-312.pyc +0 -0
  2607. package/templates/skills/knowledge/testing/lint-and-validate/scripts/__pycache__/lint_runner.cpython-312.pyc +0 -0
  2608. package/templates/skills/knowledge/testing/lint-and-validate/scripts/__pycache__/type_coverage.cpython-312.pyc +0 -0
  2609. package/templates/skills/knowledge/testing/testing-patterns/scripts/__pycache__/test_runner.cpython-312.pyc +0 -0
  2610. package/templates/skills/knowledge/testing/webapp-testing/scripts/__pycache__/playwright_runner.cpython-312.pyc +0 -0
  2611. package/templates/skills/knowledge/workflow/plugin-discovery/scripts/__pycache__/platform_setup.cpython-312.pyc +0 -0
  2612. package/templates/skills/knowledge/workflow/self-update/scripts/__pycache__/update_kit.cpython-312.pyc +0 -0
@@ -0,0 +1,1676 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3
+ xmlns="http://schemas.openxmlformats.org/presentationml/2006/main"
4
+ xmlns:p="http://schemas.openxmlformats.org/presentationml/2006/main"
5
+ xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
6
+ xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
7
+ xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
8
+ elementFormDefault="qualified"
9
+ targetNamespace="http://schemas.openxmlformats.org/presentationml/2006/main">
10
+ <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
11
+ schemaLocation="shared-relationshipReference.xsd"/>
12
+ <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main"
13
+ schemaLocation="dml-main.xsd"/>
14
+ <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
15
+ schemaLocation="shared-commonSimpleTypes.xsd"/>
16
+ <xsd:simpleType name="ST_TransitionSideDirectionType">
17
+ <xsd:restriction base="xsd:token">
18
+ <xsd:enumeration value="l"/>
19
+ <xsd:enumeration value="u"/>
20
+ <xsd:enumeration value="r"/>
21
+ <xsd:enumeration value="d"/>
22
+ </xsd:restriction>
23
+ </xsd:simpleType>
24
+ <xsd:simpleType name="ST_TransitionCornerDirectionType">
25
+ <xsd:restriction base="xsd:token">
26
+ <xsd:enumeration value="lu"/>
27
+ <xsd:enumeration value="ru"/>
28
+ <xsd:enumeration value="ld"/>
29
+ <xsd:enumeration value="rd"/>
30
+ </xsd:restriction>
31
+ </xsd:simpleType>
32
+ <xsd:simpleType name="ST_TransitionInOutDirectionType">
33
+ <xsd:restriction base="xsd:token">
34
+ <xsd:enumeration value="out"/>
35
+ <xsd:enumeration value="in"/>
36
+ </xsd:restriction>
37
+ </xsd:simpleType>
38
+ <xsd:complexType name="CT_SideDirectionTransition">
39
+ <xsd:attribute name="dir" type="ST_TransitionSideDirectionType" use="optional" default="l"/>
40
+ </xsd:complexType>
41
+ <xsd:complexType name="CT_CornerDirectionTransition">
42
+ <xsd:attribute name="dir" type="ST_TransitionCornerDirectionType" use="optional" default="lu"/>
43
+ </xsd:complexType>
44
+ <xsd:simpleType name="ST_TransitionEightDirectionType">
45
+ <xsd:union memberTypes="ST_TransitionSideDirectionType ST_TransitionCornerDirectionType"/>
46
+ </xsd:simpleType>
47
+ <xsd:complexType name="CT_EightDirectionTransition">
48
+ <xsd:attribute name="dir" type="ST_TransitionEightDirectionType" use="optional" default="l"/>
49
+ </xsd:complexType>
50
+ <xsd:complexType name="CT_OrientationTransition">
51
+ <xsd:attribute name="dir" type="ST_Direction" use="optional" default="horz"/>
52
+ </xsd:complexType>
53
+ <xsd:complexType name="CT_InOutTransition">
54
+ <xsd:attribute name="dir" type="ST_TransitionInOutDirectionType" use="optional" default="out"/>
55
+ </xsd:complexType>
56
+ <xsd:complexType name="CT_OptionalBlackTransition">
57
+ <xsd:attribute name="thruBlk" type="xsd:boolean" use="optional" default="false"/>
58
+ </xsd:complexType>
59
+ <xsd:complexType name="CT_SplitTransition">
60
+ <xsd:attribute name="orient" type="ST_Direction" use="optional" default="horz"/>
61
+ <xsd:attribute name="dir" type="ST_TransitionInOutDirectionType" use="optional" default="out"/>
62
+ </xsd:complexType>
63
+ <xsd:complexType name="CT_WheelTransition">
64
+ <xsd:attribute name="spokes" type="xsd:unsignedInt" use="optional" default="4"/>
65
+ </xsd:complexType>
66
+ <xsd:complexType name="CT_TransitionStartSoundAction">
67
+ <xsd:sequence>
68
+ <xsd:element minOccurs="1" maxOccurs="1" name="snd" type="a:CT_EmbeddedWAVAudioFile"/>
69
+ </xsd:sequence>
70
+ <xsd:attribute name="loop" type="xsd:boolean" use="optional" default="false"/>
71
+ </xsd:complexType>
72
+ <xsd:complexType name="CT_TransitionSoundAction">
73
+ <xsd:choice minOccurs="1" maxOccurs="1">
74
+ <xsd:element name="stSnd" type="CT_TransitionStartSoundAction"/>
75
+ <xsd:element name="endSnd" type="CT_Empty"/>
76
+ </xsd:choice>
77
+ </xsd:complexType>
78
+ <xsd:simpleType name="ST_TransitionSpeed">
79
+ <xsd:restriction base="xsd:token">
80
+ <xsd:enumeration value="slow"/>
81
+ <xsd:enumeration value="med"/>
82
+ <xsd:enumeration value="fast"/>
83
+ </xsd:restriction>
84
+ </xsd:simpleType>
85
+ <xsd:complexType name="CT_SlideTransition">
86
+ <xsd:sequence>
87
+ <xsd:choice minOccurs="0" maxOccurs="1">
88
+ <xsd:element name="blinds" type="CT_OrientationTransition"/>
89
+ <xsd:element name="checker" type="CT_OrientationTransition"/>
90
+ <xsd:element name="circle" type="CT_Empty"/>
91
+ <xsd:element name="dissolve" type="CT_Empty"/>
92
+ <xsd:element name="comb" type="CT_OrientationTransition"/>
93
+ <xsd:element name="cover" type="CT_EightDirectionTransition"/>
94
+ <xsd:element name="cut" type="CT_OptionalBlackTransition"/>
95
+ <xsd:element name="diamond" type="CT_Empty"/>
96
+ <xsd:element name="fade" type="CT_OptionalBlackTransition"/>
97
+ <xsd:element name="newsflash" type="CT_Empty"/>
98
+ <xsd:element name="plus" type="CT_Empty"/>
99
+ <xsd:element name="pull" type="CT_EightDirectionTransition"/>
100
+ <xsd:element name="push" type="CT_SideDirectionTransition"/>
101
+ <xsd:element name="random" type="CT_Empty"/>
102
+ <xsd:element name="randomBar" type="CT_OrientationTransition"/>
103
+ <xsd:element name="split" type="CT_SplitTransition"/>
104
+ <xsd:element name="strips" type="CT_CornerDirectionTransition"/>
105
+ <xsd:element name="wedge" type="CT_Empty"/>
106
+ <xsd:element name="wheel" type="CT_WheelTransition"/>
107
+ <xsd:element name="wipe" type="CT_SideDirectionTransition"/>
108
+ <xsd:element name="zoom" type="CT_InOutTransition"/>
109
+ </xsd:choice>
110
+ <xsd:element name="sndAc" minOccurs="0" maxOccurs="1" type="CT_TransitionSoundAction"/>
111
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
112
+ </xsd:sequence>
113
+ <xsd:attribute name="spd" type="ST_TransitionSpeed" use="optional" default="fast"/>
114
+ <xsd:attribute name="advClick" type="xsd:boolean" use="optional" default="true"/>
115
+ <xsd:attribute name="advTm" type="xsd:unsignedInt" use="optional"/>
116
+ </xsd:complexType>
117
+ <xsd:simpleType name="ST_TLTimeIndefinite">
118
+ <xsd:restriction base="xsd:token">
119
+ <xsd:enumeration value="indefinite"/>
120
+ </xsd:restriction>
121
+ </xsd:simpleType>
122
+ <xsd:simpleType name="ST_TLTime">
123
+ <xsd:union memberTypes="xsd:unsignedInt ST_TLTimeIndefinite"/>
124
+ </xsd:simpleType>
125
+ <xsd:simpleType name="ST_TLTimeNodeID">
126
+ <xsd:restriction base="xsd:unsignedInt"/>
127
+ </xsd:simpleType>
128
+ <xsd:complexType name="CT_TLIterateIntervalTime">
129
+ <xsd:attribute name="val" type="ST_TLTime" use="required"/>
130
+ </xsd:complexType>
131
+ <xsd:complexType name="CT_TLIterateIntervalPercentage">
132
+ <xsd:attribute name="val" type="a:ST_PositivePercentage" use="required"/>
133
+ </xsd:complexType>
134
+ <xsd:simpleType name="ST_IterateType">
135
+ <xsd:restriction base="xsd:token">
136
+ <xsd:enumeration value="el"/>
137
+ <xsd:enumeration value="wd"/>
138
+ <xsd:enumeration value="lt"/>
139
+ </xsd:restriction>
140
+ </xsd:simpleType>
141
+ <xsd:complexType name="CT_TLIterateData">
142
+ <xsd:choice minOccurs="1" maxOccurs="1">
143
+ <xsd:element name="tmAbs" type="CT_TLIterateIntervalTime"/>
144
+ <xsd:element name="tmPct" type="CT_TLIterateIntervalPercentage"/>
145
+ </xsd:choice>
146
+ <xsd:attribute name="type" type="ST_IterateType" use="optional" default="el"/>
147
+ <xsd:attribute name="backwards" type="xsd:boolean" use="optional" default="false"/>
148
+ </xsd:complexType>
149
+ <xsd:complexType name="CT_TLSubShapeId">
150
+ <xsd:attribute name="spid" type="a:ST_ShapeID" use="required"/>
151
+ </xsd:complexType>
152
+ <xsd:complexType name="CT_TLTextTargetElement">
153
+ <xsd:choice minOccurs="0" maxOccurs="1">
154
+ <xsd:element name="charRg" type="CT_IndexRange"/>
155
+ <xsd:element name="pRg" type="CT_IndexRange"/>
156
+ </xsd:choice>
157
+ </xsd:complexType>
158
+ <xsd:simpleType name="ST_TLChartSubelementType">
159
+ <xsd:restriction base="xsd:token">
160
+ <xsd:enumeration value="gridLegend"/>
161
+ <xsd:enumeration value="series"/>
162
+ <xsd:enumeration value="category"/>
163
+ <xsd:enumeration value="ptInSeries"/>
164
+ <xsd:enumeration value="ptInCategory"/>
165
+ </xsd:restriction>
166
+ </xsd:simpleType>
167
+ <xsd:complexType name="CT_TLOleChartTargetElement">
168
+ <xsd:attribute name="type" type="ST_TLChartSubelementType" use="required"/>
169
+ <xsd:attribute name="lvl" type="xsd:unsignedInt" use="optional" default="0"/>
170
+ </xsd:complexType>
171
+ <xsd:complexType name="CT_TLShapeTargetElement">
172
+ <xsd:choice minOccurs="0" maxOccurs="1">
173
+ <xsd:element name="bg" type="CT_Empty"/>
174
+ <xsd:element name="subSp" type="CT_TLSubShapeId"/>
175
+ <xsd:element name="oleChartEl" type="CT_TLOleChartTargetElement"/>
176
+ <xsd:element name="txEl" type="CT_TLTextTargetElement"/>
177
+ <xsd:element name="graphicEl" type="a:CT_AnimationElementChoice"/>
178
+ </xsd:choice>
179
+ <xsd:attribute name="spid" type="a:ST_DrawingElementId" use="required"/>
180
+ </xsd:complexType>
181
+ <xsd:complexType name="CT_TLTimeTargetElement">
182
+ <xsd:choice minOccurs="1" maxOccurs="1">
183
+ <xsd:element name="sldTgt" type="CT_Empty"/>
184
+ <xsd:element name="sndTgt" type="a:CT_EmbeddedWAVAudioFile"/>
185
+ <xsd:element name="spTgt" type="CT_TLShapeTargetElement"/>
186
+ <xsd:element name="inkTgt" type="CT_TLSubShapeId"/>
187
+ </xsd:choice>
188
+ </xsd:complexType>
189
+ <xsd:complexType name="CT_TLTriggerTimeNodeID">
190
+ <xsd:attribute name="val" type="ST_TLTimeNodeID" use="required"/>
191
+ </xsd:complexType>
192
+ <xsd:simpleType name="ST_TLTriggerRuntimeNode">
193
+ <xsd:restriction base="xsd:token">
194
+ <xsd:enumeration value="first"/>
195
+ <xsd:enumeration value="last"/>
196
+ <xsd:enumeration value="all"/>
197
+ </xsd:restriction>
198
+ </xsd:simpleType>
199
+ <xsd:complexType name="CT_TLTriggerRuntimeNode">
200
+ <xsd:attribute name="val" type="ST_TLTriggerRuntimeNode" use="required"/>
201
+ </xsd:complexType>
202
+ <xsd:simpleType name="ST_TLTriggerEvent">
203
+ <xsd:restriction base="xsd:token">
204
+ <xsd:enumeration value="onBegin"/>
205
+ <xsd:enumeration value="onEnd"/>
206
+ <xsd:enumeration value="begin"/>
207
+ <xsd:enumeration value="end"/>
208
+ <xsd:enumeration value="onClick"/>
209
+ <xsd:enumeration value="onDblClick"/>
210
+ <xsd:enumeration value="onMouseOver"/>
211
+ <xsd:enumeration value="onMouseOut"/>
212
+ <xsd:enumeration value="onNext"/>
213
+ <xsd:enumeration value="onPrev"/>
214
+ <xsd:enumeration value="onStopAudio"/>
215
+ </xsd:restriction>
216
+ </xsd:simpleType>
217
+ <xsd:complexType name="CT_TLTimeCondition">
218
+ <xsd:choice minOccurs="0" maxOccurs="1">
219
+ <xsd:element name="tgtEl" type="CT_TLTimeTargetElement"/>
220
+ <xsd:element name="tn" type="CT_TLTriggerTimeNodeID"/>
221
+ <xsd:element name="rtn" type="CT_TLTriggerRuntimeNode"/>
222
+ </xsd:choice>
223
+ <xsd:attribute name="evt" use="optional" type="ST_TLTriggerEvent"/>
224
+ <xsd:attribute name="delay" type="ST_TLTime" use="optional"/>
225
+ </xsd:complexType>
226
+ <xsd:complexType name="CT_TLTimeConditionList">
227
+ <xsd:sequence>
228
+ <xsd:element name="cond" type="CT_TLTimeCondition" minOccurs="1" maxOccurs="unbounded"/>
229
+ </xsd:sequence>
230
+ </xsd:complexType>
231
+ <xsd:complexType name="CT_TimeNodeList">
232
+ <xsd:choice minOccurs="1" maxOccurs="unbounded">
233
+ <xsd:element name="par" type="CT_TLTimeNodeParallel"/>
234
+ <xsd:element name="seq" type="CT_TLTimeNodeSequence"/>
235
+ <xsd:element name="excl" type="CT_TLTimeNodeExclusive"/>
236
+ <xsd:element name="anim" type="CT_TLAnimateBehavior"/>
237
+ <xsd:element name="animClr" type="CT_TLAnimateColorBehavior"/>
238
+ <xsd:element name="animEffect" type="CT_TLAnimateEffectBehavior"/>
239
+ <xsd:element name="animMotion" type="CT_TLAnimateMotionBehavior"/>
240
+ <xsd:element name="animRot" type="CT_TLAnimateRotationBehavior"/>
241
+ <xsd:element name="animScale" type="CT_TLAnimateScaleBehavior"/>
242
+ <xsd:element name="cmd" type="CT_TLCommandBehavior"/>
243
+ <xsd:element name="set" type="CT_TLSetBehavior"/>
244
+ <xsd:element name="audio" type="CT_TLMediaNodeAudio"/>
245
+ <xsd:element name="video" type="CT_TLMediaNodeVideo"/>
246
+ </xsd:choice>
247
+ </xsd:complexType>
248
+ <xsd:simpleType name="ST_TLTimeNodePresetClassType">
249
+ <xsd:restriction base="xsd:token">
250
+ <xsd:enumeration value="entr"/>
251
+ <xsd:enumeration value="exit"/>
252
+ <xsd:enumeration value="emph"/>
253
+ <xsd:enumeration value="path"/>
254
+ <xsd:enumeration value="verb"/>
255
+ <xsd:enumeration value="mediacall"/>
256
+ </xsd:restriction>
257
+ </xsd:simpleType>
258
+ <xsd:simpleType name="ST_TLTimeNodeRestartType">
259
+ <xsd:restriction base="xsd:token">
260
+ <xsd:enumeration value="always"/>
261
+ <xsd:enumeration value="whenNotActive"/>
262
+ <xsd:enumeration value="never"/>
263
+ </xsd:restriction>
264
+ </xsd:simpleType>
265
+ <xsd:simpleType name="ST_TLTimeNodeFillType">
266
+ <xsd:restriction base="xsd:token">
267
+ <xsd:enumeration value="remove"/>
268
+ <xsd:enumeration value="freeze"/>
269
+ <xsd:enumeration value="hold"/>
270
+ <xsd:enumeration value="transition"/>
271
+ </xsd:restriction>
272
+ </xsd:simpleType>
273
+ <xsd:simpleType name="ST_TLTimeNodeSyncType">
274
+ <xsd:restriction base="xsd:token">
275
+ <xsd:enumeration value="canSlip"/>
276
+ <xsd:enumeration value="locked"/>
277
+ </xsd:restriction>
278
+ </xsd:simpleType>
279
+ <xsd:simpleType name="ST_TLTimeNodeMasterRelation">
280
+ <xsd:restriction base="xsd:token">
281
+ <xsd:enumeration value="sameClick"/>
282
+ <xsd:enumeration value="lastClick"/>
283
+ <xsd:enumeration value="nextClick"/>
284
+ </xsd:restriction>
285
+ </xsd:simpleType>
286
+ <xsd:simpleType name="ST_TLTimeNodeType">
287
+ <xsd:restriction base="xsd:token">
288
+ <xsd:enumeration value="clickEffect"/>
289
+ <xsd:enumeration value="withEffect"/>
290
+ <xsd:enumeration value="afterEffect"/>
291
+ <xsd:enumeration value="mainSeq"/>
292
+ <xsd:enumeration value="interactiveSeq"/>
293
+ <xsd:enumeration value="clickPar"/>
294
+ <xsd:enumeration value="withGroup"/>
295
+ <xsd:enumeration value="afterGroup"/>
296
+ <xsd:enumeration value="tmRoot"/>
297
+ </xsd:restriction>
298
+ </xsd:simpleType>
299
+ <xsd:complexType name="CT_TLCommonTimeNodeData">
300
+ <xsd:sequence>
301
+ <xsd:element name="stCondLst" type="CT_TLTimeConditionList" minOccurs="0" maxOccurs="1"/>
302
+ <xsd:element name="endCondLst" type="CT_TLTimeConditionList" minOccurs="0" maxOccurs="1"/>
303
+ <xsd:element name="endSync" type="CT_TLTimeCondition" minOccurs="0" maxOccurs="1"/>
304
+ <xsd:element name="iterate" type="CT_TLIterateData" minOccurs="0" maxOccurs="1"/>
305
+ <xsd:element name="childTnLst" type="CT_TimeNodeList" minOccurs="0" maxOccurs="1"/>
306
+ <xsd:element name="subTnLst" type="CT_TimeNodeList" minOccurs="0" maxOccurs="1"/>
307
+ </xsd:sequence>
308
+ <xsd:attribute name="id" type="ST_TLTimeNodeID" use="optional"/>
309
+ <xsd:attribute name="presetID" type="xsd:int" use="optional"/>
310
+ <xsd:attribute name="presetClass" type="ST_TLTimeNodePresetClassType" use="optional"/>
311
+ <xsd:attribute name="presetSubtype" type="xsd:int" use="optional"/>
312
+ <xsd:attribute name="dur" type="ST_TLTime" use="optional"/>
313
+ <xsd:attribute name="repeatCount" type="ST_TLTime" use="optional" default="1000"/>
314
+ <xsd:attribute name="repeatDur" type="ST_TLTime" use="optional"/>
315
+ <xsd:attribute name="spd" type="a:ST_Percentage" use="optional" default="100%"/>
316
+ <xsd:attribute name="accel" type="a:ST_PositiveFixedPercentage" use="optional" default="0%"/>
317
+ <xsd:attribute name="decel" type="a:ST_PositiveFixedPercentage" use="optional" default="0%"/>
318
+ <xsd:attribute name="autoRev" type="xsd:boolean" use="optional" default="false"/>
319
+ <xsd:attribute name="restart" type="ST_TLTimeNodeRestartType" use="optional"/>
320
+ <xsd:attribute name="fill" type="ST_TLTimeNodeFillType" use="optional"/>
321
+ <xsd:attribute name="syncBehavior" type="ST_TLTimeNodeSyncType" use="optional"/>
322
+ <xsd:attribute name="tmFilter" type="xsd:string" use="optional"/>
323
+ <xsd:attribute name="evtFilter" type="xsd:string" use="optional"/>
324
+ <xsd:attribute name="display" type="xsd:boolean" use="optional"/>
325
+ <xsd:attribute name="masterRel" type="ST_TLTimeNodeMasterRelation" use="optional"/>
326
+ <xsd:attribute name="bldLvl" type="xsd:int" use="optional"/>
327
+ <xsd:attribute name="grpId" type="xsd:unsignedInt" use="optional"/>
328
+ <xsd:attribute name="afterEffect" type="xsd:boolean" use="optional"/>
329
+ <xsd:attribute name="nodeType" type="ST_TLTimeNodeType" use="optional"/>
330
+ <xsd:attribute name="nodePh" type="xsd:boolean" use="optional"/>
331
+ </xsd:complexType>
332
+ <xsd:complexType name="CT_TLTimeNodeParallel">
333
+ <xsd:sequence>
334
+ <xsd:element name="cTn" type="CT_TLCommonTimeNodeData" minOccurs="1" maxOccurs="1"/>
335
+ </xsd:sequence>
336
+ </xsd:complexType>
337
+ <xsd:simpleType name="ST_TLNextActionType">
338
+ <xsd:restriction base="xsd:token">
339
+ <xsd:enumeration value="none"/>
340
+ <xsd:enumeration value="seek"/>
341
+ </xsd:restriction>
342
+ </xsd:simpleType>
343
+ <xsd:simpleType name="ST_TLPreviousActionType">
344
+ <xsd:restriction base="xsd:token">
345
+ <xsd:enumeration value="none"/>
346
+ <xsd:enumeration value="skipTimed"/>
347
+ </xsd:restriction>
348
+ </xsd:simpleType>
349
+ <xsd:complexType name="CT_TLTimeNodeSequence">
350
+ <xsd:sequence>
351
+ <xsd:element name="cTn" type="CT_TLCommonTimeNodeData" minOccurs="1" maxOccurs="1"/>
352
+ <xsd:element name="prevCondLst" type="CT_TLTimeConditionList" minOccurs="0" maxOccurs="1"/>
353
+ <xsd:element name="nextCondLst" type="CT_TLTimeConditionList" minOccurs="0" maxOccurs="1"/>
354
+ </xsd:sequence>
355
+ <xsd:attribute name="concurrent" type="xsd:boolean" use="optional"/>
356
+ <xsd:attribute name="prevAc" type="ST_TLPreviousActionType" use="optional"/>
357
+ <xsd:attribute name="nextAc" type="ST_TLNextActionType" use="optional"/>
358
+ </xsd:complexType>
359
+ <xsd:complexType name="CT_TLTimeNodeExclusive">
360
+ <xsd:sequence>
361
+ <xsd:element name="cTn" type="CT_TLCommonTimeNodeData" minOccurs="1" maxOccurs="1"/>
362
+ </xsd:sequence>
363
+ </xsd:complexType>
364
+ <xsd:complexType name="CT_TLBehaviorAttributeNameList">
365
+ <xsd:sequence>
366
+ <xsd:element name="attrName" type="xsd:string" minOccurs="1" maxOccurs="unbounded"/>
367
+ </xsd:sequence>
368
+ </xsd:complexType>
369
+ <xsd:simpleType name="ST_TLBehaviorAdditiveType">
370
+ <xsd:restriction base="xsd:token">
371
+ <xsd:enumeration value="base"/>
372
+ <xsd:enumeration value="sum"/>
373
+ <xsd:enumeration value="repl"/>
374
+ <xsd:enumeration value="mult"/>
375
+ <xsd:enumeration value="none"/>
376
+ </xsd:restriction>
377
+ </xsd:simpleType>
378
+ <xsd:simpleType name="ST_TLBehaviorAccumulateType">
379
+ <xsd:restriction base="xsd:token">
380
+ <xsd:enumeration value="none"/>
381
+ <xsd:enumeration value="always"/>
382
+ </xsd:restriction>
383
+ </xsd:simpleType>
384
+ <xsd:simpleType name="ST_TLBehaviorTransformType">
385
+ <xsd:restriction base="xsd:token">
386
+ <xsd:enumeration value="pt"/>
387
+ <xsd:enumeration value="img"/>
388
+ </xsd:restriction>
389
+ </xsd:simpleType>
390
+ <xsd:simpleType name="ST_TLBehaviorOverrideType">
391
+ <xsd:restriction base="xsd:token">
392
+ <xsd:enumeration value="normal"/>
393
+ <xsd:enumeration value="childStyle"/>
394
+ </xsd:restriction>
395
+ </xsd:simpleType>
396
+ <xsd:complexType name="CT_TLCommonBehaviorData">
397
+ <xsd:sequence>
398
+ <xsd:element name="cTn" type="CT_TLCommonTimeNodeData" minOccurs="1" maxOccurs="1"/>
399
+ <xsd:element name="tgtEl" type="CT_TLTimeTargetElement" minOccurs="1" maxOccurs="1"/>
400
+ <xsd:element name="attrNameLst" type="CT_TLBehaviorAttributeNameList" minOccurs="0"
401
+ maxOccurs="1"/>
402
+ </xsd:sequence>
403
+ <xsd:attribute name="additive" type="ST_TLBehaviorAdditiveType" use="optional"/>
404
+ <xsd:attribute name="accumulate" type="ST_TLBehaviorAccumulateType" use="optional"/>
405
+ <xsd:attribute name="xfrmType" type="ST_TLBehaviorTransformType" use="optional"/>
406
+ <xsd:attribute name="from" type="xsd:string" use="optional"/>
407
+ <xsd:attribute name="to" type="xsd:string" use="optional"/>
408
+ <xsd:attribute name="by" type="xsd:string" use="optional"/>
409
+ <xsd:attribute name="rctx" type="xsd:string" use="optional"/>
410
+ <xsd:attribute name="override" type="ST_TLBehaviorOverrideType" use="optional"/>
411
+ </xsd:complexType>
412
+ <xsd:complexType name="CT_TLAnimVariantBooleanVal">
413
+ <xsd:attribute name="val" type="xsd:boolean" use="required"/>
414
+ </xsd:complexType>
415
+ <xsd:complexType name="CT_TLAnimVariantIntegerVal">
416
+ <xsd:attribute name="val" type="xsd:int" use="required"/>
417
+ </xsd:complexType>
418
+ <xsd:complexType name="CT_TLAnimVariantFloatVal">
419
+ <xsd:attribute name="val" type="xsd:float" use="required"/>
420
+ </xsd:complexType>
421
+ <xsd:complexType name="CT_TLAnimVariantStringVal">
422
+ <xsd:attribute name="val" type="xsd:string" use="required"/>
423
+ </xsd:complexType>
424
+ <xsd:complexType name="CT_TLAnimVariant">
425
+ <xsd:choice minOccurs="1" maxOccurs="1">
426
+ <xsd:element name="boolVal" type="CT_TLAnimVariantBooleanVal"/>
427
+ <xsd:element name="intVal" type="CT_TLAnimVariantIntegerVal"/>
428
+ <xsd:element name="fltVal" type="CT_TLAnimVariantFloatVal"/>
429
+ <xsd:element name="strVal" type="CT_TLAnimVariantStringVal"/>
430
+ <xsd:element name="clrVal" type="a:CT_Color"/>
431
+ </xsd:choice>
432
+ </xsd:complexType>
433
+ <xsd:simpleType name="ST_TLTimeAnimateValueTime">
434
+ <xsd:union memberTypes="a:ST_PositiveFixedPercentage ST_TLTimeIndefinite"/>
435
+ </xsd:simpleType>
436
+ <xsd:complexType name="CT_TLTimeAnimateValue">
437
+ <xsd:sequence>
438
+ <xsd:element name="val" type="CT_TLAnimVariant" minOccurs="0" maxOccurs="1"/>
439
+ </xsd:sequence>
440
+ <xsd:attribute name="tm" type="ST_TLTimeAnimateValueTime" use="optional" default="indefinite"/>
441
+ <xsd:attribute name="fmla" type="xsd:string" use="optional" default=""/>
442
+ </xsd:complexType>
443
+ <xsd:complexType name="CT_TLTimeAnimateValueList">
444
+ <xsd:sequence>
445
+ <xsd:element name="tav" type="CT_TLTimeAnimateValue" minOccurs="0" maxOccurs="unbounded"/>
446
+ </xsd:sequence>
447
+ </xsd:complexType>
448
+ <xsd:simpleType name="ST_TLAnimateBehaviorCalcMode">
449
+ <xsd:restriction base="xsd:token">
450
+ <xsd:enumeration value="discrete"/>
451
+ <xsd:enumeration value="lin"/>
452
+ <xsd:enumeration value="fmla"/>
453
+ </xsd:restriction>
454
+ </xsd:simpleType>
455
+ <xsd:simpleType name="ST_TLAnimateBehaviorValueType">
456
+ <xsd:restriction base="xsd:token">
457
+ <xsd:enumeration value="str"/>
458
+ <xsd:enumeration value="num"/>
459
+ <xsd:enumeration value="clr"/>
460
+ </xsd:restriction>
461
+ </xsd:simpleType>
462
+ <xsd:complexType name="CT_TLAnimateBehavior">
463
+ <xsd:sequence>
464
+ <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/>
465
+ <xsd:element name="tavLst" type="CT_TLTimeAnimateValueList" minOccurs="0" maxOccurs="1"/>
466
+ </xsd:sequence>
467
+ <xsd:attribute name="by" type="xsd:string" use="optional"/>
468
+ <xsd:attribute name="from" type="xsd:string" use="optional"/>
469
+ <xsd:attribute name="to" type="xsd:string" use="optional"/>
470
+ <xsd:attribute name="calcmode" type="ST_TLAnimateBehaviorCalcMode" use="optional"/>
471
+ <xsd:attribute name="valueType" type="ST_TLAnimateBehaviorValueType" use="optional"/>
472
+ </xsd:complexType>
473
+ <xsd:complexType name="CT_TLByRgbColorTransform">
474
+ <xsd:attribute name="r" type="a:ST_FixedPercentage" use="required"/>
475
+ <xsd:attribute name="g" type="a:ST_FixedPercentage" use="required"/>
476
+ <xsd:attribute name="b" type="a:ST_FixedPercentage" use="required"/>
477
+ </xsd:complexType>
478
+ <xsd:complexType name="CT_TLByHslColorTransform">
479
+ <xsd:attribute name="h" type="a:ST_Angle" use="required"/>
480
+ <xsd:attribute name="s" type="a:ST_FixedPercentage" use="required"/>
481
+ <xsd:attribute name="l" type="a:ST_FixedPercentage" use="required"/>
482
+ </xsd:complexType>
483
+ <xsd:complexType name="CT_TLByAnimateColorTransform">
484
+ <xsd:choice minOccurs="1" maxOccurs="1">
485
+ <xsd:element name="rgb" type="CT_TLByRgbColorTransform"/>
486
+ <xsd:element name="hsl" type="CT_TLByHslColorTransform"/>
487
+ </xsd:choice>
488
+ </xsd:complexType>
489
+ <xsd:simpleType name="ST_TLAnimateColorSpace">
490
+ <xsd:restriction base="xsd:token">
491
+ <xsd:enumeration value="rgb"/>
492
+ <xsd:enumeration value="hsl"/>
493
+ </xsd:restriction>
494
+ </xsd:simpleType>
495
+ <xsd:simpleType name="ST_TLAnimateColorDirection">
496
+ <xsd:restriction base="xsd:token">
497
+ <xsd:enumeration value="cw"/>
498
+ <xsd:enumeration value="ccw"/>
499
+ </xsd:restriction>
500
+ </xsd:simpleType>
501
+ <xsd:complexType name="CT_TLAnimateColorBehavior">
502
+ <xsd:sequence>
503
+ <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/>
504
+ <xsd:element name="by" type="CT_TLByAnimateColorTransform" minOccurs="0" maxOccurs="1"/>
505
+ <xsd:element name="from" type="a:CT_Color" minOccurs="0" maxOccurs="1"/>
506
+ <xsd:element name="to" type="a:CT_Color" minOccurs="0" maxOccurs="1"/>
507
+ </xsd:sequence>
508
+ <xsd:attribute name="clrSpc" type="ST_TLAnimateColorSpace" use="optional"/>
509
+ <xsd:attribute name="dir" type="ST_TLAnimateColorDirection" use="optional"/>
510
+ </xsd:complexType>
511
+ <xsd:simpleType name="ST_TLAnimateEffectTransition">
512
+ <xsd:restriction base="xsd:token">
513
+ <xsd:enumeration value="in"/>
514
+ <xsd:enumeration value="out"/>
515
+ <xsd:enumeration value="none"/>
516
+ </xsd:restriction>
517
+ </xsd:simpleType>
518
+ <xsd:complexType name="CT_TLAnimateEffectBehavior">
519
+ <xsd:sequence>
520
+ <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/>
521
+ <xsd:element name="progress" type="CT_TLAnimVariant" minOccurs="0" maxOccurs="1"/>
522
+ </xsd:sequence>
523
+ <xsd:attribute name="transition" type="ST_TLAnimateEffectTransition" default="in" use="optional"/>
524
+ <xsd:attribute name="filter" type="xsd:string" use="optional"/>
525
+ <xsd:attribute name="prLst" type="xsd:string" use="optional"/>
526
+ </xsd:complexType>
527
+ <xsd:simpleType name="ST_TLAnimateMotionBehaviorOrigin">
528
+ <xsd:restriction base="xsd:token">
529
+ <xsd:enumeration value="parent"/>
530
+ <xsd:enumeration value="layout"/>
531
+ </xsd:restriction>
532
+ </xsd:simpleType>
533
+ <xsd:simpleType name="ST_TLAnimateMotionPathEditMode">
534
+ <xsd:restriction base="xsd:token">
535
+ <xsd:enumeration value="relative"/>
536
+ <xsd:enumeration value="fixed"/>
537
+ </xsd:restriction>
538
+ </xsd:simpleType>
539
+ <xsd:complexType name="CT_TLPoint">
540
+ <xsd:attribute name="x" type="a:ST_Percentage" use="required"/>
541
+ <xsd:attribute name="y" type="a:ST_Percentage" use="required"/>
542
+ </xsd:complexType>
543
+ <xsd:complexType name="CT_TLAnimateMotionBehavior">
544
+ <xsd:sequence>
545
+ <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/>
546
+ <xsd:element name="by" type="CT_TLPoint" minOccurs="0" maxOccurs="1"/>
547
+ <xsd:element name="from" type="CT_TLPoint" minOccurs="0" maxOccurs="1"/>
548
+ <xsd:element name="to" type="CT_TLPoint" minOccurs="0" maxOccurs="1"/>
549
+ <xsd:element name="rCtr" type="CT_TLPoint" minOccurs="0" maxOccurs="1"/>
550
+ </xsd:sequence>
551
+ <xsd:attribute name="origin" type="ST_TLAnimateMotionBehaviorOrigin" use="optional"/>
552
+ <xsd:attribute name="path" type="xsd:string" use="optional"/>
553
+ <xsd:attribute name="pathEditMode" type="ST_TLAnimateMotionPathEditMode" use="optional"/>
554
+ <xsd:attribute name="rAng" type="a:ST_Angle" use="optional"/>
555
+ <xsd:attribute name="ptsTypes" type="xsd:string" use="optional"/>
556
+ </xsd:complexType>
557
+ <xsd:complexType name="CT_TLAnimateRotationBehavior">
558
+ <xsd:sequence>
559
+ <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/>
560
+ </xsd:sequence>
561
+ <xsd:attribute name="by" type="a:ST_Angle" use="optional"/>
562
+ <xsd:attribute name="from" type="a:ST_Angle" use="optional"/>
563
+ <xsd:attribute name="to" type="a:ST_Angle" use="optional"/>
564
+ </xsd:complexType>
565
+ <xsd:complexType name="CT_TLAnimateScaleBehavior">
566
+ <xsd:sequence>
567
+ <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/>
568
+ <xsd:element name="by" type="CT_TLPoint" minOccurs="0" maxOccurs="1"/>
569
+ <xsd:element name="from" type="CT_TLPoint" minOccurs="0" maxOccurs="1"/>
570
+ <xsd:element name="to" type="CT_TLPoint" minOccurs="0" maxOccurs="1"/>
571
+ </xsd:sequence>
572
+ <xsd:attribute name="zoomContents" type="xsd:boolean" use="optional"/>
573
+ </xsd:complexType>
574
+ <xsd:simpleType name="ST_TLCommandType">
575
+ <xsd:restriction base="xsd:token">
576
+ <xsd:enumeration value="evt"/>
577
+ <xsd:enumeration value="call"/>
578
+ <xsd:enumeration value="verb"/>
579
+ </xsd:restriction>
580
+ </xsd:simpleType>
581
+ <xsd:complexType name="CT_TLCommandBehavior">
582
+ <xsd:sequence>
583
+ <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/>
584
+ </xsd:sequence>
585
+ <xsd:attribute type="ST_TLCommandType" name="type" use="optional"/>
586
+ <xsd:attribute name="cmd" type="xsd:string" use="optional"/>
587
+ </xsd:complexType>
588
+ <xsd:complexType name="CT_TLSetBehavior">
589
+ <xsd:sequence>
590
+ <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/>
591
+ <xsd:element name="to" type="CT_TLAnimVariant" minOccurs="0" maxOccurs="1"/>
592
+ </xsd:sequence>
593
+ </xsd:complexType>
594
+ <xsd:complexType name="CT_TLCommonMediaNodeData">
595
+ <xsd:sequence>
596
+ <xsd:element name="cTn" type="CT_TLCommonTimeNodeData" minOccurs="1" maxOccurs="1"/>
597
+ <xsd:element name="tgtEl" type="CT_TLTimeTargetElement" minOccurs="1" maxOccurs="1"/>
598
+ </xsd:sequence>
599
+ <xsd:attribute name="vol" type="a:ST_PositiveFixedPercentage" default="50%" use="optional"/>
600
+ <xsd:attribute name="mute" type="xsd:boolean" use="optional" default="false"/>
601
+ <xsd:attribute name="numSld" type="xsd:unsignedInt" use="optional" default="1"/>
602
+ <xsd:attribute name="showWhenStopped" type="xsd:boolean" use="optional" default="true"/>
603
+ </xsd:complexType>
604
+ <xsd:complexType name="CT_TLMediaNodeAudio">
605
+ <xsd:sequence>
606
+ <xsd:element name="cMediaNode" type="CT_TLCommonMediaNodeData" minOccurs="1" maxOccurs="1"/>
607
+ </xsd:sequence>
608
+ <xsd:attribute name="isNarration" type="xsd:boolean" use="optional" default="false"/>
609
+ </xsd:complexType>
610
+ <xsd:complexType name="CT_TLMediaNodeVideo">
611
+ <xsd:sequence>
612
+ <xsd:element name="cMediaNode" type="CT_TLCommonMediaNodeData" minOccurs="1" maxOccurs="1"/>
613
+ </xsd:sequence>
614
+ <xsd:attribute name="fullScrn" type="xsd:boolean" use="optional" default="false"/>
615
+ </xsd:complexType>
616
+ <xsd:attributeGroup name="AG_TLBuild">
617
+ <xsd:attribute name="spid" type="a:ST_DrawingElementId" use="required"/>
618
+ <xsd:attribute name="grpId" type="xsd:unsignedInt" use="required"/>
619
+ <xsd:attribute name="uiExpand" type="xsd:boolean" use="optional" default="false"/>
620
+ </xsd:attributeGroup>
621
+ <xsd:complexType name="CT_TLTemplate">
622
+ <xsd:sequence>
623
+ <xsd:element name="tnLst" type="CT_TimeNodeList" minOccurs="1" maxOccurs="1"/>
624
+ </xsd:sequence>
625
+ <xsd:attribute name="lvl" type="xsd:unsignedInt" use="optional" default="0"/>
626
+ </xsd:complexType>
627
+ <xsd:complexType name="CT_TLTemplateList">
628
+ <xsd:sequence>
629
+ <xsd:element name="tmpl" type="CT_TLTemplate" minOccurs="0" maxOccurs="9"/>
630
+ </xsd:sequence>
631
+ </xsd:complexType>
632
+ <xsd:simpleType name="ST_TLParaBuildType">
633
+ <xsd:restriction base="xsd:token">
634
+ <xsd:enumeration value="allAtOnce"/>
635
+ <xsd:enumeration value="p"/>
636
+ <xsd:enumeration value="cust"/>
637
+ <xsd:enumeration value="whole"/>
638
+ </xsd:restriction>
639
+ </xsd:simpleType>
640
+ <xsd:complexType name="CT_TLBuildParagraph">
641
+ <xsd:sequence>
642
+ <xsd:element name="tmplLst" type="CT_TLTemplateList" minOccurs="0" maxOccurs="1"/>
643
+ </xsd:sequence>
644
+ <xsd:attributeGroup ref="AG_TLBuild"/>
645
+ <xsd:attribute name="build" type="ST_TLParaBuildType" use="optional" default="whole"/>
646
+ <xsd:attribute name="bldLvl" type="xsd:unsignedInt" use="optional" default="1"/>
647
+ <xsd:attribute name="animBg" type="xsd:boolean" use="optional" default="false"/>
648
+ <xsd:attribute name="autoUpdateAnimBg" type="xsd:boolean" default="true" use="optional"/>
649
+ <xsd:attribute name="rev" type="xsd:boolean" use="optional" default="false"/>
650
+ <xsd:attribute name="advAuto" type="ST_TLTime" use="optional" default="indefinite"/>
651
+ </xsd:complexType>
652
+ <xsd:simpleType name="ST_TLDiagramBuildType">
653
+ <xsd:restriction base="xsd:token">
654
+ <xsd:enumeration value="whole"/>
655
+ <xsd:enumeration value="depthByNode"/>
656
+ <xsd:enumeration value="depthByBranch"/>
657
+ <xsd:enumeration value="breadthByNode"/>
658
+ <xsd:enumeration value="breadthByLvl"/>
659
+ <xsd:enumeration value="cw"/>
660
+ <xsd:enumeration value="cwIn"/>
661
+ <xsd:enumeration value="cwOut"/>
662
+ <xsd:enumeration value="ccw"/>
663
+ <xsd:enumeration value="ccwIn"/>
664
+ <xsd:enumeration value="ccwOut"/>
665
+ <xsd:enumeration value="inByRing"/>
666
+ <xsd:enumeration value="outByRing"/>
667
+ <xsd:enumeration value="up"/>
668
+ <xsd:enumeration value="down"/>
669
+ <xsd:enumeration value="allAtOnce"/>
670
+ <xsd:enumeration value="cust"/>
671
+ </xsd:restriction>
672
+ </xsd:simpleType>
673
+ <xsd:complexType name="CT_TLBuildDiagram">
674
+ <xsd:attributeGroup ref="AG_TLBuild"/>
675
+ <xsd:attribute name="bld" type="ST_TLDiagramBuildType" use="optional" default="whole"/>
676
+ </xsd:complexType>
677
+ <xsd:simpleType name="ST_TLOleChartBuildType">
678
+ <xsd:restriction base="xsd:token">
679
+ <xsd:enumeration value="allAtOnce"/>
680
+ <xsd:enumeration value="series"/>
681
+ <xsd:enumeration value="category"/>
682
+ <xsd:enumeration value="seriesEl"/>
683
+ <xsd:enumeration value="categoryEl"/>
684
+ </xsd:restriction>
685
+ </xsd:simpleType>
686
+ <xsd:complexType name="CT_TLOleBuildChart">
687
+ <xsd:attributeGroup ref="AG_TLBuild"/>
688
+ <xsd:attribute name="bld" type="ST_TLOleChartBuildType" use="optional" default="allAtOnce"/>
689
+ <xsd:attribute name="animBg" type="xsd:boolean" use="optional" default="true"/>
690
+ </xsd:complexType>
691
+ <xsd:complexType name="CT_TLGraphicalObjectBuild">
692
+ <xsd:choice minOccurs="1" maxOccurs="1">
693
+ <xsd:element name="bldAsOne" type="CT_Empty"/>
694
+ <xsd:element name="bldSub" type="a:CT_AnimationGraphicalObjectBuildProperties"/>
695
+ </xsd:choice>
696
+ <xsd:attributeGroup ref="AG_TLBuild"/>
697
+ </xsd:complexType>
698
+ <xsd:complexType name="CT_BuildList">
699
+ <xsd:choice minOccurs="1" maxOccurs="unbounded">
700
+ <xsd:element name="bldP" type="CT_TLBuildParagraph"/>
701
+ <xsd:element name="bldDgm" type="CT_TLBuildDiagram"/>
702
+ <xsd:element name="bldOleChart" type="CT_TLOleBuildChart"/>
703
+ <xsd:element name="bldGraphic" type="CT_TLGraphicalObjectBuild"/>
704
+ </xsd:choice>
705
+ </xsd:complexType>
706
+ <xsd:complexType name="CT_SlideTiming">
707
+ <xsd:sequence>
708
+ <xsd:element name="tnLst" type="CT_TimeNodeList" minOccurs="0" maxOccurs="1"/>
709
+ <xsd:element name="bldLst" type="CT_BuildList" minOccurs="0" maxOccurs="1"/>
710
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
711
+ </xsd:sequence>
712
+ </xsd:complexType>
713
+ <xsd:complexType name="CT_Empty"/>
714
+ <xsd:simpleType name="ST_Name">
715
+ <xsd:restriction base="xsd:string"/>
716
+ </xsd:simpleType>
717
+ <xsd:simpleType name="ST_Direction">
718
+ <xsd:restriction base="xsd:token">
719
+ <xsd:enumeration value="horz"/>
720
+ <xsd:enumeration value="vert"/>
721
+ </xsd:restriction>
722
+ </xsd:simpleType>
723
+ <xsd:simpleType name="ST_Index">
724
+ <xsd:restriction base="xsd:unsignedInt"/>
725
+ </xsd:simpleType>
726
+ <xsd:complexType name="CT_IndexRange">
727
+ <xsd:attribute name="st" type="ST_Index" use="required"/>
728
+ <xsd:attribute name="end" type="ST_Index" use="required"/>
729
+ </xsd:complexType>
730
+ <xsd:complexType name="CT_SlideRelationshipListEntry">
731
+ <xsd:attribute ref="r:id" use="required"/>
732
+ </xsd:complexType>
733
+ <xsd:complexType name="CT_SlideRelationshipList">
734
+ <xsd:sequence>
735
+ <xsd:element name="sld" type="CT_SlideRelationshipListEntry" minOccurs="0"
736
+ maxOccurs="unbounded"/>
737
+ </xsd:sequence>
738
+ </xsd:complexType>
739
+ <xsd:complexType name="CT_CustomShowId">
740
+ <xsd:attribute name="id" type="xsd:unsignedInt" use="required"/>
741
+ </xsd:complexType>
742
+ <xsd:group name="EG_SlideListChoice">
743
+ <xsd:choice>
744
+ <xsd:element name="sldAll" type="CT_Empty"/>
745
+ <xsd:element name="sldRg" type="CT_IndexRange"/>
746
+ <xsd:element name="custShow" type="CT_CustomShowId"/>
747
+ </xsd:choice>
748
+ </xsd:group>
749
+ <xsd:complexType name="CT_CustomerData">
750
+ <xsd:attribute ref="r:id" use="required"/>
751
+ </xsd:complexType>
752
+ <xsd:complexType name="CT_TagsData">
753
+ <xsd:attribute ref="r:id" use="required"/>
754
+ </xsd:complexType>
755
+ <xsd:complexType name="CT_CustomerDataList">
756
+ <xsd:sequence minOccurs="0" maxOccurs="1">
757
+ <xsd:element name="custData" type="CT_CustomerData" minOccurs="0" maxOccurs="unbounded"/>
758
+ <xsd:element name="tags" type="CT_TagsData" minOccurs="0" maxOccurs="1"/>
759
+ </xsd:sequence>
760
+ </xsd:complexType>
761
+ <xsd:complexType name="CT_Extension">
762
+ <xsd:sequence>
763
+ <xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
764
+ </xsd:sequence>
765
+ <xsd:attribute name="uri" type="xsd:token" use="required"/>
766
+ </xsd:complexType>
767
+ <xsd:group name="EG_ExtensionList">
768
+ <xsd:sequence>
769
+ <xsd:element name="ext" type="CT_Extension" minOccurs="0" maxOccurs="unbounded"/>
770
+ </xsd:sequence>
771
+ </xsd:group>
772
+ <xsd:complexType name="CT_ExtensionList">
773
+ <xsd:sequence>
774
+ <xsd:group ref="EG_ExtensionList" minOccurs="0" maxOccurs="1"/>
775
+ </xsd:sequence>
776
+ </xsd:complexType>
777
+ <xsd:complexType name="CT_ExtensionListModify">
778
+ <xsd:sequence>
779
+ <xsd:group ref="EG_ExtensionList" minOccurs="0" maxOccurs="1"/>
780
+ </xsd:sequence>
781
+ <xsd:attribute name="mod" type="xsd:boolean" use="optional" default="false"/>
782
+ </xsd:complexType>
783
+ <xsd:complexType name="CT_CommentAuthor">
784
+ <xsd:sequence>
785
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
786
+ </xsd:sequence>
787
+ <xsd:attribute name="id" type="xsd:unsignedInt" use="required"/>
788
+ <xsd:attribute name="name" type="ST_Name" use="required"/>
789
+ <xsd:attribute name="initials" type="ST_Name" use="required"/>
790
+ <xsd:attribute name="lastIdx" type="xsd:unsignedInt" use="required"/>
791
+ <xsd:attribute name="clrIdx" type="xsd:unsignedInt" use="required"/>
792
+ </xsd:complexType>
793
+ <xsd:complexType name="CT_CommentAuthorList">
794
+ <xsd:sequence>
795
+ <xsd:element name="cmAuthor" type="CT_CommentAuthor" minOccurs="0" maxOccurs="unbounded"/>
796
+ </xsd:sequence>
797
+ </xsd:complexType>
798
+ <xsd:element name="cmAuthorLst" type="CT_CommentAuthorList"/>
799
+ <xsd:complexType name="CT_Comment">
800
+ <xsd:sequence>
801
+ <xsd:element name="pos" type="a:CT_Point2D" minOccurs="1" maxOccurs="1"/>
802
+ <xsd:element name="text" type="xsd:string" minOccurs="1" maxOccurs="1"/>
803
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
804
+ </xsd:sequence>
805
+ <xsd:attribute name="authorId" type="xsd:unsignedInt" use="required"/>
806
+ <xsd:attribute name="dt" type="xsd:dateTime" use="optional"/>
807
+ <xsd:attribute name="idx" type="ST_Index" use="required"/>
808
+ </xsd:complexType>
809
+ <xsd:complexType name="CT_CommentList">
810
+ <xsd:sequence>
811
+ <xsd:element name="cm" type="CT_Comment" minOccurs="0" maxOccurs="unbounded"/>
812
+ </xsd:sequence>
813
+ </xsd:complexType>
814
+ <xsd:element name="cmLst" type="CT_CommentList"/>
815
+ <xsd:attributeGroup name="AG_Ole">
816
+ <xsd:attribute name="spid" type="a:ST_ShapeID" use="optional"/>
817
+ <xsd:attribute name="name" type="xsd:string" use="optional" default=""/>
818
+ <xsd:attribute name="showAsIcon" type="xsd:boolean" use="optional" default="false"/>
819
+ <xsd:attribute ref="r:id" use="optional"/>
820
+ <xsd:attribute name="imgW" type="a:ST_PositiveCoordinate32" use="optional"/>
821
+ <xsd:attribute name="imgH" type="a:ST_PositiveCoordinate32" use="optional"/>
822
+ </xsd:attributeGroup>
823
+ <xsd:simpleType name="ST_OleObjectFollowColorScheme">
824
+ <xsd:restriction base="xsd:token">
825
+ <xsd:enumeration value="none"/>
826
+ <xsd:enumeration value="full"/>
827
+ <xsd:enumeration value="textAndBackground"/>
828
+ </xsd:restriction>
829
+ </xsd:simpleType>
830
+ <xsd:complexType name="CT_OleObjectEmbed">
831
+ <xsd:sequence>
832
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
833
+ </xsd:sequence>
834
+ <xsd:attribute name="followColorScheme" type="ST_OleObjectFollowColorScheme" use="optional"
835
+ default="none"/>
836
+ </xsd:complexType>
837
+ <xsd:complexType name="CT_OleObjectLink">
838
+ <xsd:sequence>
839
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
840
+ </xsd:sequence>
841
+ <xsd:attribute name="updateAutomatic" type="xsd:boolean" use="optional" default="false"/>
842
+ </xsd:complexType>
843
+ <xsd:complexType name="CT_OleObject">
844
+ <xsd:sequence>
845
+ <xsd:choice minOccurs="1" maxOccurs="1">
846
+ <xsd:element name="embed" type="CT_OleObjectEmbed"/>
847
+ <xsd:element name="link" type="CT_OleObjectLink"/>
848
+ </xsd:choice>
849
+ <xsd:element name="pic" type="CT_Picture" minOccurs="0" maxOccurs="1"/>
850
+ </xsd:sequence>
851
+ <xsd:attributeGroup ref="AG_Ole"/>
852
+ <xsd:attribute name="progId" type="xsd:string" use="optional"/>
853
+ </xsd:complexType>
854
+ <xsd:element name="oleObj" type="CT_OleObject"/>
855
+ <xsd:complexType name="CT_Control">
856
+ <xsd:sequence>
857
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
858
+ <xsd:element name="pic" type="CT_Picture" minOccurs="0" maxOccurs="1"/>
859
+ </xsd:sequence>
860
+ <xsd:attributeGroup ref="AG_Ole"/>
861
+ </xsd:complexType>
862
+ <xsd:complexType name="CT_ControlList">
863
+ <xsd:sequence>
864
+ <xsd:element name="control" type="CT_Control" minOccurs="0" maxOccurs="unbounded"/>
865
+ </xsd:sequence>
866
+ </xsd:complexType>
867
+ <xsd:simpleType name="ST_SlideId">
868
+ <xsd:restriction base="xsd:unsignedInt">
869
+ <xsd:minInclusive value="256"/>
870
+ <xsd:maxExclusive value="2147483648"/>
871
+ </xsd:restriction>
872
+ </xsd:simpleType>
873
+ <xsd:complexType name="CT_SlideIdListEntry">
874
+ <xsd:sequence>
875
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
876
+ </xsd:sequence>
877
+ <xsd:attribute name="id" type="ST_SlideId" use="required"/>
878
+ <xsd:attribute ref="r:id" use="required"/>
879
+ </xsd:complexType>
880
+ <xsd:complexType name="CT_SlideIdList">
881
+ <xsd:sequence>
882
+ <xsd:element name="sldId" type="CT_SlideIdListEntry" minOccurs="0" maxOccurs="unbounded"/>
883
+ </xsd:sequence>
884
+ </xsd:complexType>
885
+ <xsd:simpleType name="ST_SlideMasterId">
886
+ <xsd:restriction base="xsd:unsignedInt">
887
+ <xsd:minInclusive value="2147483648"/>
888
+ </xsd:restriction>
889
+ </xsd:simpleType>
890
+ <xsd:complexType name="CT_SlideMasterIdListEntry">
891
+ <xsd:sequence>
892
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
893
+ </xsd:sequence>
894
+ <xsd:attribute name="id" type="ST_SlideMasterId" use="optional"/>
895
+ <xsd:attribute ref="r:id" use="required"/>
896
+ </xsd:complexType>
897
+ <xsd:complexType name="CT_SlideMasterIdList">
898
+ <xsd:sequence>
899
+ <xsd:element name="sldMasterId" type="CT_SlideMasterIdListEntry" minOccurs="0"
900
+ maxOccurs="unbounded"/>
901
+ </xsd:sequence>
902
+ </xsd:complexType>
903
+ <xsd:complexType name="CT_NotesMasterIdListEntry">
904
+ <xsd:sequence>
905
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
906
+ </xsd:sequence>
907
+ <xsd:attribute ref="r:id" use="required"/>
908
+ </xsd:complexType>
909
+ <xsd:complexType name="CT_NotesMasterIdList">
910
+ <xsd:sequence>
911
+ <xsd:element name="notesMasterId" type="CT_NotesMasterIdListEntry" minOccurs="0" maxOccurs="1"
912
+ />
913
+ </xsd:sequence>
914
+ </xsd:complexType>
915
+ <xsd:complexType name="CT_HandoutMasterIdListEntry">
916
+ <xsd:sequence>
917
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
918
+ </xsd:sequence>
919
+ <xsd:attribute ref="r:id" use="required"/>
920
+ </xsd:complexType>
921
+ <xsd:complexType name="CT_HandoutMasterIdList">
922
+ <xsd:sequence>
923
+ <xsd:element name="handoutMasterId" type="CT_HandoutMasterIdListEntry" minOccurs="0"
924
+ maxOccurs="1"/>
925
+ </xsd:sequence>
926
+ </xsd:complexType>
927
+ <xsd:complexType name="CT_EmbeddedFontDataId">
928
+ <xsd:attribute ref="r:id" use="required"/>
929
+ </xsd:complexType>
930
+ <xsd:complexType name="CT_EmbeddedFontListEntry">
931
+ <xsd:sequence>
932
+ <xsd:element name="font" type="a:CT_TextFont" minOccurs="1" maxOccurs="1"/>
933
+ <xsd:element name="regular" type="CT_EmbeddedFontDataId" minOccurs="0" maxOccurs="1"/>
934
+ <xsd:element name="bold" type="CT_EmbeddedFontDataId" minOccurs="0" maxOccurs="1"/>
935
+ <xsd:element name="italic" type="CT_EmbeddedFontDataId" minOccurs="0" maxOccurs="1"/>
936
+ <xsd:element name="boldItalic" type="CT_EmbeddedFontDataId" minOccurs="0" maxOccurs="1"/>
937
+ </xsd:sequence>
938
+ </xsd:complexType>
939
+ <xsd:complexType name="CT_EmbeddedFontList">
940
+ <xsd:sequence>
941
+ <xsd:element name="embeddedFont" type="CT_EmbeddedFontListEntry" minOccurs="0"
942
+ maxOccurs="unbounded"/>
943
+ </xsd:sequence>
944
+ </xsd:complexType>
945
+ <xsd:complexType name="CT_SmartTags">
946
+ <xsd:attribute ref="r:id" use="required"/>
947
+ </xsd:complexType>
948
+ <xsd:complexType name="CT_CustomShow">
949
+ <xsd:sequence>
950
+ <xsd:element name="sldLst" type="CT_SlideRelationshipList" minOccurs="1" maxOccurs="1"/>
951
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
952
+ </xsd:sequence>
953
+ <xsd:attribute name="name" type="ST_Name" use="required"/>
954
+ <xsd:attribute name="id" type="xsd:unsignedInt" use="required"/>
955
+ </xsd:complexType>
956
+ <xsd:complexType name="CT_CustomShowList">
957
+ <xsd:sequence>
958
+ <xsd:element name="custShow" type="CT_CustomShow" minOccurs="0" maxOccurs="unbounded"/>
959
+ </xsd:sequence>
960
+ </xsd:complexType>
961
+ <xsd:simpleType name="ST_PhotoAlbumLayout">
962
+ <xsd:restriction base="xsd:token">
963
+ <xsd:enumeration value="fitToSlide"/>
964
+ <xsd:enumeration value="1pic"/>
965
+ <xsd:enumeration value="2pic"/>
966
+ <xsd:enumeration value="4pic"/>
967
+ <xsd:enumeration value="1picTitle"/>
968
+ <xsd:enumeration value="2picTitle"/>
969
+ <xsd:enumeration value="4picTitle"/>
970
+ </xsd:restriction>
971
+ </xsd:simpleType>
972
+ <xsd:simpleType name="ST_PhotoAlbumFrameShape">
973
+ <xsd:restriction base="xsd:token">
974
+ <xsd:enumeration value="frameStyle1"/>
975
+ <xsd:enumeration value="frameStyle2"/>
976
+ <xsd:enumeration value="frameStyle3"/>
977
+ <xsd:enumeration value="frameStyle4"/>
978
+ <xsd:enumeration value="frameStyle5"/>
979
+ <xsd:enumeration value="frameStyle6"/>
980
+ <xsd:enumeration value="frameStyle7"/>
981
+ </xsd:restriction>
982
+ </xsd:simpleType>
983
+ <xsd:complexType name="CT_PhotoAlbum">
984
+ <xsd:sequence>
985
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
986
+ </xsd:sequence>
987
+ <xsd:attribute name="bw" type="xsd:boolean" use="optional" default="false"/>
988
+ <xsd:attribute name="showCaptions" type="xsd:boolean" use="optional" default="false"/>
989
+ <xsd:attribute name="layout" type="ST_PhotoAlbumLayout" use="optional" default="fitToSlide"/>
990
+ <xsd:attribute name="frame" type="ST_PhotoAlbumFrameShape" use="optional" default="frameStyle1"
991
+ />
992
+ </xsd:complexType>
993
+ <xsd:simpleType name="ST_SlideSizeCoordinate">
994
+ <xsd:restriction base="a:ST_PositiveCoordinate32">
995
+ <xsd:minInclusive value="914400"/>
996
+ <xsd:maxInclusive value="51206400"/>
997
+ </xsd:restriction>
998
+ </xsd:simpleType>
999
+ <xsd:simpleType name="ST_SlideSizeType">
1000
+ <xsd:restriction base="xsd:token">
1001
+ <xsd:enumeration value="screen4x3"/>
1002
+ <xsd:enumeration value="letter"/>
1003
+ <xsd:enumeration value="A4"/>
1004
+ <xsd:enumeration value="35mm"/>
1005
+ <xsd:enumeration value="overhead"/>
1006
+ <xsd:enumeration value="banner"/>
1007
+ <xsd:enumeration value="custom"/>
1008
+ <xsd:enumeration value="ledger"/>
1009
+ <xsd:enumeration value="A3"/>
1010
+ <xsd:enumeration value="B4ISO"/>
1011
+ <xsd:enumeration value="B5ISO"/>
1012
+ <xsd:enumeration value="B4JIS"/>
1013
+ <xsd:enumeration value="B5JIS"/>
1014
+ <xsd:enumeration value="hagakiCard"/>
1015
+ <xsd:enumeration value="screen16x9"/>
1016
+ <xsd:enumeration value="screen16x10"/>
1017
+ </xsd:restriction>
1018
+ </xsd:simpleType>
1019
+ <xsd:complexType name="CT_SlideSize">
1020
+ <xsd:attribute name="cx" type="ST_SlideSizeCoordinate" use="required"/>
1021
+ <xsd:attribute name="cy" type="ST_SlideSizeCoordinate" use="required"/>
1022
+ <xsd:attribute name="type" type="ST_SlideSizeType" use="optional" default="custom"/>
1023
+ </xsd:complexType>
1024
+ <xsd:complexType name="CT_Kinsoku">
1025
+ <xsd:attribute name="lang" type="xsd:string" use="optional"/>
1026
+ <xsd:attribute name="invalStChars" type="xsd:string" use="required"/>
1027
+ <xsd:attribute name="invalEndChars" type="xsd:string" use="required"/>
1028
+ </xsd:complexType>
1029
+ <xsd:simpleType name="ST_BookmarkIdSeed">
1030
+ <xsd:restriction base="xsd:unsignedInt">
1031
+ <xsd:minInclusive value="1"/>
1032
+ <xsd:maxExclusive value="2147483648"/>
1033
+ </xsd:restriction>
1034
+ </xsd:simpleType>
1035
+ <xsd:complexType name="CT_ModifyVerifier">
1036
+ <xsd:attribute name="algorithmName" type="xsd:string" use="optional"/>
1037
+ <xsd:attribute name="hashValue" type="xsd:base64Binary" use="optional"/>
1038
+ <xsd:attribute name="saltValue" type="xsd:base64Binary" use="optional"/>
1039
+ <xsd:attribute name="spinValue" type="xsd:unsignedInt" use="optional"/>
1040
+ <xsd:attribute name="cryptProviderType" type="s:ST_CryptProv" use="optional"/>
1041
+ <xsd:attribute name="cryptAlgorithmClass" type="s:ST_AlgClass" use="optional"/>
1042
+ <xsd:attribute name="cryptAlgorithmType" type="s:ST_AlgType" use="optional"/>
1043
+ <xsd:attribute name="cryptAlgorithmSid" type="xsd:unsignedInt" use="optional"/>
1044
+ <xsd:attribute name="spinCount" type="xsd:unsignedInt" use="optional"/>
1045
+ <xsd:attribute name="saltData" type="xsd:base64Binary" use="optional"/>
1046
+ <xsd:attribute name="hashData" type="xsd:base64Binary" use="optional"/>
1047
+ <xsd:attribute name="cryptProvider" type="xsd:string" use="optional"/>
1048
+ <xsd:attribute name="algIdExt" type="xsd:unsignedInt" use="optional"/>
1049
+ <xsd:attribute name="algIdExtSource" type="xsd:string" use="optional"/>
1050
+ <xsd:attribute name="cryptProviderTypeExt" type="xsd:unsignedInt" use="optional"/>
1051
+ <xsd:attribute name="cryptProviderTypeExtSource" type="xsd:string" use="optional"/>
1052
+ </xsd:complexType>
1053
+ <xsd:complexType name="CT_Presentation">
1054
+ <xsd:sequence>
1055
+ <xsd:element name="sldMasterIdLst" type="CT_SlideMasterIdList" minOccurs="0" maxOccurs="1"/>
1056
+ <xsd:element name="notesMasterIdLst" type="CT_NotesMasterIdList" minOccurs="0" maxOccurs="1"/>
1057
+ <xsd:element name="handoutMasterIdLst" type="CT_HandoutMasterIdList" minOccurs="0"
1058
+ maxOccurs="1"/>
1059
+ <xsd:element name="sldIdLst" type="CT_SlideIdList" minOccurs="0" maxOccurs="1"/>
1060
+ <xsd:element name="sldSz" type="CT_SlideSize" minOccurs="0" maxOccurs="1"/>
1061
+ <xsd:element name="notesSz" type="a:CT_PositiveSize2D" minOccurs="1" maxOccurs="1"/>
1062
+ <xsd:element name="smartTags" type="CT_SmartTags" minOccurs="0" maxOccurs="1"/>
1063
+ <xsd:element name="embeddedFontLst" type="CT_EmbeddedFontList" minOccurs="0" maxOccurs="1"/>
1064
+ <xsd:element name="custShowLst" type="CT_CustomShowList" minOccurs="0" maxOccurs="1"/>
1065
+ <xsd:element name="photoAlbum" type="CT_PhotoAlbum" minOccurs="0" maxOccurs="1"/>
1066
+ <xsd:element name="custDataLst" type="CT_CustomerDataList" minOccurs="0" maxOccurs="1"/>
1067
+ <xsd:element name="kinsoku" type="CT_Kinsoku" minOccurs="0"/>
1068
+ <xsd:element name="defaultTextStyle" type="a:CT_TextListStyle" minOccurs="0" maxOccurs="1"/>
1069
+ <xsd:element name="modifyVerifier" type="CT_ModifyVerifier" minOccurs="0" maxOccurs="1"/>
1070
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1071
+ </xsd:sequence>
1072
+ <xsd:attribute name="serverZoom" type="a:ST_Percentage" use="optional" default="50%"/>
1073
+ <xsd:attribute name="firstSlideNum" type="xsd:int" use="optional" default="1"/>
1074
+ <xsd:attribute name="showSpecialPlsOnTitleSld" type="xsd:boolean" use="optional" default="true"/>
1075
+ <xsd:attribute name="rtl" type="xsd:boolean" use="optional" default="false"/>
1076
+ <xsd:attribute name="removePersonalInfoOnSave" type="xsd:boolean" use="optional" default="false"/>
1077
+ <xsd:attribute name="compatMode" type="xsd:boolean" use="optional" default="false"/>
1078
+ <xsd:attribute name="strictFirstAndLastChars" type="xsd:boolean" use="optional" default="true"/>
1079
+ <xsd:attribute name="embedTrueTypeFonts" type="xsd:boolean" use="optional" default="false"/>
1080
+ <xsd:attribute name="saveSubsetFonts" type="xsd:boolean" use="optional" default="false"/>
1081
+ <xsd:attribute name="autoCompressPictures" type="xsd:boolean" use="optional" default="true"/>
1082
+ <xsd:attribute name="bookmarkIdSeed" type="ST_BookmarkIdSeed" use="optional" default="1"/>
1083
+ <xsd:attribute name="conformance" type="s:ST_ConformanceClass"/>
1084
+ </xsd:complexType>
1085
+ <xsd:element name="presentation" type="CT_Presentation"/>
1086
+ <xsd:complexType name="CT_HtmlPublishProperties">
1087
+ <xsd:sequence>
1088
+ <xsd:group ref="EG_SlideListChoice" minOccurs="1" maxOccurs="1"/>
1089
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1090
+ </xsd:sequence>
1091
+ <xsd:attribute name="showSpeakerNotes" type="xsd:boolean" use="optional" default="true"/>
1092
+ <xsd:attribute name="target" type="xsd:string" use="optional"/>
1093
+ <xsd:attribute name="title" type="xsd:string" use="optional" default=""/>
1094
+ <xsd:attribute ref="r:id" use="required"/>
1095
+ </xsd:complexType>
1096
+ <xsd:simpleType name="ST_WebColorType">
1097
+ <xsd:restriction base="xsd:token">
1098
+ <xsd:enumeration value="none"/>
1099
+ <xsd:enumeration value="browser"/>
1100
+ <xsd:enumeration value="presentationText"/>
1101
+ <xsd:enumeration value="presentationAccent"/>
1102
+ <xsd:enumeration value="whiteTextOnBlack"/>
1103
+ <xsd:enumeration value="blackTextOnWhite"/>
1104
+ </xsd:restriction>
1105
+ </xsd:simpleType>
1106
+ <xsd:simpleType name="ST_WebScreenSize">
1107
+ <xsd:restriction base="xsd:token">
1108
+ <xsd:enumeration value="544x376"/>
1109
+ <xsd:enumeration value="640x480"/>
1110
+ <xsd:enumeration value="720x512"/>
1111
+ <xsd:enumeration value="800x600"/>
1112
+ <xsd:enumeration value="1024x768"/>
1113
+ <xsd:enumeration value="1152x882"/>
1114
+ <xsd:enumeration value="1152x900"/>
1115
+ <xsd:enumeration value="1280x1024"/>
1116
+ <xsd:enumeration value="1600x1200"/>
1117
+ <xsd:enumeration value="1800x1400"/>
1118
+ <xsd:enumeration value="1920x1200"/>
1119
+ </xsd:restriction>
1120
+ </xsd:simpleType>
1121
+ <xsd:simpleType name="ST_WebEncoding">
1122
+ <xsd:restriction base="xsd:string"/>
1123
+ </xsd:simpleType>
1124
+ <xsd:complexType name="CT_WebProperties">
1125
+ <xsd:sequence>
1126
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1127
+ </xsd:sequence>
1128
+ <xsd:attribute name="showAnimation" type="xsd:boolean" use="optional" default="false"/>
1129
+ <xsd:attribute name="resizeGraphics" type="xsd:boolean" use="optional" default="true"/>
1130
+ <xsd:attribute name="allowPng" type="xsd:boolean" use="optional" default="false"/>
1131
+ <xsd:attribute name="relyOnVml" type="xsd:boolean" use="optional" default="false"/>
1132
+ <xsd:attribute name="organizeInFolders" type="xsd:boolean" use="optional" default="true"/>
1133
+ <xsd:attribute name="useLongFilenames" type="xsd:boolean" use="optional" default="true"/>
1134
+ <xsd:attribute name="imgSz" type="ST_WebScreenSize" use="optional" default="800x600"/>
1135
+ <xsd:attribute name="encoding" type="ST_WebEncoding" use="optional" default=""/>
1136
+ <xsd:attribute name="clr" type="ST_WebColorType" use="optional" default="whiteTextOnBlack"/>
1137
+ </xsd:complexType>
1138
+ <xsd:simpleType name="ST_PrintWhat">
1139
+ <xsd:restriction base="xsd:token">
1140
+ <xsd:enumeration value="slides"/>
1141
+ <xsd:enumeration value="handouts1"/>
1142
+ <xsd:enumeration value="handouts2"/>
1143
+ <xsd:enumeration value="handouts3"/>
1144
+ <xsd:enumeration value="handouts4"/>
1145
+ <xsd:enumeration value="handouts6"/>
1146
+ <xsd:enumeration value="handouts9"/>
1147
+ <xsd:enumeration value="notes"/>
1148
+ <xsd:enumeration value="outline"/>
1149
+ </xsd:restriction>
1150
+ </xsd:simpleType>
1151
+ <xsd:simpleType name="ST_PrintColorMode">
1152
+ <xsd:restriction base="xsd:token">
1153
+ <xsd:enumeration value="bw"/>
1154
+ <xsd:enumeration value="gray"/>
1155
+ <xsd:enumeration value="clr"/>
1156
+ </xsd:restriction>
1157
+ </xsd:simpleType>
1158
+ <xsd:complexType name="CT_PrintProperties">
1159
+ <xsd:sequence>
1160
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1161
+ </xsd:sequence>
1162
+ <xsd:attribute name="prnWhat" type="ST_PrintWhat" use="optional" default="slides"/>
1163
+ <xsd:attribute name="clrMode" type="ST_PrintColorMode" use="optional" default="clr"/>
1164
+ <xsd:attribute name="hiddenSlides" type="xsd:boolean" use="optional" default="false"/>
1165
+ <xsd:attribute name="scaleToFitPaper" type="xsd:boolean" use="optional" default="false"/>
1166
+ <xsd:attribute name="frameSlides" type="xsd:boolean" use="optional" default="false"/>
1167
+ </xsd:complexType>
1168
+ <xsd:complexType name="CT_ShowInfoBrowse">
1169
+ <xsd:attribute name="showScrollbar" type="xsd:boolean" use="optional" default="true"/>
1170
+ </xsd:complexType>
1171
+ <xsd:complexType name="CT_ShowInfoKiosk">
1172
+ <xsd:attribute name="restart" type="xsd:unsignedInt" use="optional" default="300000"/>
1173
+ </xsd:complexType>
1174
+ <xsd:group name="EG_ShowType">
1175
+ <xsd:choice>
1176
+ <xsd:element name="present" type="CT_Empty"/>
1177
+ <xsd:element name="browse" type="CT_ShowInfoBrowse"/>
1178
+ <xsd:element name="kiosk" type="CT_ShowInfoKiosk"/>
1179
+ </xsd:choice>
1180
+ </xsd:group>
1181
+ <xsd:complexType name="CT_ShowProperties">
1182
+ <xsd:sequence minOccurs="0" maxOccurs="1">
1183
+ <xsd:group ref="EG_ShowType" minOccurs="0" maxOccurs="1"/>
1184
+ <xsd:group ref="EG_SlideListChoice" minOccurs="0" maxOccurs="1"/>
1185
+ <xsd:element name="penClr" type="a:CT_Color" minOccurs="0" maxOccurs="1"/>
1186
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1187
+ </xsd:sequence>
1188
+ <xsd:attribute name="loop" type="xsd:boolean" use="optional" default="false"/>
1189
+ <xsd:attribute name="showNarration" type="xsd:boolean" use="optional" default="false"/>
1190
+ <xsd:attribute name="showAnimation" type="xsd:boolean" use="optional" default="true"/>
1191
+ <xsd:attribute name="useTimings" type="xsd:boolean" use="optional" default="true"/>
1192
+ </xsd:complexType>
1193
+ <xsd:complexType name="CT_PresentationProperties">
1194
+ <xsd:sequence>
1195
+ <xsd:element name="htmlPubPr" type="CT_HtmlPublishProperties" minOccurs="0" maxOccurs="1"/>
1196
+ <xsd:element name="webPr" type="CT_WebProperties" minOccurs="0" maxOccurs="1"/>
1197
+ <xsd:element name="prnPr" type="CT_PrintProperties" minOccurs="0" maxOccurs="1"/>
1198
+ <xsd:element name="showPr" type="CT_ShowProperties" minOccurs="0" maxOccurs="1"/>
1199
+ <xsd:element name="clrMru" type="a:CT_ColorMRU" minOccurs="0" maxOccurs="1"/>
1200
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1201
+ </xsd:sequence>
1202
+ </xsd:complexType>
1203
+ <xsd:element name="presentationPr" type="CT_PresentationProperties"/>
1204
+ <xsd:complexType name="CT_HeaderFooter">
1205
+ <xsd:sequence>
1206
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
1207
+ </xsd:sequence>
1208
+ <xsd:attribute name="sldNum" type="xsd:boolean" use="optional" default="true"/>
1209
+ <xsd:attribute name="hdr" type="xsd:boolean" use="optional" default="true"/>
1210
+ <xsd:attribute name="ftr" type="xsd:boolean" use="optional" default="true"/>
1211
+ <xsd:attribute name="dt" type="xsd:boolean" use="optional" default="true"/>
1212
+ </xsd:complexType>
1213
+ <xsd:simpleType name="ST_PlaceholderType">
1214
+ <xsd:restriction base="xsd:token">
1215
+ <xsd:enumeration value="title"/>
1216
+ <xsd:enumeration value="body"/>
1217
+ <xsd:enumeration value="ctrTitle"/>
1218
+ <xsd:enumeration value="subTitle"/>
1219
+ <xsd:enumeration value="dt"/>
1220
+ <xsd:enumeration value="sldNum"/>
1221
+ <xsd:enumeration value="ftr"/>
1222
+ <xsd:enumeration value="hdr"/>
1223
+ <xsd:enumeration value="obj"/>
1224
+ <xsd:enumeration value="chart"/>
1225
+ <xsd:enumeration value="tbl"/>
1226
+ <xsd:enumeration value="clipArt"/>
1227
+ <xsd:enumeration value="dgm"/>
1228
+ <xsd:enumeration value="media"/>
1229
+ <xsd:enumeration value="sldImg"/>
1230
+ <xsd:enumeration value="pic"/>
1231
+ </xsd:restriction>
1232
+ </xsd:simpleType>
1233
+ <xsd:simpleType name="ST_PlaceholderSize">
1234
+ <xsd:restriction base="xsd:token">
1235
+ <xsd:enumeration value="full"/>
1236
+ <xsd:enumeration value="half"/>
1237
+ <xsd:enumeration value="quarter"/>
1238
+ </xsd:restriction>
1239
+ </xsd:simpleType>
1240
+ <xsd:complexType name="CT_Placeholder">
1241
+ <xsd:sequence>
1242
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
1243
+ </xsd:sequence>
1244
+ <xsd:attribute name="type" type="ST_PlaceholderType" use="optional" default="obj"/>
1245
+ <xsd:attribute name="orient" type="ST_Direction" use="optional" default="horz"/>
1246
+ <xsd:attribute name="sz" type="ST_PlaceholderSize" use="optional" default="full"/>
1247
+ <xsd:attribute name="idx" type="xsd:unsignedInt" use="optional" default="0"/>
1248
+ <xsd:attribute name="hasCustomPrompt" type="xsd:boolean" use="optional" default="false"/>
1249
+ </xsd:complexType>
1250
+ <xsd:complexType name="CT_ApplicationNonVisualDrawingProps">
1251
+ <xsd:sequence>
1252
+ <xsd:element name="ph" type="CT_Placeholder" minOccurs="0" maxOccurs="1"/>
1253
+ <xsd:group ref="a:EG_Media" minOccurs="0" maxOccurs="1"/>
1254
+ <xsd:element name="custDataLst" type="CT_CustomerDataList" minOccurs="0" maxOccurs="1"/>
1255
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1256
+ </xsd:sequence>
1257
+ <xsd:attribute name="isPhoto" type="xsd:boolean" use="optional" default="false"/>
1258
+ <xsd:attribute name="userDrawn" type="xsd:boolean" use="optional" default="false"/>
1259
+ </xsd:complexType>
1260
+ <xsd:complexType name="CT_ShapeNonVisual">
1261
+ <xsd:sequence>
1262
+ <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
1263
+ <xsd:element name="cNvSpPr" type="a:CT_NonVisualDrawingShapeProps" minOccurs="1" maxOccurs="1"/>
1264
+ <xsd:element name="nvPr" type="CT_ApplicationNonVisualDrawingProps" minOccurs="1"
1265
+ maxOccurs="1"/>
1266
+ </xsd:sequence>
1267
+ </xsd:complexType>
1268
+ <xsd:complexType name="CT_Shape">
1269
+ <xsd:sequence>
1270
+ <xsd:element name="nvSpPr" type="CT_ShapeNonVisual" minOccurs="1" maxOccurs="1"/>
1271
+ <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/>
1272
+ <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/>
1273
+ <xsd:element name="txBody" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/>
1274
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
1275
+ </xsd:sequence>
1276
+ <xsd:attribute name="useBgFill" type="xsd:boolean" use="optional" default="false"/>
1277
+ </xsd:complexType>
1278
+ <xsd:complexType name="CT_ConnectorNonVisual">
1279
+ <xsd:sequence>
1280
+ <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
1281
+ <xsd:element name="cNvCxnSpPr" type="a:CT_NonVisualConnectorProperties" minOccurs="1"
1282
+ maxOccurs="1"/>
1283
+ <xsd:element name="nvPr" type="CT_ApplicationNonVisualDrawingProps" minOccurs="1"
1284
+ maxOccurs="1"/>
1285
+ </xsd:sequence>
1286
+ </xsd:complexType>
1287
+ <xsd:complexType name="CT_Connector">
1288
+ <xsd:sequence>
1289
+ <xsd:element name="nvCxnSpPr" type="CT_ConnectorNonVisual" minOccurs="1" maxOccurs="1"/>
1290
+ <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/>
1291
+ <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/>
1292
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
1293
+ </xsd:sequence>
1294
+ </xsd:complexType>
1295
+ <xsd:complexType name="CT_PictureNonVisual">
1296
+ <xsd:sequence>
1297
+ <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
1298
+ <xsd:element name="cNvPicPr" type="a:CT_NonVisualPictureProperties" minOccurs="1"
1299
+ maxOccurs="1"/>
1300
+ <xsd:element name="nvPr" type="CT_ApplicationNonVisualDrawingProps" minOccurs="1"
1301
+ maxOccurs="1"/>
1302
+ </xsd:sequence>
1303
+ </xsd:complexType>
1304
+ <xsd:complexType name="CT_Picture">
1305
+ <xsd:sequence>
1306
+ <xsd:element name="nvPicPr" type="CT_PictureNonVisual" minOccurs="1" maxOccurs="1"/>
1307
+ <xsd:element name="blipFill" type="a:CT_BlipFillProperties" minOccurs="1" maxOccurs="1"/>
1308
+ <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/>
1309
+ <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/>
1310
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
1311
+ </xsd:sequence>
1312
+ </xsd:complexType>
1313
+ <xsd:complexType name="CT_GraphicalObjectFrameNonVisual">
1314
+ <xsd:sequence>
1315
+ <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
1316
+ <xsd:element name="cNvGraphicFramePr" type="a:CT_NonVisualGraphicFrameProperties"
1317
+ minOccurs="1" maxOccurs="1"/>
1318
+ <xsd:element name="nvPr" type="CT_ApplicationNonVisualDrawingProps" minOccurs="1"
1319
+ maxOccurs="1"/>
1320
+ </xsd:sequence>
1321
+ </xsd:complexType>
1322
+ <xsd:complexType name="CT_GraphicalObjectFrame">
1323
+ <xsd:sequence>
1324
+ <xsd:element name="nvGraphicFramePr" type="CT_GraphicalObjectFrameNonVisual" minOccurs="1"
1325
+ maxOccurs="1"/>
1326
+ <xsd:element name="xfrm" type="a:CT_Transform2D" minOccurs="1" maxOccurs="1"/>
1327
+ <xsd:element ref="a:graphic" minOccurs="1" maxOccurs="1"/>
1328
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
1329
+ </xsd:sequence>
1330
+ <xsd:attribute name="bwMode" type="a:ST_BlackWhiteMode" use="optional"/>
1331
+ </xsd:complexType>
1332
+ <xsd:complexType name="CT_GroupShapeNonVisual">
1333
+ <xsd:sequence>
1334
+ <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
1335
+ <xsd:element name="cNvGrpSpPr" type="a:CT_NonVisualGroupDrawingShapeProps" minOccurs="1"
1336
+ maxOccurs="1"/>
1337
+ <xsd:element name="nvPr" type="CT_ApplicationNonVisualDrawingProps" minOccurs="1"
1338
+ maxOccurs="1"/>
1339
+ </xsd:sequence>
1340
+ </xsd:complexType>
1341
+ <xsd:complexType name="CT_GroupShape">
1342
+ <xsd:sequence>
1343
+ <xsd:element name="nvGrpSpPr" type="CT_GroupShapeNonVisual" minOccurs="1" maxOccurs="1"/>
1344
+ <xsd:element name="grpSpPr" type="a:CT_GroupShapeProperties" minOccurs="1" maxOccurs="1"/>
1345
+ <xsd:choice minOccurs="0" maxOccurs="unbounded">
1346
+ <xsd:element name="sp" type="CT_Shape"/>
1347
+ <xsd:element name="grpSp" type="CT_GroupShape"/>
1348
+ <xsd:element name="graphicFrame" type="CT_GraphicalObjectFrame"/>
1349
+ <xsd:element name="cxnSp" type="CT_Connector"/>
1350
+ <xsd:element name="pic" type="CT_Picture"/>
1351
+ <xsd:element name="contentPart" type="CT_Rel"/>
1352
+ </xsd:choice>
1353
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
1354
+ </xsd:sequence>
1355
+ </xsd:complexType>
1356
+ <xsd:complexType name="CT_Rel">
1357
+ <xsd:attribute ref="r:id" use="required"/>
1358
+ </xsd:complexType>
1359
+ <xsd:group name="EG_TopLevelSlide">
1360
+ <xsd:sequence>
1361
+ <xsd:element name="clrMap" type="a:CT_ColorMapping" minOccurs="1" maxOccurs="1"/>
1362
+ </xsd:sequence>
1363
+ </xsd:group>
1364
+ <xsd:group name="EG_ChildSlide">
1365
+ <xsd:sequence>
1366
+ <xsd:element name="clrMapOvr" type="a:CT_ColorMappingOverride" minOccurs="0" maxOccurs="1"/>
1367
+ </xsd:sequence>
1368
+ </xsd:group>
1369
+ <xsd:attributeGroup name="AG_ChildSlide">
1370
+ <xsd:attribute name="showMasterSp" type="xsd:boolean" use="optional" default="true"/>
1371
+ <xsd:attribute name="showMasterPhAnim" type="xsd:boolean" use="optional" default="true"/>
1372
+ </xsd:attributeGroup>
1373
+ <xsd:complexType name="CT_BackgroundProperties">
1374
+ <xsd:sequence>
1375
+ <xsd:group ref="a:EG_FillProperties" minOccurs="1" maxOccurs="1"/>
1376
+ <xsd:group ref="a:EG_EffectProperties" minOccurs="0" maxOccurs="1"/>
1377
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1378
+ </xsd:sequence>
1379
+ <xsd:attribute name="shadeToTitle" type="xsd:boolean" use="optional" default="false"/>
1380
+ </xsd:complexType>
1381
+ <xsd:group name="EG_Background">
1382
+ <xsd:choice>
1383
+ <xsd:element name="bgPr" type="CT_BackgroundProperties"/>
1384
+ <xsd:element name="bgRef" type="a:CT_StyleMatrixReference"/>
1385
+ </xsd:choice>
1386
+ </xsd:group>
1387
+ <xsd:complexType name="CT_Background">
1388
+ <xsd:sequence>
1389
+ <xsd:group ref="EG_Background"/>
1390
+ </xsd:sequence>
1391
+ <xsd:attribute name="bwMode" type="a:ST_BlackWhiteMode" use="optional" default="white"/>
1392
+ </xsd:complexType>
1393
+ <xsd:complexType name="CT_CommonSlideData">
1394
+ <xsd:sequence>
1395
+ <xsd:element name="bg" type="CT_Background" minOccurs="0" maxOccurs="1"/>
1396
+ <xsd:element name="spTree" type="CT_GroupShape" minOccurs="1" maxOccurs="1"/>
1397
+ <xsd:element name="custDataLst" type="CT_CustomerDataList" minOccurs="0" maxOccurs="1"/>
1398
+ <xsd:element name="controls" type="CT_ControlList" minOccurs="0" maxOccurs="1"/>
1399
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1400
+ </xsd:sequence>
1401
+ <xsd:attribute name="name" type="xsd:string" use="optional" default=""/>
1402
+ </xsd:complexType>
1403
+ <xsd:complexType name="CT_Slide">
1404
+ <xsd:sequence minOccurs="1" maxOccurs="1">
1405
+ <xsd:element name="cSld" type="CT_CommonSlideData" minOccurs="1" maxOccurs="1"/>
1406
+ <xsd:group ref="EG_ChildSlide" minOccurs="0" maxOccurs="1"/>
1407
+ <xsd:element name="transition" type="CT_SlideTransition" minOccurs="0" maxOccurs="1"/>
1408
+ <xsd:element name="timing" type="CT_SlideTiming" minOccurs="0" maxOccurs="1"/>
1409
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
1410
+ </xsd:sequence>
1411
+ <xsd:attributeGroup ref="AG_ChildSlide"/>
1412
+ <xsd:attribute name="show" type="xsd:boolean" use="optional" default="true"/>
1413
+ </xsd:complexType>
1414
+ <xsd:element name="sld" type="CT_Slide"/>
1415
+ <xsd:simpleType name="ST_SlideLayoutType">
1416
+ <xsd:restriction base="xsd:token">
1417
+ <xsd:enumeration value="title"/>
1418
+ <xsd:enumeration value="tx"/>
1419
+ <xsd:enumeration value="twoColTx"/>
1420
+ <xsd:enumeration value="tbl"/>
1421
+ <xsd:enumeration value="txAndChart"/>
1422
+ <xsd:enumeration value="chartAndTx"/>
1423
+ <xsd:enumeration value="dgm"/>
1424
+ <xsd:enumeration value="chart"/>
1425
+ <xsd:enumeration value="txAndClipArt"/>
1426
+ <xsd:enumeration value="clipArtAndTx"/>
1427
+ <xsd:enumeration value="titleOnly"/>
1428
+ <xsd:enumeration value="blank"/>
1429
+ <xsd:enumeration value="txAndObj"/>
1430
+ <xsd:enumeration value="objAndTx"/>
1431
+ <xsd:enumeration value="objOnly"/>
1432
+ <xsd:enumeration value="obj"/>
1433
+ <xsd:enumeration value="txAndMedia"/>
1434
+ <xsd:enumeration value="mediaAndTx"/>
1435
+ <xsd:enumeration value="objOverTx"/>
1436
+ <xsd:enumeration value="txOverObj"/>
1437
+ <xsd:enumeration value="txAndTwoObj"/>
1438
+ <xsd:enumeration value="twoObjAndTx"/>
1439
+ <xsd:enumeration value="twoObjOverTx"/>
1440
+ <xsd:enumeration value="fourObj"/>
1441
+ <xsd:enumeration value="vertTx"/>
1442
+ <xsd:enumeration value="clipArtAndVertTx"/>
1443
+ <xsd:enumeration value="vertTitleAndTx"/>
1444
+ <xsd:enumeration value="vertTitleAndTxOverChart"/>
1445
+ <xsd:enumeration value="twoObj"/>
1446
+ <xsd:enumeration value="objAndTwoObj"/>
1447
+ <xsd:enumeration value="twoObjAndObj"/>
1448
+ <xsd:enumeration value="cust"/>
1449
+ <xsd:enumeration value="secHead"/>
1450
+ <xsd:enumeration value="twoTxTwoObj"/>
1451
+ <xsd:enumeration value="objTx"/>
1452
+ <xsd:enumeration value="picTx"/>
1453
+ </xsd:restriction>
1454
+ </xsd:simpleType>
1455
+ <xsd:complexType name="CT_SlideLayout">
1456
+ <xsd:sequence minOccurs="1" maxOccurs="1">
1457
+ <xsd:element name="cSld" type="CT_CommonSlideData" minOccurs="1" maxOccurs="1"/>
1458
+ <xsd:group ref="EG_ChildSlide" minOccurs="0" maxOccurs="1"/>
1459
+ <xsd:element name="transition" type="CT_SlideTransition" minOccurs="0" maxOccurs="1"/>
1460
+ <xsd:element name="timing" type="CT_SlideTiming" minOccurs="0" maxOccurs="1"/>
1461
+ <xsd:element name="hf" type="CT_HeaderFooter" minOccurs="0" maxOccurs="1"/>
1462
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
1463
+ </xsd:sequence>
1464
+ <xsd:attributeGroup ref="AG_ChildSlide"/>
1465
+ <xsd:attribute name="matchingName" type="xsd:string" use="optional" default=""/>
1466
+ <xsd:attribute name="type" type="ST_SlideLayoutType" use="optional" default="cust"/>
1467
+ <xsd:attribute name="preserve" type="xsd:boolean" use="optional" default="false"/>
1468
+ <xsd:attribute name="userDrawn" type="xsd:boolean" use="optional" default="false"/>
1469
+ </xsd:complexType>
1470
+ <xsd:element name="sldLayout" type="CT_SlideLayout"/>
1471
+ <xsd:complexType name="CT_SlideMasterTextStyles">
1472
+ <xsd:sequence>
1473
+ <xsd:element name="titleStyle" type="a:CT_TextListStyle" minOccurs="0" maxOccurs="1"/>
1474
+ <xsd:element name="bodyStyle" type="a:CT_TextListStyle" minOccurs="0" maxOccurs="1"/>
1475
+ <xsd:element name="otherStyle" type="a:CT_TextListStyle" minOccurs="0" maxOccurs="1"/>
1476
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1477
+ </xsd:sequence>
1478
+ </xsd:complexType>
1479
+ <xsd:simpleType name="ST_SlideLayoutId">
1480
+ <xsd:restriction base="xsd:unsignedInt">
1481
+ <xsd:minInclusive value="2147483648"/>
1482
+ </xsd:restriction>
1483
+ </xsd:simpleType>
1484
+ <xsd:complexType name="CT_SlideLayoutIdListEntry">
1485
+ <xsd:sequence>
1486
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1487
+ </xsd:sequence>
1488
+ <xsd:attribute name="id" type="ST_SlideLayoutId" use="optional"/>
1489
+ <xsd:attribute ref="r:id" use="required"/>
1490
+ </xsd:complexType>
1491
+ <xsd:complexType name="CT_SlideLayoutIdList">
1492
+ <xsd:sequence>
1493
+ <xsd:element name="sldLayoutId" type="CT_SlideLayoutIdListEntry" minOccurs="0"
1494
+ maxOccurs="unbounded"/>
1495
+ </xsd:sequence>
1496
+ </xsd:complexType>
1497
+ <xsd:complexType name="CT_SlideMaster">
1498
+ <xsd:sequence minOccurs="1" maxOccurs="1">
1499
+ <xsd:element name="cSld" type="CT_CommonSlideData" minOccurs="1" maxOccurs="1"/>
1500
+ <xsd:group ref="EG_TopLevelSlide" minOccurs="1" maxOccurs="1"/>
1501
+ <xsd:element name="sldLayoutIdLst" type="CT_SlideLayoutIdList" minOccurs="0" maxOccurs="1"/>
1502
+ <xsd:element name="transition" type="CT_SlideTransition" minOccurs="0" maxOccurs="1"/>
1503
+ <xsd:element name="timing" type="CT_SlideTiming" minOccurs="0" maxOccurs="1"/>
1504
+ <xsd:element name="hf" type="CT_HeaderFooter" minOccurs="0" maxOccurs="1"/>
1505
+ <xsd:element name="txStyles" type="CT_SlideMasterTextStyles" minOccurs="0" maxOccurs="1"/>
1506
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
1507
+ </xsd:sequence>
1508
+ <xsd:attribute name="preserve" type="xsd:boolean" use="optional" default="false"/>
1509
+ </xsd:complexType>
1510
+ <xsd:element name="sldMaster" type="CT_SlideMaster"/>
1511
+ <xsd:complexType name="CT_HandoutMaster">
1512
+ <xsd:sequence>
1513
+ <xsd:element name="cSld" type="CT_CommonSlideData" minOccurs="1" maxOccurs="1"/>
1514
+ <xsd:group ref="EG_TopLevelSlide" minOccurs="1" maxOccurs="1"/>
1515
+ <xsd:element name="hf" type="CT_HeaderFooter" minOccurs="0" maxOccurs="1"/>
1516
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
1517
+ </xsd:sequence>
1518
+ </xsd:complexType>
1519
+ <xsd:element name="handoutMaster" type="CT_HandoutMaster"/>
1520
+ <xsd:complexType name="CT_NotesMaster">
1521
+ <xsd:sequence>
1522
+ <xsd:element name="cSld" type="CT_CommonSlideData" minOccurs="1" maxOccurs="1"/>
1523
+ <xsd:group ref="EG_TopLevelSlide" minOccurs="1" maxOccurs="1"/>
1524
+ <xsd:element name="hf" type="CT_HeaderFooter" minOccurs="0" maxOccurs="1"/>
1525
+ <xsd:element name="notesStyle" type="a:CT_TextListStyle" minOccurs="0" maxOccurs="1"/>
1526
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
1527
+ </xsd:sequence>
1528
+ </xsd:complexType>
1529
+ <xsd:element name="notesMaster" type="CT_NotesMaster"/>
1530
+ <xsd:complexType name="CT_NotesSlide">
1531
+ <xsd:sequence minOccurs="1" maxOccurs="1">
1532
+ <xsd:element name="cSld" type="CT_CommonSlideData" minOccurs="1" maxOccurs="1"/>
1533
+ <xsd:group ref="EG_ChildSlide" minOccurs="0" maxOccurs="1"/>
1534
+ <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
1535
+ </xsd:sequence>
1536
+ <xsd:attributeGroup ref="AG_ChildSlide"/>
1537
+ </xsd:complexType>
1538
+ <xsd:element name="notes" type="CT_NotesSlide"/>
1539
+ <xsd:complexType name="CT_SlideSyncProperties">
1540
+ <xsd:sequence>
1541
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1542
+ </xsd:sequence>
1543
+ <xsd:attribute name="serverSldId" type="xsd:string" use="required"/>
1544
+ <xsd:attribute name="serverSldModifiedTime" type="xsd:dateTime" use="required"/>
1545
+ <xsd:attribute name="clientInsertedTime" type="xsd:dateTime" use="required"/>
1546
+ </xsd:complexType>
1547
+ <xsd:element name="sldSyncPr" type="CT_SlideSyncProperties"/>
1548
+ <xsd:complexType name="CT_StringTag">
1549
+ <xsd:attribute name="name" type="xsd:string" use="required"/>
1550
+ <xsd:attribute name="val" type="xsd:string" use="required"/>
1551
+ </xsd:complexType>
1552
+ <xsd:complexType name="CT_TagList">
1553
+ <xsd:sequence>
1554
+ <xsd:element name="tag" type="CT_StringTag" minOccurs="0" maxOccurs="unbounded"/>
1555
+ </xsd:sequence>
1556
+ </xsd:complexType>
1557
+ <xsd:element name="tagLst" type="CT_TagList"/>
1558
+ <xsd:simpleType name="ST_SplitterBarState">
1559
+ <xsd:restriction base="xsd:token">
1560
+ <xsd:enumeration value="minimized"/>
1561
+ <xsd:enumeration value="restored"/>
1562
+ <xsd:enumeration value="maximized"/>
1563
+ </xsd:restriction>
1564
+ </xsd:simpleType>
1565
+ <xsd:simpleType name="ST_ViewType">
1566
+ <xsd:restriction base="xsd:token">
1567
+ <xsd:enumeration value="sldView"/>
1568
+ <xsd:enumeration value="sldMasterView"/>
1569
+ <xsd:enumeration value="notesView"/>
1570
+ <xsd:enumeration value="handoutView"/>
1571
+ <xsd:enumeration value="notesMasterView"/>
1572
+ <xsd:enumeration value="outlineView"/>
1573
+ <xsd:enumeration value="sldSorterView"/>
1574
+ <xsd:enumeration value="sldThumbnailView"/>
1575
+ </xsd:restriction>
1576
+ </xsd:simpleType>
1577
+ <xsd:complexType name="CT_NormalViewPortion">
1578
+ <xsd:attribute name="sz" type="a:ST_PositiveFixedPercentage" use="required"/>
1579
+ <xsd:attribute name="autoAdjust" type="xsd:boolean" use="optional" default="true"/>
1580
+ </xsd:complexType>
1581
+ <xsd:complexType name="CT_NormalViewProperties">
1582
+ <xsd:sequence>
1583
+ <xsd:element name="restoredLeft" type="CT_NormalViewPortion" minOccurs="1" maxOccurs="1"/>
1584
+ <xsd:element name="restoredTop" type="CT_NormalViewPortion" minOccurs="1" maxOccurs="1"/>
1585
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1586
+ </xsd:sequence>
1587
+ <xsd:attribute name="showOutlineIcons" type="xsd:boolean" use="optional" default="true"/>
1588
+ <xsd:attribute name="snapVertSplitter" type="xsd:boolean" use="optional" default="false"/>
1589
+ <xsd:attribute name="vertBarState" type="ST_SplitterBarState" use="optional" default="restored"/>
1590
+ <xsd:attribute name="horzBarState" type="ST_SplitterBarState" use="optional" default="restored"/>
1591
+ <xsd:attribute name="preferSingleView" type="xsd:boolean" use="optional" default="false"/>
1592
+ </xsd:complexType>
1593
+ <xsd:complexType name="CT_CommonViewProperties">
1594
+ <xsd:sequence>
1595
+ <xsd:element name="scale" type="a:CT_Scale2D" minOccurs="1" maxOccurs="1"/>
1596
+ <xsd:element name="origin" type="a:CT_Point2D" minOccurs="1" maxOccurs="1"/>
1597
+ </xsd:sequence>
1598
+ <xsd:attribute name="varScale" type="xsd:boolean" use="optional" default="false"/>
1599
+ </xsd:complexType>
1600
+ <xsd:complexType name="CT_NotesTextViewProperties">
1601
+ <xsd:sequence minOccurs="1" maxOccurs="1">
1602
+ <xsd:element name="cViewPr" type="CT_CommonViewProperties" minOccurs="1" maxOccurs="1"/>
1603
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1604
+ </xsd:sequence>
1605
+ </xsd:complexType>
1606
+ <xsd:complexType name="CT_OutlineViewSlideEntry">
1607
+ <xsd:attribute ref="r:id" use="required"/>
1608
+ <xsd:attribute name="collapse" type="xsd:boolean" use="optional" default="false"/>
1609
+ </xsd:complexType>
1610
+ <xsd:complexType name="CT_OutlineViewSlideList">
1611
+ <xsd:sequence>
1612
+ <xsd:element name="sld" type="CT_OutlineViewSlideEntry" minOccurs="0" maxOccurs="unbounded"/>
1613
+ </xsd:sequence>
1614
+ </xsd:complexType>
1615
+ <xsd:complexType name="CT_OutlineViewProperties">
1616
+ <xsd:sequence minOccurs="1" maxOccurs="1">
1617
+ <xsd:element name="cViewPr" type="CT_CommonViewProperties" minOccurs="1" maxOccurs="1"/>
1618
+ <xsd:element name="sldLst" type="CT_OutlineViewSlideList" minOccurs="0" maxOccurs="1"/>
1619
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1620
+ </xsd:sequence>
1621
+ </xsd:complexType>
1622
+ <xsd:complexType name="CT_SlideSorterViewProperties">
1623
+ <xsd:sequence minOccurs="1" maxOccurs="1">
1624
+ <xsd:element name="cViewPr" type="CT_CommonViewProperties" minOccurs="1" maxOccurs="1"/>
1625
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1626
+ </xsd:sequence>
1627
+ <xsd:attribute name="showFormatting" type="xsd:boolean" use="optional" default="true"/>
1628
+ </xsd:complexType>
1629
+ <xsd:complexType name="CT_Guide">
1630
+ <xsd:attribute name="orient" type="ST_Direction" use="optional" default="vert"/>
1631
+ <xsd:attribute name="pos" type="a:ST_Coordinate32" use="optional" default="0"/>
1632
+ </xsd:complexType>
1633
+ <xsd:complexType name="CT_GuideList">
1634
+ <xsd:sequence minOccurs="0" maxOccurs="1">
1635
+ <xsd:element name="guide" type="CT_Guide" minOccurs="0" maxOccurs="unbounded"/>
1636
+ </xsd:sequence>
1637
+ </xsd:complexType>
1638
+ <xsd:complexType name="CT_CommonSlideViewProperties">
1639
+ <xsd:sequence>
1640
+ <xsd:element name="cViewPr" type="CT_CommonViewProperties" minOccurs="1" maxOccurs="1"/>
1641
+ <xsd:element name="guideLst" type="CT_GuideList" minOccurs="0" maxOccurs="1"/>
1642
+ </xsd:sequence>
1643
+ <xsd:attribute name="snapToGrid" type="xsd:boolean" use="optional" default="true"/>
1644
+ <xsd:attribute name="snapToObjects" type="xsd:boolean" use="optional" default="false"/>
1645
+ <xsd:attribute name="showGuides" type="xsd:boolean" use="optional" default="false"/>
1646
+ </xsd:complexType>
1647
+ <xsd:complexType name="CT_SlideViewProperties">
1648
+ <xsd:sequence>
1649
+ <xsd:element name="cSldViewPr" type="CT_CommonSlideViewProperties" minOccurs="1" maxOccurs="1"/>
1650
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1651
+ </xsd:sequence>
1652
+ </xsd:complexType>
1653
+ <xsd:complexType name="CT_NotesViewProperties">
1654
+ <xsd:sequence>
1655
+ <xsd:element name="cSldViewPr" type="CT_CommonSlideViewProperties" minOccurs="1" maxOccurs="1"/>
1656
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1657
+ </xsd:sequence>
1658
+ </xsd:complexType>
1659
+ <xsd:complexType name="CT_ViewProperties">
1660
+ <xsd:sequence minOccurs="0" maxOccurs="1">
1661
+ <xsd:element name="normalViewPr" type="CT_NormalViewProperties" minOccurs="0" maxOccurs="1"/>
1662
+ <xsd:element name="slideViewPr" type="CT_SlideViewProperties" minOccurs="0" maxOccurs="1"/>
1663
+ <xsd:element name="outlineViewPr" type="CT_OutlineViewProperties" minOccurs="0" maxOccurs="1"/>
1664
+ <xsd:element name="notesTextViewPr" type="CT_NotesTextViewProperties" minOccurs="0"
1665
+ maxOccurs="1"/>
1666
+ <xsd:element name="sorterViewPr" type="CT_SlideSorterViewProperties" minOccurs="0"
1667
+ maxOccurs="1"/>
1668
+ <xsd:element name="notesViewPr" type="CT_NotesViewProperties" minOccurs="0" maxOccurs="1"/>
1669
+ <xsd:element name="gridSpacing" type="a:CT_PositiveSize2D" minOccurs="0" maxOccurs="1"/>
1670
+ <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
1671
+ </xsd:sequence>
1672
+ <xsd:attribute name="lastView" type="ST_ViewType" use="optional" default="sldView"/>
1673
+ <xsd:attribute name="showComments" type="xsd:boolean" use="optional" default="true"/>
1674
+ </xsd:complexType>
1675
+ <xsd:element name="viewPr" type="CT_ViewProperties"/>
1676
+ </xsd:schema>