specweave 1.0.202 → 1.0.204

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 (144) hide show
  1. package/.claude-plugin/marketplace.json +0 -11
  2. package/CLAUDE.md +150 -547
  3. package/bin/specweave.js +17 -0
  4. package/dist/src/cli/commands/init.d.ts.map +1 -1
  5. package/dist/src/cli/commands/init.js +45 -0
  6. package/dist/src/cli/commands/init.js.map +1 -1
  7. package/dist/src/cli/commands/lsp.d.ts +57 -0
  8. package/dist/src/cli/commands/lsp.d.ts.map +1 -1
  9. package/dist/src/cli/commands/lsp.js +471 -0
  10. package/dist/src/cli/commands/lsp.js.map +1 -1
  11. package/dist/src/cli/commands/skill-match.js +1 -1
  12. package/dist/src/cli/commands/skill-match.js.map +1 -1
  13. package/dist/src/core/lazy-loading/llm-plugin-detector.d.ts +2 -2
  14. package/dist/src/core/lazy-loading/llm-plugin-detector.d.ts.map +1 -1
  15. package/dist/src/core/lazy-loading/llm-plugin-detector.js +3 -3
  16. package/dist/src/core/lazy-loading/llm-plugin-detector.js.map +1 -1
  17. package/dist/src/core/lsp/lsp-client.d.ts +3 -0
  18. package/dist/src/core/lsp/lsp-client.d.ts.map +1 -1
  19. package/dist/src/core/lsp/lsp-client.js +139 -31
  20. package/dist/src/core/lsp/lsp-client.js.map +1 -1
  21. package/dist/src/core/lsp/lsp-manager.d.ts +2 -0
  22. package/dist/src/core/lsp/lsp-manager.d.ts.map +1 -1
  23. package/dist/src/core/lsp/lsp-manager.js +46 -0
  24. package/dist/src/core/lsp/lsp-manager.js.map +1 -1
  25. package/dist/src/core/reflection/reflect-handler.d.ts.map +1 -1
  26. package/dist/src/core/reflection/reflect-handler.js +31 -20
  27. package/dist/src/core/reflection/reflect-handler.js.map +1 -1
  28. package/dist/src/core/session/handoff-context.d.ts.map +1 -1
  29. package/dist/src/core/session/handoff-context.js +1 -7
  30. package/dist/src/core/session/handoff-context.js.map +1 -1
  31. package/dist/src/core/session/restart-warning.js +1 -1
  32. package/dist/src/core/session/restart-warning.js.map +1 -1
  33. package/dist/src/utils/cleanup-stale-plugins.d.ts.map +1 -1
  34. package/dist/src/utils/cleanup-stale-plugins.js +2 -1
  35. package/dist/src/utils/cleanup-stale-plugins.js.map +1 -1
  36. package/package.json +1 -1
  37. package/plugins/PLUGINS-INDEX.md +0 -1
  38. package/plugins/specweave/commands/skill-match.md +1 -1
  39. package/plugins/specweave/commands/skill.md +303 -0
  40. package/plugins/specweave/hooks/log-decision.sh +167 -0
  41. package/plugins/specweave/hooks/user-prompt-submit.sh +115 -15
  42. package/plugins/specweave/skills/code-reviewer/SKILL.md +51 -1
  43. package/plugins/specweave/skills/code-standards-analyzer/SKILL.md +1 -1
  44. package/plugins/specweave/skills/image-generation/SKILL.md +492 -5
  45. package/plugins/specweave/skills/lsp/SKILL.md +163 -36
  46. package/plugins/specweave/skills/tdd-orchestrator/SKILL.md +98 -6
  47. package/plugins/specweave-infrastructure/skills/devops/SKILL.md +239 -1
  48. package/plugins/specweave-infrastructure/skills/observability/SKILL.md +234 -0
  49. package/plugins/specweave-kafka/skills/kafka-architect/SKILL.md +77 -4
  50. package/plugins/specweave-kafka/skills/kafka-ops/SKILL.md +128 -0
  51. package/plugins/specweave-ml/skills/data-scientist/SKILL.md +99 -2
  52. package/plugins/specweave-ml/skills/ml-engineer/SKILL.md +69 -3
  53. package/plugins/specweave-ml/skills/ml-specialist/SKILL.md +122 -0
  54. package/plugins/specweave-ml/skills/mlops-engineer/SKILL.md +120 -4
  55. package/plugins/specweave-mobile/skills/react-native-expert/SKILL.md +223 -0
  56. package/plugins/specweave-payments/skills/payments/SKILL.md +183 -0
  57. package/plugins/specweave-release/skills/release-coordinator/SKILL.md +124 -434
  58. package/plugins/specweave-testing/skills/e2e-testing/SKILL.md +237 -0
  59. package/plugins/specweave-testing/skills/unit-testing/SKILL.md +250 -0
  60. package/src/templates/CLAUDE.md.template +30 -8
  61. package/plugins/specweave/commands/archive-features.md +0 -129
  62. package/plugins/specweave/commands/organize-docs.md +0 -185
  63. package/plugins/specweave/commands/plugin-status.md +0 -65
  64. package/plugins/specweave/skills/code-standards-detective/MEMORY.md +0 -8
  65. package/plugins/specweave/skills/code-standards-detective/SKILL.md +0 -135
  66. package/plugins/specweave/skills/reflective-reviewer/MEMORY.md +0 -8
  67. package/plugins/specweave/skills/reflective-reviewer/SKILL.md +0 -121
  68. package/plugins/specweave/skills/tdd-workflow/MEMORY.md +0 -8
  69. package/plugins/specweave/skills/tdd-workflow/SKILL.md +0 -390
  70. package/plugins/specweave-ado/skills/ado-multi-project-mapper/SKILL.md +0 -7
  71. package/plugins/specweave-ado/skills/ado-sync-judge/SKILL.md +0 -7
  72. package/plugins/specweave-confluent/skills/confluent-architect/SKILL.md +0 -6
  73. package/plugins/specweave-github/skills/github-task-splitter/SKILL.md +0 -10
  74. package/plugins/specweave-github/skills/user-story-updater/SKILL.md +0 -10
  75. package/plugins/specweave-infrastructure/skills/deploy-router/SKILL.md +0 -817
  76. package/plugins/specweave-infrastructure/skills/distributed-tracing/SKILL.md +0 -428
  77. package/plugins/specweave-infrastructure/skills/grafana-dashboards/SKILL.md +0 -362
  78. package/plugins/specweave-infrastructure/skills/hetzner-provisioner/README.md +0 -308
  79. package/plugins/specweave-infrastructure/skills/hetzner-provisioner/SKILL.md +0 -241
  80. package/plugins/specweave-infrastructure/skills/observability-engineer/SKILL.md +0 -10
  81. package/plugins/specweave-infrastructure/skills/prometheus-configuration/SKILL.md +0 -379
  82. package/plugins/specweave-infrastructure/skills/slo-implementation/SKILL.md +0 -319
  83. package/plugins/specweave-jira/skills/jira-manager/SKILL.md +0 -8
  84. package/plugins/specweave-jira/skills/jira-multi-project-mapper/SKILL.md +0 -7
  85. package/plugins/specweave-jira/skills/jira-sync-judge/SKILL.md +0 -7
  86. package/plugins/specweave-kafka/skills/kafka-architecture/SKILL.md +0 -647
  87. package/plugins/specweave-kafka/skills/kafka-cli-tools/SKILL.md +0 -433
  88. package/plugins/specweave-kafka/skills/kafka-devops/SKILL.md +0 -8
  89. package/plugins/specweave-kafka/skills/kafka-iac-deployment/SKILL.md +0 -449
  90. package/plugins/specweave-kafka/skills/kafka-kubernetes/SKILL.md +0 -667
  91. package/plugins/specweave-kafka/skills/kafka-mcp-integration/SKILL.md +0 -290
  92. package/plugins/specweave-kafka/skills/kafka-observability/SKILL.md +0 -576
  93. package/plugins/specweave-kubernetes/skills/kubernetes-architect/SKILL.md +0 -8
  94. package/plugins/specweave-ml/skills/anomaly-detector/SKILL.md +0 -559
  95. package/plugins/specweave-ml/skills/automl-optimizer/SKILL.md +0 -485
  96. package/plugins/specweave-ml/skills/cv-pipeline-builder/SKILL.md +0 -157
  97. package/plugins/specweave-ml/skills/data-visualizer/SKILL.md +0 -521
  98. package/plugins/specweave-ml/skills/experiment-tracker/SKILL.md +0 -535
  99. package/plugins/specweave-ml/skills/feature-engineer/SKILL.md +0 -566
  100. package/plugins/specweave-ml/skills/ml-deployment-helper/SKILL.md +0 -345
  101. package/plugins/specweave-ml/skills/ml-pipeline-orchestrator/SKILL.md +0 -518
  102. package/plugins/specweave-ml/skills/mlops-dag-builder/SKILL.md +0 -230
  103. package/plugins/specweave-ml/skills/model-evaluator/SKILL.md +0 -155
  104. package/plugins/specweave-ml/skills/model-explainer/SKILL.md +0 -227
  105. package/plugins/specweave-ml/skills/model-registry/SKILL.md +0 -541
  106. package/plugins/specweave-ml/skills/nlp-pipeline-builder/SKILL.md +0 -180
  107. package/plugins/specweave-ml/skills/time-series-forecaster/SKILL.md +0 -569
  108. package/plugins/specweave-mobile/skills/device-testing/SKILL.md +0 -609
  109. package/plugins/specweave-mobile/skills/expo-workflow/SKILL.md +0 -657
  110. package/plugins/specweave-mobile/skills/metro-bundler/SKILL.md +0 -614
  111. package/plugins/specweave-mobile/skills/mobile-debugging/SKILL.md +0 -536
  112. package/plugins/specweave-mobile/skills/native-modules/SKILL.md +0 -890
  113. package/plugins/specweave-mobile/skills/performance-optimization/SKILL.md +0 -722
  114. package/plugins/specweave-mobile/skills/react-native-setup/SKILL.md +0 -313
  115. package/plugins/specweave-payments/skills/payment-integration/SKILL.md +0 -70
  116. package/plugins/specweave-payments/skills/paypal-integration/SKILL.md +0 -457
  117. package/plugins/specweave-payments/skills/stripe-connect/SKILL.md +0 -343
  118. package/plugins/specweave-payments/skills/stripe-integration/SKILL.md +0 -939
  119. package/plugins/specweave-plugin-dev/.claude-plugin/plugin.json +0 -27
  120. package/plugins/specweave-plugin-dev/commands/plugin-create.md +0 -333
  121. package/plugins/specweave-plugin-dev/commands/plugin-publish.md +0 -339
  122. package/plugins/specweave-plugin-dev/commands/plugin-test.md +0 -293
  123. package/plugins/specweave-plugin-dev/commands/skill-create.md +0 -688
  124. package/plugins/specweave-plugin-dev/commands/skill-package.md +0 -748
  125. package/plugins/specweave-plugin-dev/commands/skill-validate.md +0 -855
  126. package/plugins/specweave-plugin-dev/skills/claude-sdk/SKILL.md +0 -164
  127. package/plugins/specweave-plugin-dev/skills/marketplace-publishing/SKILL.md +0 -263
  128. package/plugins/specweave-plugin-dev/skills/plugin-development/SKILL.md +0 -316
  129. package/plugins/specweave-release/skills/rc-manager/SKILL.md +0 -660
  130. package/plugins/specweave-release/skills/release-manager/SKILL.md +0 -9
  131. package/plugins/specweave-release/skills/release-strategy-advisor/SKILL.md +0 -473
  132. package/plugins/specweave-testing/skills/comment-analyzer/SKILL.md +0 -210
  133. package/plugins/specweave-testing/skills/e2e-playwright/SKILL.md +0 -769
  134. package/plugins/specweave-testing/skills/pr-test-analyzer/SKILL.md +0 -153
  135. package/plugins/specweave-testing/skills/silent-failure-hunter/SKILL.md +0 -209
  136. package/plugins/specweave-testing/skills/tdd-expert/SKILL.md +0 -454
  137. package/plugins/specweave-testing/skills/type-design-analyzer/SKILL.md +0 -274
  138. package/plugins/specweave-testing/skills/ui-testing/SKILL.md +0 -604
  139. package/plugins/specweave-testing/skills/unit-testing-expert/SKILL.md +0 -742
  140. package/plugins/specweave-testing/skills/visual-regression/SKILL.md +0 -728
  141. package/plugins/specweave-ui/.claude-plugin/plugin.json +0 -12
  142. package/plugins/specweave-ui/commands/ui-automate.md +0 -176
  143. package/plugins/specweave-ui/commands/ui-inspect.md +0 -70
  144. package/plugins/specweave-ui/skills/browser-automation/SKILL.md +0 -314
@@ -248,17 +248,6 @@
248
248
  "name": "Anton Abyzov",
249
249
  "email": "anton.abyzov@gmail.com"
250
250
  }
251
- },
252
- {
253
- "name": "sw-plugin-dev",
254
- "description": "Plugin development tools - Create, validate, and scaffold SpecWeave plugins, skills, commands, and agents",
255
- "source": "./plugins/specweave-plugin-dev",
256
- "category": "development",
257
- "version": "1.0.0",
258
- "author": {
259
- "name": "Anton Abyzov",
260
- "email": "anton.abyzov@gmail.com"
261
- }
262
251
  }
263
252
  ]
264
253
  }