specweave 0.23.16 → 0.24.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.
- package/.claude-plugin/marketplace.json +93 -38
- package/CLAUDE.md +159 -11
- package/dist/plugins/specweave-github/lib/github-spec-content-sync.d.ts.map +1 -1
- package/dist/plugins/specweave-github/lib/github-spec-content-sync.js +57 -0
- package/dist/plugins/specweave-github/lib/github-spec-content-sync.js.map +1 -1
- package/dist/src/cli/commands/sync-spec-content.js +3 -0
- package/dist/src/cli/commands/sync-spec-content.js.map +1 -1
- package/dist/src/cli/helpers/ado-area-path-mapper.d.ts +89 -0
- package/dist/src/cli/helpers/ado-area-path-mapper.d.ts.map +1 -0
- package/dist/src/cli/helpers/ado-area-path-mapper.js +213 -0
- package/dist/src/cli/helpers/ado-area-path-mapper.js.map +1 -0
- package/dist/src/cli/helpers/issue-tracker/ado-auto-discover.d.ts +29 -0
- package/dist/src/cli/helpers/issue-tracker/ado-auto-discover.d.ts.map +1 -0
- package/dist/src/cli/helpers/issue-tracker/ado-auto-discover.js +109 -0
- package/dist/src/cli/helpers/issue-tracker/ado-auto-discover.js.map +1 -0
- package/dist/src/cli/helpers/issue-tracker/ado.d.ts +1 -0
- package/dist/src/cli/helpers/issue-tracker/ado.d.ts.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/ado.js +2 -0
- package/dist/src/cli/helpers/issue-tracker/ado.js.map +1 -1
- package/dist/src/cli/helpers/smart-filter.d.ts +83 -0
- package/dist/src/cli/helpers/smart-filter.d.ts.map +1 -0
- package/dist/src/cli/helpers/smart-filter.js +265 -0
- package/dist/src/cli/helpers/smart-filter.js.map +1 -0
- package/dist/src/core/progress/progress-tracker.d.ts +4 -1
- package/dist/src/core/progress/progress-tracker.d.ts.map +1 -1
- package/dist/src/core/progress/progress-tracker.js +33 -4
- package/dist/src/core/progress/progress-tracker.js.map +1 -1
- package/dist/src/core/qa/quality-gate-decider.d.ts +1 -1
- package/dist/src/core/qa/quality-gate-decider.js +2 -2
- package/dist/src/core/qa/quality-gate-decider.js.map +1 -1
- package/dist/src/core/qa/risk-calculator.d.ts +2 -2
- package/dist/src/core/qa/risk-calculator.js +2 -2
- package/dist/src/core/spec-content-sync.d.ts +1 -1
- package/dist/src/core/spec-content-sync.d.ts.map +1 -1
- package/dist/src/core/validators/ac-presence-validator.d.ts +56 -0
- package/dist/src/core/validators/ac-presence-validator.d.ts.map +1 -0
- package/dist/src/core/validators/ac-presence-validator.js +149 -0
- package/dist/src/core/validators/ac-presence-validator.js.map +1 -0
- package/dist/src/integrations/ado/ado-dependency-loader.d.ts +1 -1
- package/dist/src/integrations/ado/ado-dependency-loader.d.ts.map +1 -1
- package/dist/src/integrations/ado/ado-dependency-loader.js +39 -7
- package/dist/src/integrations/ado/ado-dependency-loader.js.map +1 -1
- package/dist/src/integrations/ado/area-path-mapper.d.ts +137 -0
- package/dist/src/integrations/ado/area-path-mapper.d.ts.map +1 -0
- package/dist/src/integrations/ado/area-path-mapper.js +267 -0
- package/dist/src/integrations/ado/area-path-mapper.js.map +1 -0
- package/dist/src/integrations/jira/filter-processor.d.ts +126 -0
- package/dist/src/integrations/jira/filter-processor.d.ts.map +1 -0
- package/dist/src/integrations/jira/filter-processor.js +207 -0
- package/dist/src/integrations/jira/filter-processor.js.map +1 -0
- package/dist/src/integrations/jira/jira-client.d.ts +13 -0
- package/dist/src/integrations/jira/jira-client.d.ts.map +1 -1
- package/dist/src/integrations/jira/jira-client.js +33 -0
- package/dist/src/integrations/jira/jira-client.js.map +1 -1
- package/dist/src/utils/ac-embedder.d.ts +63 -0
- package/dist/src/utils/ac-embedder.d.ts.map +1 -0
- package/dist/src/utils/ac-embedder.js +217 -0
- package/dist/src/utils/ac-embedder.js.map +1 -0
- package/dist/src/utils/env-manager.d.ts +86 -0
- package/dist/src/utils/env-manager.d.ts.map +1 -0
- package/dist/src/utils/env-manager.js +188 -0
- package/dist/src/utils/env-manager.js.map +1 -0
- package/package.json +1 -1
- package/plugins/specweave/.claude-plugin/plugin.json +1 -1
- package/plugins/specweave/agents/AGENTS-INDEX.md +1 -1
- package/plugins/specweave/agents/increment-quality-judge-v2/AGENT.md +9 -9
- package/plugins/specweave/commands/specweave-do.md +37 -0
- package/plugins/specweave/commands/specweave-done.md +159 -0
- package/plugins/specweave/commands/specweave-embed-acs.md +446 -0
- package/plugins/specweave/commands/specweave-next.md +148 -3
- package/plugins/specweave/commands/specweave-qa.md +2 -2
- package/plugins/specweave/hooks/lib/migrate-increment-work.sh +1 -1
- package/plugins/specweave/hooks/lib/migrate-increment-work.sh.bak +245 -0
- package/plugins/specweave/hooks/lib/sync-spec-content.sh +2 -2
- package/plugins/specweave/hooks/lib/sync-spec-content.sh.bak +149 -0
- package/plugins/specweave/hooks/lib/update-status-line.sh +34 -4
- package/plugins/specweave/hooks/lib/validate-spec-status.sh +1 -1
- package/plugins/specweave/hooks/lib/validate-spec-status.sh.bak +163 -0
- package/plugins/specweave/hooks/post-first-increment.sh +1 -1
- package/plugins/specweave/hooks/post-first-increment.sh.bak +61 -0
- package/plugins/specweave/hooks/post-spec-update.sh +1 -1
- package/plugins/specweave/hooks/post-spec-update.sh.bak +158 -0
- package/plugins/specweave/hooks/post-user-story-complete.sh +1 -1
- package/plugins/specweave/hooks/post-user-story-complete.sh.bak +179 -0
- package/plugins/specweave/hooks/pre-command-deduplication.sh +1 -1
- package/plugins/specweave/hooks/pre-command-deduplication.sh.bak +83 -0
- package/plugins/specweave/hooks/pre-increment-start.sh +168 -0
- package/plugins/specweave/hooks/user-prompt-submit.sh +1 -1
- package/plugins/specweave/hooks/user-prompt-submit.sh.bak +386 -0
- package/plugins/specweave/skills/SKILLS-INDEX.md +1 -1
- package/plugins/specweave/skills/specweave-framework/SKILL.md +1 -1
- package/plugins/specweave-ado/.claude-plugin/plugin.json +1 -1
- package/plugins/specweave-ado/agents/ado-manager/AGENT.md +23 -0
- package/plugins/specweave-ado/agents/ado-multi-project-mapper/AGENT.md +23 -0
- package/plugins/specweave-ado/agents/ado-sync-judge/AGENT.md +23 -0
- package/plugins/specweave-ado/commands/specweave-ado-import-projects.md +331 -0
- package/plugins/specweave-alternatives/.claude-plugin/plugin.json +10 -0
- package/plugins/specweave-alternatives/commands/alternatives-analyze.md +336 -0
- package/plugins/specweave-alternatives/skills/architecture-alternatives/SKILL.md +651 -0
- package/plugins/specweave-alternatives/skills/bmad-method/SKILL.md +420 -0
- package/plugins/specweave-alternatives/skills/spec-kit-expert/SKILL.md +487 -0
- package/plugins/specweave-backend/agents/database-optimizer/AGENT.md +23 -0
- package/plugins/specweave-backend/commands/api-scaffold.md +80 -0
- package/plugins/specweave-backend/commands/crud-generate.md +109 -0
- package/plugins/specweave-backend/commands/migration-generate.md +139 -0
- package/plugins/specweave-confluent/agents/confluent-architect/AGENT.md +23 -0
- package/plugins/specweave-confluent/commands/connector-deploy.md +154 -0
- package/plugins/specweave-confluent/commands/ksqldb-query.md +179 -0
- package/plugins/specweave-confluent/commands/schema-register.md +123 -0
- package/plugins/specweave-core/.claude-plugin/plugin.json +21 -0
- package/plugins/specweave-core/commands/architecture-review.md +288 -0
- package/plugins/specweave-core/commands/code-review.md +213 -0
- package/plugins/specweave-core/commands/refactor-plan.md +249 -0
- package/plugins/specweave-core/skills/code-quality/SKILL.md +157 -0
- package/plugins/specweave-core/skills/design-patterns/SKILL.md +244 -0
- package/plugins/specweave-core/skills/software-architecture/SKILL.md +83 -0
- package/plugins/specweave-cost-optimizer/.claude-plugin/plugin.json +22 -0
- package/plugins/specweave-cost-optimizer/commands/cost-analyze.md +360 -0
- package/plugins/specweave-cost-optimizer/commands/cost-optimize.md +480 -0
- package/plugins/specweave-cost-optimizer/skills/aws-cost-expert/SKILL.md +416 -0
- package/plugins/specweave-cost-optimizer/skills/cloud-pricing/SKILL.md +325 -0
- package/plugins/specweave-cost-optimizer/skills/cost-optimization/SKILL.md +337 -0
- package/plugins/specweave-diagrams/.claude-plugin/plugin.json +1 -1
- package/plugins/specweave-diagrams/agents/diagrams-architect/AGENT.md +23 -0
- package/plugins/specweave-diagrams/commands/diagrams-generate.md +168 -0
- package/plugins/specweave-docs/.claude-plugin/plugin.json +10 -0
- package/plugins/specweave-docs/commands/docs-generate.md +441 -0
- package/plugins/specweave-docs/commands/docs-init.md +334 -0
- package/plugins/specweave-docs/skills/docusaurus/SKILL.md +581 -0
- package/plugins/specweave-docs/skills/spec-driven-brainstorming/SKILL.md +689 -0
- package/plugins/specweave-docs/skills/technical-writing/SKILL.md +1039 -0
- package/plugins/specweave-docs-preview/.claude-plugin/plugin.json +1 -1
- package/plugins/specweave-figma/.claude-plugin/plugin.json +23 -0
- package/plugins/specweave-figma/commands/figma-import.md +690 -0
- package/plugins/specweave-figma/commands/figma-to-react.md +834 -0
- package/plugins/specweave-figma/commands/figma-tokens.md +815 -0
- package/plugins/specweave-frontend/.claude-plugin/plugin.json +21 -0
- package/plugins/specweave-frontend/agents/frontend-architect/AGENT.md +387 -0
- package/plugins/specweave-frontend/agents/frontend-architect/README.md +385 -0
- package/plugins/specweave-frontend/agents/frontend-architect/examples.md +590 -0
- package/plugins/specweave-frontend/agents/frontend-architect/templates/component-template.tsx +152 -0
- package/plugins/specweave-frontend/agents/frontend-architect/templates/hook-template.ts +311 -0
- package/plugins/specweave-frontend/agents/frontend-architect/templates/page-template.tsx +228 -0
- package/plugins/specweave-frontend/commands/component-generate.md +510 -0
- package/plugins/specweave-frontend/commands/design-system-init.md +494 -0
- package/plugins/specweave-frontend/commands/frontend-scaffold.md +207 -0
- package/plugins/specweave-frontend/commands/nextjs-setup.md +396 -0
- package/plugins/specweave-frontend/skills/design-system-architect/SKILL.md +278 -0
- package/plugins/specweave-frontend/skills/frontend/SKILL.md +420 -0
- package/plugins/specweave-frontend/skills/nextjs/SKILL.md +546 -0
- package/plugins/specweave-github/.claude-plugin/plugin.json +1 -1
- package/plugins/specweave-github/agents/github-manager/AGENT.md +23 -0
- package/plugins/specweave-github/agents/github-task-splitter/AGENT.md +25 -0
- package/plugins/specweave-github/agents/user-story-updater/AGENT.md +25 -0
- package/plugins/specweave-github/hooks/.specweave/logs/hooks-debug.log +194 -0
- package/plugins/specweave-github/lib/github-spec-content-sync.js +49 -0
- package/plugins/specweave-github/lib/github-spec-content-sync.ts +67 -0
- package/plugins/specweave-infrastructure/.claude-plugin/plugin.json +1 -1
- package/plugins/specweave-infrastructure/agents/devops/AGENT.md +26 -0
- package/plugins/specweave-infrastructure/agents/network-engineer/AGENT.md +26 -0
- package/plugins/specweave-infrastructure/agents/observability-engineer/AGENT.md +26 -0
- package/plugins/specweave-infrastructure/agents/performance-engineer/AGENT.md +26 -0
- package/plugins/specweave-infrastructure/agents/sre/AGENT.md +26 -0
- package/plugins/specweave-jira/.claude-plugin/plugin.json +1 -1
- package/plugins/specweave-jira/agents/jira-manager/AGENT.md +26 -0
- package/plugins/specweave-jira/commands/import-projects.js +183 -0
- package/plugins/specweave-jira/commands/import-projects.md +97 -0
- package/plugins/specweave-jira/commands/import-projects.ts +288 -0
- package/plugins/specweave-jira/commands/specweave-jira-import-projects.md +298 -0
- package/plugins/specweave-kafka/.claude-plugin/plugin.json +1 -1
- package/plugins/specweave-kafka/agents/kafka-architect/AGENT.md +26 -0
- package/plugins/specweave-kafka/agents/kafka-devops/AGENT.md +26 -0
- package/plugins/specweave-kafka/agents/kafka-observability/AGENT.md +26 -0
- package/plugins/specweave-kafka-streams/.claude-plugin/plugin.json +1 -1
- package/plugins/specweave-kubernetes/agents/kubernetes-architect/AGENT.md +26 -0
- package/plugins/specweave-kubernetes/commands/cluster-setup.md +262 -0
- package/plugins/specweave-kubernetes/commands/deployment-generate.md +242 -0
- package/plugins/specweave-kubernetes/commands/helm-scaffold.md +333 -0
- package/plugins/specweave-ml/.claude-plugin/plugin.json +3 -3
- package/plugins/specweave-ml/agents/data-scientist/AGENT.md +26 -0
- package/plugins/specweave-ml/agents/ml-engineer/AGENT.md +26 -0
- package/plugins/specweave-ml/agents/mlops-engineer/AGENT.md +26 -0
- package/plugins/specweave-mobile/agents/mobile-architect/AGENT.md +26 -0
- package/plugins/specweave-mobile/commands/app-scaffold.md +233 -0
- package/plugins/specweave-mobile/commands/build-config.md +256 -0
- package/plugins/specweave-mobile/commands/screen-generate.md +289 -0
- package/plugins/specweave-n8n/.claude-plugin/plugin.json +1 -1
- package/plugins/specweave-payments/agents/payment-integration/AGENT.md +26 -0
- package/plugins/specweave-plugin-dev/.claude-plugin/plugin.json +20 -0
- package/plugins/specweave-plugin-dev/commands/plugin-create.md +333 -0
- package/plugins/specweave-plugin-dev/commands/plugin-publish.md +339 -0
- package/plugins/specweave-plugin-dev/commands/plugin-test.md +293 -0
- package/plugins/specweave-plugin-dev/skills/claude-sdk/SKILL.md +162 -0
- package/plugins/specweave-plugin-dev/skills/marketplace-publishing/SKILL.md +263 -0
- package/plugins/specweave-plugin-dev/skills/plugin-development/SKILL.md +316 -0
- package/plugins/specweave-release/.claude-plugin/plugin.json +1 -1
- package/plugins/specweave-release/agents/release-manager/AGENT.md +27 -0
- package/plugins/specweave-release/commands/specweave-release-npm.md +110 -0
- package/plugins/specweave-release/hooks/.specweave/logs/dora-tracking.log +168 -0
- package/plugins/specweave-testing/.claude-plugin/plugin.json +21 -0
- package/plugins/specweave-testing/agents/qa-engineer/AGENT.md +797 -0
- package/plugins/specweave-testing/agents/qa-engineer/README.md +443 -0
- package/plugins/specweave-testing/agents/qa-engineer/templates/playwright-e2e-test.ts +470 -0
- package/plugins/specweave-testing/agents/qa-engineer/templates/test-data-factory.ts +507 -0
- package/plugins/specweave-testing/agents/qa-engineer/templates/vitest-unit-test.ts +400 -0
- package/plugins/specweave-testing/agents/qa-engineer/test-strategies.md +726 -0
- package/plugins/specweave-testing/commands/e2e-setup.md +1081 -0
- package/plugins/specweave-testing/commands/test-coverage.md +979 -0
- package/plugins/specweave-testing/commands/test-generate.md +1156 -0
- package/plugins/specweave-testing/commands/test-init.md +409 -0
- package/plugins/specweave-testing/skills/e2e-playwright/SKILL.md +769 -0
- package/plugins/specweave-testing/skills/tdd-expert/SKILL.md +934 -0
- package/plugins/specweave-testing/skills/unit-testing-expert/SKILL.md +1011 -0
- package/plugins/specweave-tooling/.claude-plugin/plugin.json +22 -0
- package/plugins/specweave-tooling/commands/specweave-tooling-skill-create.md +691 -0
- package/plugins/specweave-tooling/commands/specweave-tooling-skill-package.md +751 -0
- package/plugins/specweave-tooling/commands/specweave-tooling-skill-validate.md +858 -0
- package/plugins/specweave-ui/.claude-plugin/plugin.json +10 -0
- package/plugins/specweave-ui/commands/ui-automate.md +199 -0
- package/plugins/specweave-ui/commands/ui-inspect.md +70 -0
- package/plugins/specweave-ui/skills/browser-automation/SKILL.md +314 -0
- package/plugins/specweave-ui/skills/ui-testing/SKILL.md +716 -0
- package/plugins/specweave-ui/skills/visual-regression/SKILL.md +728 -0
- package/plugins/specweave/commands/check-hooks.md +0 -257
- package/plugins/specweave/commands/specweave-archive-increments.md +0 -82
- package/plugins/specweave/skills/plugin-expert/SKILL.md +0 -340
- /package/plugins/specweave/{agents/code-reviewer.md → skills/code-reviewer/SKILL.md} +0 -0
|
@@ -14,3 +14,197 @@
|
|
|
14
14
|
[Sat Nov 22 02:20:33 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
15
15
|
[Sat Nov 22 02:20:36 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
16
16
|
[Sat Nov 22 02:20:36 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
17
|
+
[Sat Nov 22 13:23:12 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
18
|
+
[Sat Nov 22 13:23:12 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
19
|
+
[Sat Nov 22 13:23:14 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
20
|
+
[Sat Nov 22 13:23:14 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
21
|
+
[Sat Nov 22 13:23:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
22
|
+
[Sat Nov 22 13:23:15 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
23
|
+
[Sat Nov 22 13:23:17 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
24
|
+
[Sat Nov 22 13:23:17 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
25
|
+
[Sat Nov 22 13:23:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
26
|
+
[Sat Nov 22 13:23:19 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
27
|
+
[Sat Nov 22 13:23:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
28
|
+
[Sat Nov 22 13:23:19 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
29
|
+
[Sat Nov 22 13:23:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
30
|
+
[Sat Nov 22 13:23:19 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
31
|
+
[Sat Nov 22 13:23:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
32
|
+
[Sat Nov 22 13:23:19 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
33
|
+
[Sat Nov 22 13:27:47 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
34
|
+
[Sat Nov 22 13:27:47 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
35
|
+
[Sat Nov 22 13:27:49 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
36
|
+
[Sat Nov 22 13:27:49 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
37
|
+
[Sat Nov 22 13:27:49 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
38
|
+
[Sat Nov 22 13:27:49 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
39
|
+
[Sat Nov 22 13:27:52 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
40
|
+
[Sat Nov 22 13:27:52 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
41
|
+
[Sat Nov 22 13:27:54 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
42
|
+
[Sat Nov 22 13:27:54 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
43
|
+
[Sat Nov 22 13:27:54 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
44
|
+
[Sat Nov 22 13:27:54 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
45
|
+
[Sat Nov 22 13:27:54 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
46
|
+
[Sat Nov 22 13:27:54 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
47
|
+
[Sat Nov 22 13:27:54 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
48
|
+
[Sat Nov 22 13:27:54 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
49
|
+
[Sat Nov 22 14:10:04 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
50
|
+
[Sat Nov 22 14:10:04 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
51
|
+
[Sat Nov 22 14:10:09 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
52
|
+
[Sat Nov 22 14:10:09 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
53
|
+
[Sat Nov 22 14:10:14 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
54
|
+
[Sat Nov 22 14:10:14 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
55
|
+
[Sat Nov 22 14:10:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
56
|
+
[Sat Nov 22 14:10:19 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
57
|
+
[Sat Nov 22 14:27:50 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
58
|
+
[Sat Nov 22 14:27:50 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
59
|
+
[Sat Nov 22 14:27:55 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
60
|
+
[Sat Nov 22 14:27:55 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
61
|
+
[Sat Nov 22 14:28:00 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
62
|
+
[Sat Nov 22 14:28:00 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
63
|
+
[Sat Nov 22 14:28:05 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
64
|
+
[Sat Nov 22 14:28:05 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
65
|
+
[Sat Nov 22 14:39:21 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
66
|
+
[Sat Nov 22 14:39:21 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
67
|
+
[Sat Nov 22 14:39:26 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
68
|
+
[Sat Nov 22 14:39:26 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
69
|
+
[Sat Nov 22 14:39:31 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
70
|
+
[Sat Nov 22 14:39:31 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
71
|
+
[Sat Nov 22 14:39:36 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
72
|
+
[Sat Nov 22 14:39:36 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
73
|
+
[Sat Nov 22 15:58:47 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
74
|
+
[Sat Nov 22 15:58:47 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
75
|
+
[Sat Nov 22 15:58:53 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
76
|
+
[Sat Nov 22 15:58:53 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
77
|
+
[Sat Nov 22 15:58:58 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
78
|
+
[Sat Nov 22 15:58:58 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
79
|
+
[Sat Nov 22 15:59:03 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
80
|
+
[Sat Nov 22 15:59:03 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
81
|
+
[Sat Nov 22 15:59:21 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
82
|
+
[Sat Nov 22 15:59:21 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
83
|
+
[Sat Nov 22 15:59:26 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
84
|
+
[Sat Nov 22 15:59:26 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
85
|
+
[Sat Nov 22 15:59:32 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
86
|
+
[Sat Nov 22 15:59:32 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
87
|
+
[Sat Nov 22 15:59:37 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
88
|
+
[Sat Nov 22 15:59:37 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
89
|
+
[Sat Nov 22 16:00:32 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
90
|
+
[Sat Nov 22 16:00:32 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
91
|
+
[Sat Nov 22 16:00:37 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
92
|
+
[Sat Nov 22 16:00:37 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
93
|
+
[Sat Nov 22 16:00:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
94
|
+
[Sat Nov 22 16:00:42 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
95
|
+
[Sat Nov 22 16:00:47 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
96
|
+
[Sat Nov 22 16:00:47 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
97
|
+
[Sat Nov 22 16:01:04 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
98
|
+
[Sat Nov 22 16:01:04 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
99
|
+
[Sat Nov 22 16:01:09 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
100
|
+
[Sat Nov 22 16:01:09 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
101
|
+
[Sat Nov 22 16:01:14 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
102
|
+
[Sat Nov 22 16:01:14 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
103
|
+
[Sat Nov 22 16:01:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
104
|
+
[Sat Nov 22 16:01:19 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
105
|
+
[Sat Nov 22 16:02:06 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
106
|
+
[Sat Nov 22 16:02:06 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
107
|
+
[Sat Nov 22 16:02:11 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
108
|
+
[Sat Nov 22 16:02:11 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
109
|
+
[Sat Nov 22 16:02:16 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
110
|
+
[Sat Nov 22 16:02:16 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
111
|
+
[Sat Nov 22 16:02:21 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
112
|
+
[Sat Nov 22 16:02:21 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
113
|
+
[Sat Nov 22 16:25:52 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
114
|
+
[Sat Nov 22 16:25:52 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
115
|
+
[Sat Nov 22 16:26:09 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
116
|
+
[Sat Nov 22 16:26:09 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
117
|
+
[Sat Nov 22 16:26:34 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
118
|
+
[Sat Nov 22 16:26:34 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
119
|
+
[Sat Nov 22 16:31:31 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
120
|
+
[Sat Nov 22 16:31:31 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
121
|
+
[Sat Nov 22 16:32:18 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
122
|
+
[Sat Nov 22 16:32:18 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
123
|
+
[Sat Nov 22 16:34:23 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
124
|
+
[Sat Nov 22 16:34:23 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
125
|
+
[Sat Nov 22 16:37:25 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
126
|
+
[Sat Nov 22 16:37:25 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
127
|
+
[Sat Nov 22 16:37:25 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
128
|
+
[Sat Nov 22 16:37:25 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
129
|
+
[Sat Nov 22 16:40:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
130
|
+
[Sat Nov 22 16:40:42 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
131
|
+
[Sat Nov 22 16:42:45 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
132
|
+
[Sat Nov 22 16:42:45 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
133
|
+
[Sat Nov 22 16:44:13 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
134
|
+
[Sat Nov 22 16:44:13 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
135
|
+
[Sat Nov 22 16:44:13 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
136
|
+
[Sat Nov 22 16:44:13 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
137
|
+
[Sat Nov 22 16:45:33 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
138
|
+
[Sat Nov 22 16:45:33 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
139
|
+
[Sat Nov 22 16:46:24 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
140
|
+
[Sat Nov 22 16:46:24 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
141
|
+
[Sat Nov 22 16:50:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
142
|
+
[Sat Nov 22 16:50:19 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
143
|
+
[Sat Nov 22 16:50:35 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
144
|
+
[Sat Nov 22 16:50:35 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
145
|
+
[Sat Nov 22 16:50:35 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
146
|
+
[Sat Nov 22 16:50:35 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
147
|
+
[Sat Nov 22 16:56:06 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
148
|
+
[Sat Nov 22 16:56:06 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
149
|
+
[Sat Nov 22 16:56:43 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
150
|
+
[Sat Nov 22 16:56:43 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
151
|
+
[Sat Nov 22 16:56:43 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
152
|
+
[Sat Nov 22 16:56:43 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
153
|
+
[Sat Nov 22 16:58:17 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
154
|
+
[Sat Nov 22 16:58:17 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
155
|
+
[Sat Nov 22 17:01:31 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
156
|
+
[Sat Nov 22 17:01:31 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
157
|
+
[Sat Nov 22 17:04:01 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
158
|
+
[Sat Nov 22 17:04:01 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
159
|
+
[Sat Nov 22 17:11:03 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
160
|
+
[Sat Nov 22 17:11:03 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
161
|
+
[Sat Nov 22 17:11:47 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
162
|
+
[Sat Nov 22 17:11:47 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
163
|
+
[Sat Nov 22 17:12:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
164
|
+
[Sat Nov 22 17:12:15 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
165
|
+
[Sat Nov 22 17:12:35 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
166
|
+
[Sat Nov 22 17:12:35 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
167
|
+
[Sat Nov 22 17:12:37 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
168
|
+
[Sat Nov 22 17:12:37 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
169
|
+
[Sat Nov 22 17:12:38 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
170
|
+
[Sat Nov 22 17:12:38 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
171
|
+
[Sat Nov 22 17:12:40 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
172
|
+
[Sat Nov 22 17:12:40 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
173
|
+
[Sat Nov 22 17:12:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
174
|
+
[Sat Nov 22 17:12:42 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
175
|
+
[Sat Nov 22 17:12:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
176
|
+
[Sat Nov 22 17:12:42 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
177
|
+
[Sat Nov 22 17:12:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
178
|
+
[Sat Nov 22 17:12:42 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
179
|
+
[Sat Nov 22 17:12:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
180
|
+
[Sat Nov 22 17:12:42 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
181
|
+
[Sat Nov 22 17:14:22 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
182
|
+
[Sat Nov 22 17:14:22 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
183
|
+
[Sat Nov 22 17:15:06 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
184
|
+
[Sat Nov 22 17:15:06 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
185
|
+
[Sat Nov 22 17:16:25 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
186
|
+
[Sat Nov 22 17:16:25 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
187
|
+
[Sat Nov 22 17:16:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
188
|
+
[Sat Nov 22 17:16:42 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
189
|
+
[Sat Nov 22 17:16:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
190
|
+
[Sat Nov 22 17:16:42 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
191
|
+
[Sat Nov 22 17:19:09 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
192
|
+
[Sat Nov 22 17:19:09 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
193
|
+
[Sat Nov 22 17:20:04 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
194
|
+
[Sat Nov 22 17:20:04 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
195
|
+
[Sat Nov 22 17:20:22 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
196
|
+
[Sat Nov 22 17:20:22 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
197
|
+
[Sat Nov 22 17:21:17 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
198
|
+
[Sat Nov 22 17:21:17 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
199
|
+
[Sat Nov 22 17:21:40 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
200
|
+
[Sat Nov 22 17:21:40 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
201
|
+
[Sat Nov 22 17:22:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
202
|
+
[Sat Nov 22 17:22:42 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
203
|
+
[Sat Nov 22 17:24:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
204
|
+
[Sat Nov 22 17:24:15 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
205
|
+
[Sat Nov 22 17:24:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
206
|
+
[Sat Nov 22 17:24:15 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
207
|
+
[Sat Nov 22 17:25:43 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
208
|
+
[Sat Nov 22 17:25:43 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
209
|
+
[Sat Nov 22 17:26:45 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
210
|
+
[Sat Nov 22 17:26:45 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
@@ -85,6 +85,17 @@ async function syncSpecContentToGitHub(options) {
|
|
|
85
85
|
async function createGitHubIssue(client, spec, options) {
|
|
86
86
|
const { specPath, dryRun, verbose } = options;
|
|
87
87
|
try {
|
|
88
|
+
const permissions = await loadSyncPermissions(specPath);
|
|
89
|
+
if (!permissions.canCreate) {
|
|
90
|
+
if (verbose) {
|
|
91
|
+
console.log(" \u26A0\uFE0F Skipping create - canUpsertInternalItems is disabled in config");
|
|
92
|
+
}
|
|
93
|
+
return {
|
|
94
|
+
success: false,
|
|
95
|
+
action: "skipped",
|
|
96
|
+
error: "canUpsertInternalItems is disabled in .specweave/config.json"
|
|
97
|
+
};
|
|
98
|
+
}
|
|
88
99
|
const titleId = spec.project === "_features" ? spec.identifier.display : spec.identifier.compact;
|
|
89
100
|
const title = `[${titleId}] ${spec.title}`;
|
|
90
101
|
const body = buildExternalDescription(spec);
|
|
@@ -141,6 +152,17 @@ ${body}`);
|
|
|
141
152
|
async function updateGitHubIssue(client, spec, issueNumber, options) {
|
|
142
153
|
const { specPath, dryRun, verbose } = options;
|
|
143
154
|
try {
|
|
155
|
+
const permissions = await loadSyncPermissions(specPath);
|
|
156
|
+
if (!permissions.canUpdate) {
|
|
157
|
+
if (verbose) {
|
|
158
|
+
console.log(" \u26A0\uFE0F Skipping update - canUpdateExternalItems is disabled in config");
|
|
159
|
+
}
|
|
160
|
+
return {
|
|
161
|
+
success: false,
|
|
162
|
+
action: "skipped",
|
|
163
|
+
error: "canUpdateExternalItems is disabled in .specweave/config.json"
|
|
164
|
+
};
|
|
165
|
+
}
|
|
144
166
|
const issue = await client.getIssue(issueNumber);
|
|
145
167
|
if (verbose) {
|
|
146
168
|
console.log(`
|
|
@@ -234,6 +256,33 @@ function countUserStoriesInBody(body) {
|
|
|
234
256
|
const matches = body.match(/###\s+US-\d+:/g);
|
|
235
257
|
return matches ? matches.length : 0;
|
|
236
258
|
}
|
|
259
|
+
async function loadSyncPermissions(specPath) {
|
|
260
|
+
try {
|
|
261
|
+
let currentDir = path.dirname(specPath);
|
|
262
|
+
let configPath = path.join(currentDir, ".specweave", "config.json");
|
|
263
|
+
while (!await fs.access(configPath).then(() => true).catch(() => false)) {
|
|
264
|
+
const parentDir = path.dirname(currentDir);
|
|
265
|
+
if (parentDir === currentDir) {
|
|
266
|
+
return { canCreate: true, canUpdate: true, canUpdateStatus: true };
|
|
267
|
+
}
|
|
268
|
+
currentDir = parentDir;
|
|
269
|
+
configPath = path.join(currentDir, ".specweave", "config.json");
|
|
270
|
+
}
|
|
271
|
+
const configContent = await fs.readFile(configPath, "utf-8");
|
|
272
|
+
const config = JSON.parse(configContent);
|
|
273
|
+
const settings = config.sync?.settings || {};
|
|
274
|
+
return {
|
|
275
|
+
canCreate: settings.canUpsertInternalItems !== false,
|
|
276
|
+
// Default: true
|
|
277
|
+
canUpdate: settings.canUpdateExternalItems !== false,
|
|
278
|
+
// Default: true
|
|
279
|
+
canUpdateStatus: settings.canUpdateStatus !== false
|
|
280
|
+
// Default: true
|
|
281
|
+
};
|
|
282
|
+
} catch {
|
|
283
|
+
return { canCreate: true, canUpdate: true, canUpdateStatus: true };
|
|
284
|
+
}
|
|
285
|
+
}
|
|
237
286
|
async function isContentSyncEnabled(projectRoot) {
|
|
238
287
|
try {
|
|
239
288
|
const configPath = path.join(projectRoot, ".specweave", "config.json");
|
|
@@ -153,6 +153,19 @@ async function createGitHubIssue(
|
|
|
153
153
|
const { specPath, dryRun, verbose } = options;
|
|
154
154
|
|
|
155
155
|
try {
|
|
156
|
+
// Check permission: canUpsertInternalItems (CREATE permission)
|
|
157
|
+
const permissions = await loadSyncPermissions(specPath);
|
|
158
|
+
if (!permissions.canCreate) {
|
|
159
|
+
if (verbose) {
|
|
160
|
+
console.log(' ⚠️ Skipping create - canUpsertInternalItems is disabled in config');
|
|
161
|
+
}
|
|
162
|
+
return {
|
|
163
|
+
success: false,
|
|
164
|
+
action: 'skipped',
|
|
165
|
+
error: 'canUpsertInternalItems is disabled in .specweave/config.json',
|
|
166
|
+
};
|
|
167
|
+
}
|
|
168
|
+
|
|
156
169
|
// Build issue title and body using compact format
|
|
157
170
|
// Examples: [BE-JIRA-AUTH-123] User Authentication, [FE-user-login-ui] Login UI
|
|
158
171
|
// Use display ID for cleaner titles (FS-043 instead of _F-FS-043)
|
|
@@ -234,6 +247,19 @@ async function updateGitHubIssue(
|
|
|
234
247
|
const { specPath, dryRun, verbose } = options;
|
|
235
248
|
|
|
236
249
|
try {
|
|
250
|
+
// Check permission: canUpdateExternalItems (UPDATE permission)
|
|
251
|
+
const permissions = await loadSyncPermissions(specPath);
|
|
252
|
+
if (!permissions.canUpdate) {
|
|
253
|
+
if (verbose) {
|
|
254
|
+
console.log(' ⚠️ Skipping update - canUpdateExternalItems is disabled in config');
|
|
255
|
+
}
|
|
256
|
+
return {
|
|
257
|
+
success: false,
|
|
258
|
+
action: 'skipped',
|
|
259
|
+
error: 'canUpdateExternalItems is disabled in .specweave/config.json',
|
|
260
|
+
};
|
|
261
|
+
}
|
|
262
|
+
|
|
237
263
|
// Get current issue
|
|
238
264
|
const issue = await client.getIssue(issueNumber);
|
|
239
265
|
|
|
@@ -383,6 +409,47 @@ function countUserStoriesInBody(body: string): number {
|
|
|
383
409
|
return matches ? matches.length : 0;
|
|
384
410
|
}
|
|
385
411
|
|
|
412
|
+
/**
|
|
413
|
+
* Load sync permissions from config
|
|
414
|
+
*/
|
|
415
|
+
async function loadSyncPermissions(specPath: string): Promise<{
|
|
416
|
+
canCreate: boolean;
|
|
417
|
+
canUpdate: boolean;
|
|
418
|
+
canUpdateStatus: boolean;
|
|
419
|
+
}> {
|
|
420
|
+
try {
|
|
421
|
+
// Find project root
|
|
422
|
+
let currentDir = path.dirname(specPath);
|
|
423
|
+
let configPath = path.join(currentDir, '.specweave', 'config.json');
|
|
424
|
+
|
|
425
|
+
// Search upward for .specweave/config.json
|
|
426
|
+
while (!await fs.access(configPath).then(() => true).catch(() => false)) {
|
|
427
|
+
const parentDir = path.dirname(currentDir);
|
|
428
|
+
if (parentDir === currentDir) {
|
|
429
|
+
// Default: all enabled
|
|
430
|
+
return { canCreate: true, canUpdate: true, canUpdateStatus: true };
|
|
431
|
+
}
|
|
432
|
+
currentDir = parentDir;
|
|
433
|
+
configPath = path.join(currentDir, '.specweave', 'config.json');
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
// Read config
|
|
437
|
+
const configContent = await fs.readFile(configPath, 'utf-8');
|
|
438
|
+
const config = JSON.parse(configContent);
|
|
439
|
+
|
|
440
|
+
const settings = config.sync?.settings || {};
|
|
441
|
+
|
|
442
|
+
return {
|
|
443
|
+
canCreate: settings.canUpsertInternalItems !== false, // Default: true
|
|
444
|
+
canUpdate: settings.canUpdateExternalItems !== false, // Default: true
|
|
445
|
+
canUpdateStatus: settings.canUpdateStatus !== false // Default: true
|
|
446
|
+
};
|
|
447
|
+
} catch {
|
|
448
|
+
// Default: all enabled
|
|
449
|
+
return { canCreate: true, canUpdate: true, canUpdateStatus: true };
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
|
|
386
453
|
/**
|
|
387
454
|
* Check if spec content sync is enabled
|
|
388
455
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specweave-infrastructure",
|
|
3
3
|
"description": "Cloud infrastructure provisioning and monitoring. Includes Hetzner Cloud provisioning, Prometheus/Grafana setup, distributed tracing (Jaeger/Tempo), and SLO implementation. Focus on cost-effective, production-ready infrastructure.",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.24.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SpecWeave Team",
|
|
7
7
|
"url": "https://spec-weave.com"
|
|
@@ -10,6 +10,32 @@ fallback_behavior: flexible
|
|
|
10
10
|
|
|
11
11
|
# DevOps Agent - Infrastructure & Deployment Expert
|
|
12
12
|
|
|
13
|
+
## 🚀 How to Invoke This Agent
|
|
14
|
+
|
|
15
|
+
**Subagent Type**: `specweave-infrastructure:devops:devops`
|
|
16
|
+
|
|
17
|
+
**Usage Example**:
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
Task({
|
|
21
|
+
subagent_type: "specweave-infrastructure:devops:devops",
|
|
22
|
+
prompt: "Deploy application to AWS ECS Fargate with Terraform and configure CI/CD pipeline with GitHub Actions",
|
|
23
|
+
model: "haiku" // optional: haiku, sonnet, opus
|
|
24
|
+
});
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
**Naming Convention**: `{plugin}:{directory}:{yaml-name-or-directory-name}`
|
|
28
|
+
- **Plugin**: specweave-infrastructure
|
|
29
|
+
- **Directory**: devops
|
|
30
|
+
- **Agent Name**: devops
|
|
31
|
+
|
|
32
|
+
**When to Use**:
|
|
33
|
+
- You need to design and implement cloud infrastructure (AWS, Azure, GCP)
|
|
34
|
+
- You want to create Infrastructure as Code with Terraform or CloudFormation
|
|
35
|
+
- You need to set up CI/CD pipelines for automated deployment
|
|
36
|
+
- You're deploying containerized applications to Kubernetes or Docker Compose
|
|
37
|
+
- You need to implement monitoring, logging, and observability infrastructure
|
|
38
|
+
|
|
13
39
|
## Purpose
|
|
14
40
|
|
|
15
41
|
The devops-agent is SpecWeave's **infrastructure and deployment specialist** that:
|
|
@@ -9,6 +9,32 @@ fallback_behavior: flexible
|
|
|
9
9
|
|
|
10
10
|
You are a network engineer specializing in modern cloud networking, security, and performance optimization.
|
|
11
11
|
|
|
12
|
+
## 🚀 How to Invoke This Agent
|
|
13
|
+
|
|
14
|
+
**Subagent Type**: `specweave-infrastructure:network-engineer:network-engineer`
|
|
15
|
+
|
|
16
|
+
**Usage Example**:
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
Task({
|
|
20
|
+
subagent_type: "specweave-infrastructure:network-engineer:network-engineer",
|
|
21
|
+
prompt: "Design secure multi-cloud network architecture with zero-trust connectivity and service mesh",
|
|
22
|
+
model: "haiku" // optional: haiku, sonnet, opus
|
|
23
|
+
});
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
**Naming Convention**: `{plugin}:{directory}:{yaml-name-or-directory-name}`
|
|
27
|
+
- **Plugin**: specweave-infrastructure
|
|
28
|
+
- **Directory**: network-engineer
|
|
29
|
+
- **Agent Name**: network-engineer
|
|
30
|
+
|
|
31
|
+
**When to Use**:
|
|
32
|
+
- You need to design cloud networking architectures (VPCs, subnets, routing)
|
|
33
|
+
- You want to implement zero-trust security and network policies
|
|
34
|
+
- You need to configure load balancing, DNS, and SSL/TLS
|
|
35
|
+
- You're troubleshooting connectivity issues or performance problems
|
|
36
|
+
- You need to set up service mesh or advanced networking topologies
|
|
37
|
+
|
|
12
38
|
## Purpose
|
|
13
39
|
Expert network engineer with comprehensive knowledge of cloud networking, modern protocols, security architectures, and performance optimization. Masters multi-cloud networking, service mesh technologies, zero-trust architectures, and advanced troubleshooting. Specializes in scalable, secure, and high-performance network solutions.
|
|
14
40
|
|
|
@@ -9,6 +9,32 @@ fallback_behavior: flexible
|
|
|
9
9
|
|
|
10
10
|
You are an observability engineer specializing in production-grade monitoring, logging, tracing, and reliability systems for enterprise-scale applications.
|
|
11
11
|
|
|
12
|
+
## 🚀 How to Invoke This Agent
|
|
13
|
+
|
|
14
|
+
**Subagent Type**: `specweave-infrastructure:observability-engineer:observability-engineer`
|
|
15
|
+
|
|
16
|
+
**Usage Example**:
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
Task({
|
|
20
|
+
subagent_type: "specweave-infrastructure:observability-engineer:observability-engineer",
|
|
21
|
+
prompt: "Design comprehensive monitoring stack with Prometheus, Grafana, and OpenTelemetry for microservices with SLI/SLO tracking",
|
|
22
|
+
model: "haiku" // optional: haiku, sonnet, opus
|
|
23
|
+
});
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
**Naming Convention**: `{plugin}:{directory}:{yaml-name-or-directory-name}`
|
|
27
|
+
- **Plugin**: specweave-infrastructure
|
|
28
|
+
- **Directory**: observability-engineer
|
|
29
|
+
- **Agent Name**: observability-engineer
|
|
30
|
+
|
|
31
|
+
**When to Use**:
|
|
32
|
+
- You need to design monitoring and observability architecture
|
|
33
|
+
- You want to set up distributed tracing for microservices
|
|
34
|
+
- You need to configure alerting and SLO tracking
|
|
35
|
+
- You're troubleshooting performance issues or anomalies
|
|
36
|
+
- You want to implement comprehensive log aggregation and analysis
|
|
37
|
+
|
|
12
38
|
## Purpose
|
|
13
39
|
Expert observability engineer specializing in comprehensive monitoring strategies, distributed tracing, and production reliability systems. Masters both traditional monitoring approaches and cutting-edge observability patterns, with deep knowledge of modern observability stacks, SRE practices, and enterprise-scale monitoring architectures.
|
|
14
40
|
|
|
@@ -9,6 +9,32 @@ fallback_behavior: flexible
|
|
|
9
9
|
|
|
10
10
|
You are a performance engineer specializing in modern application optimization, observability, and scalable system performance.
|
|
11
11
|
|
|
12
|
+
## 🚀 How to Invoke This Agent
|
|
13
|
+
|
|
14
|
+
**Subagent Type**: `specweave-infrastructure:performance-engineer:performance-engineer`
|
|
15
|
+
|
|
16
|
+
**Usage Example**:
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
Task({
|
|
20
|
+
subagent_type: "specweave-infrastructure:performance-engineer:performance-engineer",
|
|
21
|
+
prompt: "Analyze and optimize API performance with distributed tracing, implement multi-tier caching, and load testing",
|
|
22
|
+
model: "haiku" // optional: haiku, sonnet, opus
|
|
23
|
+
});
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
**Naming Convention**: `{plugin}:{directory}:{yaml-name-or-directory-name}`
|
|
27
|
+
- **Plugin**: specweave-infrastructure
|
|
28
|
+
- **Directory**: performance-engineer
|
|
29
|
+
- **Agent Name**: performance-engineer
|
|
30
|
+
|
|
31
|
+
**When to Use**:
|
|
32
|
+
- You need to profile and optimize application performance
|
|
33
|
+
- You want to implement caching strategies across layers
|
|
34
|
+
- You need to conduct load testing and capacity planning
|
|
35
|
+
- You're optimizing database queries or API response times
|
|
36
|
+
- You want to improve Core Web Vitals or frontend performance
|
|
37
|
+
|
|
12
38
|
## Purpose
|
|
13
39
|
Expert performance engineer with comprehensive knowledge of modern observability, application profiling, and system optimization. Masters performance testing, distributed tracing, caching architectures, and scalability patterns. Specializes in end-to-end performance optimization, real user monitoring, and building performant, scalable systems.
|
|
14
40
|
|
|
@@ -10,6 +10,32 @@ fallback_behavior: auto
|
|
|
10
10
|
|
|
11
11
|
# SRE Agent - Site Reliability Engineering Expert
|
|
12
12
|
|
|
13
|
+
## 🚀 How to Invoke This Agent
|
|
14
|
+
|
|
15
|
+
**Subagent Type**: `specweave-infrastructure:sre:sre`
|
|
16
|
+
|
|
17
|
+
**Usage Example**:
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
Task({
|
|
21
|
+
subagent_type: "specweave-infrastructure:sre:sre",
|
|
22
|
+
prompt: "Diagnose why dashboard loading is slow (10 seconds) and provide immediate and long-term mitigation plans",
|
|
23
|
+
model: "haiku" // optional: haiku, sonnet, opus
|
|
24
|
+
});
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
**Naming Convention**: `{plugin}:{directory}:{yaml-name-or-directory-name}`
|
|
28
|
+
- **Plugin**: specweave-infrastructure
|
|
29
|
+
- **Directory**: sre
|
|
30
|
+
- **Agent Name**: sre
|
|
31
|
+
|
|
32
|
+
**When to Use**:
|
|
33
|
+
- You have an active production incident and need rapid diagnosis
|
|
34
|
+
- You need to analyze root causes of system failures
|
|
35
|
+
- You want to create runbooks for recurring issues
|
|
36
|
+
- You need to write post-mortems after incidents
|
|
37
|
+
- You're troubleshooting performance, availability, or reliability issues
|
|
38
|
+
|
|
13
39
|
**Purpose**: Holistic incident response, root cause analysis, and production system reliability.
|
|
14
40
|
|
|
15
41
|
## Core Capabilities
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specweave-jira",
|
|
3
3
|
"description": "JIRA integration for SpecWeave increments. Bidirectional sync between SpecWeave increments and JIRA epics/stories. Automatically creates JIRA issues from increments, tracks progress, and updates status.",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.24.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SpecWeave Team",
|
|
7
7
|
"url": "https://spec-weave.com"
|
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Jira Manager Agent
|
|
2
2
|
|
|
3
|
+
## 🚀 How to Invoke This Agent
|
|
4
|
+
|
|
5
|
+
**Subagent Type**: `specweave-jira:jira-manager:jira-manager`
|
|
6
|
+
|
|
7
|
+
**Usage Example**:
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
Task({
|
|
11
|
+
subagent_type: "specweave-jira:jira-manager:jira-manager",
|
|
12
|
+
prompt: "Create Jira epic for increment 0005 and sync all tasks from spec.md and tasks.md",
|
|
13
|
+
model: "haiku" // optional: haiku, sonnet, opus
|
|
14
|
+
});
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**Naming Convention**: `{plugin}:{directory}:{yaml-name-or-directory-name}`
|
|
18
|
+
- **Plugin**: specweave-jira
|
|
19
|
+
- **Directory**: jira-manager
|
|
20
|
+
- **Agent Name**: jira-manager
|
|
21
|
+
|
|
22
|
+
**When to Use**:
|
|
23
|
+
- You need to sync SpecWeave increments to Jira epics
|
|
24
|
+
- You want bidirectional synchronization between SpecWeave and Jira
|
|
25
|
+
- You need to update Jira issues with task completion status
|
|
26
|
+
- You're creating Jira stories from SpecWeave specifications
|
|
27
|
+
- You need to manage cross-system consistency between SpecWeave and Jira
|
|
28
|
+
|
|
3
29
|
**Role**: Jira integration specialist for SpecWeave increments
|
|
4
30
|
|
|
5
31
|
**Expertise**: Jira REST API, Epic/Story/Task management, JQL, automation, webhooks, custom fields
|