specweave 0.23.18 → 0.24.1
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 +144 -45
- package/CLAUDE.md +137 -4
- 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/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/repo-structure/repo-structure-manager.d.ts.map +1 -1
- package/dist/src/core/repo-structure/repo-structure-manager.js +76 -43
- package/dist/src/core/repo-structure/repo-structure-manager.js.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/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/pre-increment-start.sh +168 -0
- package/plugins/specweave/skills/SKILLS-INDEX.md +1 -1
- package/plugins/specweave-ado/.claude-plugin/plugin.json +1 -1
- 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/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/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/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 +408 -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/hooks/.specweave/logs/hooks-debug.log +212 -0
- package/plugins/specweave-infrastructure/.claude-plugin/plugin.json +1 -1
- package/plugins/specweave-jira/.claude-plugin/plugin.json +1 -1
- 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-streams/.claude-plugin/plugin.json +1 -1
- 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 +1 -1
- 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/commands/stripe-setup.md +931 -0
- package/plugins/specweave-payments/commands/subscription-flow.md +1193 -0
- package/plugins/specweave-payments/commands/subscription-manage.md +386 -0
- package/plugins/specweave-payments/commands/webhook-setup.md +295 -0
- package/plugins/specweave-plugin-dev/.claude-plugin/plugin.json +13 -12
- 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/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 +818 -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-plugin-dev/skills/plugin-expert/SKILL.md +0 -1231
- /package/plugins/specweave/{agents/code-reviewer.md → skills/code-reviewer/SKILL.md} +0 -0
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: plugin-development
|
|
3
|
+
description: Expert Claude Code plugin development covering plugin structure, slash commands, auto-activating skills, sub-agents, plugin.json configuration, YAML frontmatter, activation keywords, directory structure, and plugin best practices. Activates for plugin development, create plugin, claude plugin, slash command, skill activation, SKILL.md, plugin.json, claude code plugin, how to make plugin.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Plugin Development Expert
|
|
7
|
+
|
|
8
|
+
Expert guidance for creating production-ready Claude Code plugins.
|
|
9
|
+
|
|
10
|
+
## Critical Structure Rules
|
|
11
|
+
|
|
12
|
+
**Directory Hierarchy**:
|
|
13
|
+
```
|
|
14
|
+
~/.claude/plugins/my-plugin/ ← Plugin root
|
|
15
|
+
├── .claude-plugin/
|
|
16
|
+
│ └── plugin.json ← Manifest (REQUIRED)
|
|
17
|
+
├── commands/
|
|
18
|
+
│ └── command-name.md ← Slash commands
|
|
19
|
+
├── skills/
|
|
20
|
+
│ └── skill-name/ ← MUST be subdirectory
|
|
21
|
+
│ └── SKILL.md ← MUST be uppercase
|
|
22
|
+
└── agents/
|
|
23
|
+
└── agent-name/
|
|
24
|
+
└── AGENT.md
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
**Common Mistakes**:
|
|
28
|
+
```
|
|
29
|
+
# ❌ WRONG
|
|
30
|
+
skills/SKILL.md # Missing subdirectory
|
|
31
|
+
skills/my-skill.md # Wrong filename
|
|
32
|
+
skills/My-Skill/SKILL.md # CamelCase not allowed
|
|
33
|
+
|
|
34
|
+
# ✅ CORRECT
|
|
35
|
+
skills/my-skill/SKILL.md # kebab-case subdirectory + SKILL.md
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## plugin.json Format
|
|
39
|
+
|
|
40
|
+
**Minimum Required**:
|
|
41
|
+
```json
|
|
42
|
+
{
|
|
43
|
+
"name": "my-plugin",
|
|
44
|
+
"description": "Clear description with activation keywords",
|
|
45
|
+
"version": "1.0.0"
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
**Full Example**:
|
|
50
|
+
```json
|
|
51
|
+
{
|
|
52
|
+
"name": "my-awesome-plugin",
|
|
53
|
+
"description": "Expert cost optimization for AWS, Azure, GCP. Activates for reduce costs, cloud costs, finops, save money, cost analysis.",
|
|
54
|
+
"version": "1.0.0",
|
|
55
|
+
"author": {
|
|
56
|
+
"name": "Your Name",
|
|
57
|
+
"email": "you@example.com"
|
|
58
|
+
},
|
|
59
|
+
"homepage": "https://github.com/user/my-plugin",
|
|
60
|
+
"repository": "https://github.com/user/my-plugin",
|
|
61
|
+
"license": "MIT",
|
|
62
|
+
"keywords": ["cost", "finops", "aws", "azure", "gcp"]
|
|
63
|
+
}
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
## Command Format (Slash Commands)
|
|
67
|
+
|
|
68
|
+
**Header Format** (CRITICAL):
|
|
69
|
+
```markdown
|
|
70
|
+
# /my-plugin:command-name
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
**Rules**:
|
|
74
|
+
- MUST start with `# /`
|
|
75
|
+
- Plugin name: `kebab-case`
|
|
76
|
+
- Command name: `kebab-case`
|
|
77
|
+
- NO YAML frontmatter (only skills use YAML)
|
|
78
|
+
|
|
79
|
+
**Full Template**:
|
|
80
|
+
```markdown
|
|
81
|
+
# /my-plugin:analyze-costs
|
|
82
|
+
|
|
83
|
+
Analyze cloud costs and provide optimization recommendations.
|
|
84
|
+
|
|
85
|
+
You are an expert FinOps engineer.
|
|
86
|
+
|
|
87
|
+
## Your Task
|
|
88
|
+
|
|
89
|
+
1. Collect cost data
|
|
90
|
+
2. Analyze usage patterns
|
|
91
|
+
3. Identify optimization opportunities
|
|
92
|
+
4. Generate report
|
|
93
|
+
|
|
94
|
+
### 1. Data Collection
|
|
95
|
+
|
|
96
|
+
\```bash
|
|
97
|
+
aws ce get-cost-and-usage --time-period...
|
|
98
|
+
\```
|
|
99
|
+
|
|
100
|
+
## Example Usage
|
|
101
|
+
|
|
102
|
+
**User**: "Analyze our AWS costs"
|
|
103
|
+
|
|
104
|
+
**Response**:
|
|
105
|
+
- Pulls Cost Explorer data
|
|
106
|
+
- Identifies $5K/month in savings
|
|
107
|
+
- Provides implementation plan
|
|
108
|
+
|
|
109
|
+
## When to Use
|
|
110
|
+
|
|
111
|
+
- Monthly cost reviews
|
|
112
|
+
- Budget overruns
|
|
113
|
+
- Pre-purchase planning
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
## Skill Format (Auto-Activating)
|
|
117
|
+
|
|
118
|
+
**YAML Frontmatter** (REQUIRED):
|
|
119
|
+
```yaml
|
|
120
|
+
---
|
|
121
|
+
name: cost-optimization
|
|
122
|
+
description: Expert cloud cost optimization for AWS, Azure, GCP. Covers FinOps, reserved instances, spot instances, right-sizing, storage optimization. Activates for reduce costs, save money, cloud costs, aws costs, finops, cost optimization, budget overrun, expensive bill.
|
|
123
|
+
---
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
**Activation Keywords**:
|
|
127
|
+
```yaml
|
|
128
|
+
# ✅ GOOD: Specific, varied keywords
|
|
129
|
+
description: Expert Python optimization. Activates for python performance, optimize python code, speed up python, profiling, cProfile, pypy, numba.
|
|
130
|
+
|
|
131
|
+
# ❌ BAD: Too generic
|
|
132
|
+
description: Python expert.
|
|
133
|
+
|
|
134
|
+
# ❌ BAD: No activation keywords
|
|
135
|
+
description: Expert Python optimization covering performance tuning.
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
**Full Template**:
|
|
139
|
+
```markdown
|
|
140
|
+
---
|
|
141
|
+
name: my-skill
|
|
142
|
+
description: Expert [domain] covering [topics]. Activates for keyword1, keyword2, phrase3, action4.
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
# Skill Title
|
|
146
|
+
|
|
147
|
+
You are an expert [role] with deep knowledge of [domain].
|
|
148
|
+
|
|
149
|
+
## Core Expertise
|
|
150
|
+
|
|
151
|
+
### 1. Topic Area
|
|
152
|
+
|
|
153
|
+
Content here...
|
|
154
|
+
|
|
155
|
+
### 2. Code Examples
|
|
156
|
+
|
|
157
|
+
\```typescript
|
|
158
|
+
// Working examples
|
|
159
|
+
\```
|
|
160
|
+
|
|
161
|
+
## Best Practices
|
|
162
|
+
|
|
163
|
+
- Practice 1
|
|
164
|
+
- Practice 2
|
|
165
|
+
|
|
166
|
+
You are ready to help with [domain]!
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
## Agent Format (Sub-Agents)
|
|
170
|
+
|
|
171
|
+
**File Location**:
|
|
172
|
+
```
|
|
173
|
+
agents/agent-name/AGENT.md
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
**Template**:
|
|
177
|
+
```markdown
|
|
178
|
+
---
|
|
179
|
+
name: specialist-agent
|
|
180
|
+
description: Specialized agent for [specific task]
|
|
181
|
+
---
|
|
182
|
+
|
|
183
|
+
# Agent Title
|
|
184
|
+
|
|
185
|
+
You are a specialized agent for [purpose].
|
|
186
|
+
|
|
187
|
+
## Capabilities
|
|
188
|
+
|
|
189
|
+
1. Capability 1
|
|
190
|
+
2. Capability 2
|
|
191
|
+
|
|
192
|
+
## Workflow
|
|
193
|
+
|
|
194
|
+
1. Analyze input
|
|
195
|
+
2. Execute specialized task
|
|
196
|
+
3. Return results
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
**Invocation**:
|
|
200
|
+
```typescript
|
|
201
|
+
Task({
|
|
202
|
+
subagent_type: "plugin-name:folder-name:yaml-name",
|
|
203
|
+
prompt: "Task description"
|
|
204
|
+
});
|
|
205
|
+
|
|
206
|
+
// Example
|
|
207
|
+
Task({
|
|
208
|
+
subagent_type: "my-plugin:specialist-agent:specialist-agent",
|
|
209
|
+
prompt: "Analyze this code for security vulnerabilities"
|
|
210
|
+
});
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
## Testing Workflow
|
|
214
|
+
|
|
215
|
+
**1. Install Plugin**:
|
|
216
|
+
```bash
|
|
217
|
+
cp -r my-plugin ~/.claude/plugins/
|
|
218
|
+
# OR
|
|
219
|
+
claude plugin add github:username/my-plugin
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
**2. Restart Claude Code**:
|
|
223
|
+
```bash
|
|
224
|
+
# Required after:
|
|
225
|
+
- Adding new plugin
|
|
226
|
+
- Modifying plugin.json
|
|
227
|
+
- Adding/removing commands
|
|
228
|
+
- Changing YAML frontmatter
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
**3. Test Commands**:
|
|
232
|
+
```bash
|
|
233
|
+
# Type "/" in Claude Code
|
|
234
|
+
# Verify command appears: /my-plugin:command-name
|
|
235
|
+
# Execute command
|
|
236
|
+
# Verify behavior
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
**4. Test Skills**:
|
|
240
|
+
```bash
|
|
241
|
+
# Ask trigger question: "How do I reduce costs?"
|
|
242
|
+
# Verify skill activates
|
|
243
|
+
# Check response uses skill knowledge
|
|
244
|
+
```
|
|
245
|
+
|
|
246
|
+
**5. Check Logs**:
|
|
247
|
+
```bash
|
|
248
|
+
tail -f ~/.claude/logs/claude.log | grep my-plugin
|
|
249
|
+
|
|
250
|
+
# Expected:
|
|
251
|
+
# ✅ "Loaded plugin: my-plugin"
|
|
252
|
+
# ✅ "Registered command: /my-plugin:analyze"
|
|
253
|
+
# ✅ "Registered skill: cost-optimization"
|
|
254
|
+
|
|
255
|
+
# Errors:
|
|
256
|
+
# ❌ "Failed to parse plugin.json"
|
|
257
|
+
# ❌ "YAML parsing error in SKILL.md"
|
|
258
|
+
# ❌ "Command header malformed"
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
## Common Issues
|
|
262
|
+
|
|
263
|
+
**Issue: Skill not activating**
|
|
264
|
+
```
|
|
265
|
+
Checklist:
|
|
266
|
+
1. ✅ YAML frontmatter present? (---...---)
|
|
267
|
+
2. ✅ Activation keywords in description?
|
|
268
|
+
3. ✅ SKILL.md in subdirectory? (skills/name/SKILL.md)
|
|
269
|
+
4. ✅ File named SKILL.md (uppercase)?
|
|
270
|
+
5. ✅ Claude Code restarted?
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
**Issue: Command not found**
|
|
274
|
+
```
|
|
275
|
+
Checklist:
|
|
276
|
+
1. ✅ Header format: # /plugin-name:command-name
|
|
277
|
+
2. ✅ File in commands/ directory?
|
|
278
|
+
3. ✅ Plugin name matches plugin.json?
|
|
279
|
+
4. ✅ Claude Code restarted?
|
|
280
|
+
```
|
|
281
|
+
|
|
282
|
+
**Issue: YAML parsing error**
|
|
283
|
+
```
|
|
284
|
+
Common causes:
|
|
285
|
+
- Unclosed quotes: description: "Missing end
|
|
286
|
+
- Invalid characters: name: my_skill (use hyphens)
|
|
287
|
+
- Missing closing ---
|
|
288
|
+
- Incorrect indentation
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
## Best Practices
|
|
292
|
+
|
|
293
|
+
**Naming**:
|
|
294
|
+
- Plugin: `my-awesome-plugin` (kebab-case)
|
|
295
|
+
- Commands: `analyze-costs` (kebab-case)
|
|
296
|
+
- Skills: `cost-optimization` (kebab-case)
|
|
297
|
+
- NO underscores, NO CamelCase
|
|
298
|
+
|
|
299
|
+
**Activation Keywords**:
|
|
300
|
+
- Include 5-10 trigger keywords
|
|
301
|
+
- Mix specific terms and common phrases
|
|
302
|
+
- Think about what users will ask
|
|
303
|
+
- Test with real questions
|
|
304
|
+
|
|
305
|
+
**Documentation**:
|
|
306
|
+
- Clear "Your Task" section
|
|
307
|
+
- Code examples with syntax highlighting
|
|
308
|
+
- "Example Usage" section
|
|
309
|
+
- "When to Use" section
|
|
310
|
+
|
|
311
|
+
**Performance**:
|
|
312
|
+
- Keep SKILL.md under 50KB
|
|
313
|
+
- Optimize command prompts
|
|
314
|
+
- Avoid expensive operations
|
|
315
|
+
|
|
316
|
+
Create production-ready Claude Code plugins!
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specweave-release",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.24.0",
|
|
4
4
|
"description": "Comprehensive release management for single-repo, multi-repo, and monorepo architectures. Detects existing release strategies, aligns versions across repositories, manages Release Candidates (RC), and integrates with CI/CD workflows. Supports semantic versioning, coordinated releases, and brownfield strategy detection.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Anton Abyzov",
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: specweave-release:npm
|
|
3
|
+
description: Bump patch version, create git tag, and trigger npm publish via GitHub Actions. Automates the complete release workflow with pre-flight checks, version bumping, tag creation, and GitHub Actions triggering.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# /specweave-release:npm - NPM Release Automation
|
|
7
|
+
|
|
8
|
+
You are the NPM Release Assistant. Your job is to automate the patch version release process.
|
|
9
|
+
|
|
10
|
+
## Your Task
|
|
11
|
+
|
|
12
|
+
Execute the following steps in order:
|
|
13
|
+
|
|
14
|
+
### 1. Pre-flight Checks
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
# Verify we're on develop branch
|
|
18
|
+
git rev-parse --abbrev-ref HEAD
|
|
19
|
+
|
|
20
|
+
# Check for uncommitted changes
|
|
21
|
+
git status --porcelain
|
|
22
|
+
|
|
23
|
+
# Verify current version
|
|
24
|
+
node -p "require('./package.json').version"
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
**STOP if**:
|
|
28
|
+
- Not on `develop` branch (ask user to switch)
|
|
29
|
+
- Uncommitted changes exist (ask user to commit first)
|
|
30
|
+
|
|
31
|
+
### 2. Bump Patch Version
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
# This creates commit + tag automatically
|
|
35
|
+
npm version patch -m "chore: bump version to %s"
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
**What this does**:
|
|
39
|
+
- Updates `package.json` and `package-lock.json`
|
|
40
|
+
- Creates git commit with message "chore: bump version to X.Y.Z"
|
|
41
|
+
- Creates git tag `vX.Y.Z`
|
|
42
|
+
|
|
43
|
+
### 3. Extract New Version
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
# Get the new version
|
|
47
|
+
node -p "require('./package.json').version"
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### 4. Push to GitHub
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
# Push commit and tag to trigger GitHub Actions
|
|
54
|
+
git push origin develop --follow-tags
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
**What happens next**:
|
|
58
|
+
- GitHub Actions workflow detects the tag
|
|
59
|
+
- Runs tests
|
|
60
|
+
- Publishes to npm
|
|
61
|
+
- Creates GitHub release
|
|
62
|
+
|
|
63
|
+
### 5. Report Results
|
|
64
|
+
|
|
65
|
+
Show the user:
|
|
66
|
+
```markdown
|
|
67
|
+
✅ Release initiated successfully!
|
|
68
|
+
|
|
69
|
+
📦 **Version**: vX.Y.Z
|
|
70
|
+
🔗 **Tag**: https://github.com/anton-abyzov/specweave/releases/tag/vX.Y.Z
|
|
71
|
+
⏳ **GitHub Actions**: https://github.com/anton-abyzov/specweave/actions
|
|
72
|
+
|
|
73
|
+
**Next steps**:
|
|
74
|
+
1. Monitor GitHub Actions workflow (1-2 minutes)
|
|
75
|
+
2. Verify npm publish: https://www.npmjs.com/package/specweave
|
|
76
|
+
3. Check GitHub release notes
|
|
77
|
+
|
|
78
|
+
**Note**: GitHub Actions will automatically:
|
|
79
|
+
- Build and test the package
|
|
80
|
+
- Publish to npm
|
|
81
|
+
- Create GitHub release with CHANGELOG notes
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## Error Handling
|
|
85
|
+
|
|
86
|
+
**If `npm version` fails**:
|
|
87
|
+
- Check if version already exists
|
|
88
|
+
- Verify package.json is valid
|
|
89
|
+
- Ask user to manually fix and retry
|
|
90
|
+
|
|
91
|
+
**If `git push` fails**:
|
|
92
|
+
- Check network connection
|
|
93
|
+
- Verify git credentials
|
|
94
|
+
- Check branch protection rules
|
|
95
|
+
|
|
96
|
+
## Safety Rules
|
|
97
|
+
|
|
98
|
+
- ✅ ONLY bump patch version (never minor/major without confirmation)
|
|
99
|
+
- ✅ ALWAYS check for uncommitted changes first
|
|
100
|
+
- ✅ ALWAYS verify on develop branch
|
|
101
|
+
- ✅ NEVER force push
|
|
102
|
+
- ✅ NEVER skip pre-flight checks
|
|
103
|
+
|
|
104
|
+
## Success Criteria
|
|
105
|
+
|
|
106
|
+
✅ Version bumped in package.json
|
|
107
|
+
✅ Git commit created
|
|
108
|
+
✅ Git tag created
|
|
109
|
+
✅ Changes pushed to GitHub
|
|
110
|
+
✅ GitHub Actions workflow triggered
|
|
@@ -274,3 +274,171 @@
|
|
|
274
274
|
[2025-11-22 02:20:36] 🎯 Post-Increment-Completion Hook Triggered
|
|
275
275
|
[2025-11-22 02:20:36] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
276
276
|
[2025-11-22 02:20:36] Run: npm run build
|
|
277
|
+
[2025-11-22 13:23:12] 🎯 Post-Increment-Completion Hook Triggered
|
|
278
|
+
[2025-11-22 13:23:12] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
279
|
+
[2025-11-22 13:23:12] Run: npm run build
|
|
280
|
+
[2025-11-22 13:23:14] 🎯 Post-Increment-Completion Hook Triggered
|
|
281
|
+
[2025-11-22 13:23:14] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
282
|
+
[2025-11-22 13:23:14] Run: npm run build
|
|
283
|
+
[2025-11-22 13:23:15] 🎯 Post-Increment-Completion Hook Triggered
|
|
284
|
+
[2025-11-22 13:23:15] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
285
|
+
[2025-11-22 13:23:15] Run: npm run build
|
|
286
|
+
[2025-11-22 13:23:17] 🎯 Post-Increment-Completion Hook Triggered
|
|
287
|
+
[2025-11-22 13:23:17] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
288
|
+
[2025-11-22 13:23:17] Run: npm run build
|
|
289
|
+
[2025-11-22 13:23:19] 🎯 Post-Increment-Completion Hook Triggered
|
|
290
|
+
[2025-11-22 13:23:19] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
291
|
+
[2025-11-22 13:23:19] Run: npm run build
|
|
292
|
+
[2025-11-22 13:23:19] 🎯 Post-Increment-Completion Hook Triggered
|
|
293
|
+
[2025-11-22 13:23:19] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
294
|
+
[2025-11-22 13:23:19] Run: npm run build
|
|
295
|
+
[2025-11-22 13:23:19] 🎯 Post-Increment-Completion Hook Triggered
|
|
296
|
+
[2025-11-22 13:23:19] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
297
|
+
[2025-11-22 13:23:19] Run: npm run build
|
|
298
|
+
[2025-11-22 13:23:20] 🎯 Post-Increment-Completion Hook Triggered
|
|
299
|
+
[2025-11-22 13:23:20] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
300
|
+
[2025-11-22 13:23:20] Run: npm run build
|
|
301
|
+
[2025-11-22 13:27:47] 🎯 Post-Increment-Completion Hook Triggered
|
|
302
|
+
[2025-11-22 13:27:47] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
303
|
+
[2025-11-22 13:27:47] Run: npm run build
|
|
304
|
+
[2025-11-22 13:27:49] 🎯 Post-Increment-Completion Hook Triggered
|
|
305
|
+
[2025-11-22 13:27:49] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
306
|
+
[2025-11-22 13:27:49] Run: npm run build
|
|
307
|
+
[2025-11-22 13:27:50] 🎯 Post-Increment-Completion Hook Triggered
|
|
308
|
+
[2025-11-22 13:27:50] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
309
|
+
[2025-11-22 13:27:50] Run: npm run build
|
|
310
|
+
[2025-11-22 13:27:52] 🎯 Post-Increment-Completion Hook Triggered
|
|
311
|
+
[2025-11-22 13:27:52] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
312
|
+
[2025-11-22 13:27:52] Run: npm run build
|
|
313
|
+
[2025-11-22 13:27:54] 🎯 Post-Increment-Completion Hook Triggered
|
|
314
|
+
[2025-11-22 13:27:54] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
315
|
+
[2025-11-22 13:27:54] Run: npm run build
|
|
316
|
+
[2025-11-22 13:27:54] 🎯 Post-Increment-Completion Hook Triggered
|
|
317
|
+
[2025-11-22 13:27:54] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
318
|
+
[2025-11-22 13:27:54] Run: npm run build
|
|
319
|
+
[2025-11-22 13:27:54] 🎯 Post-Increment-Completion Hook Triggered
|
|
320
|
+
[2025-11-22 13:27:54] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
321
|
+
[2025-11-22 13:27:54] Run: npm run build
|
|
322
|
+
[2025-11-22 13:27:54] 🎯 Post-Increment-Completion Hook Triggered
|
|
323
|
+
[2025-11-22 13:27:54] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
324
|
+
[2025-11-22 13:27:54] Run: npm run build
|
|
325
|
+
[2025-11-22 14:10:04] 🎯 Post-Increment-Completion Hook Triggered
|
|
326
|
+
[2025-11-22 14:10:04] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
327
|
+
[2025-11-22 14:10:04] Run: npm run build
|
|
328
|
+
[2025-11-22 14:10:09] 🎯 Post-Increment-Completion Hook Triggered
|
|
329
|
+
[2025-11-22 14:10:09] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
330
|
+
[2025-11-22 14:10:09] Run: npm run build
|
|
331
|
+
[2025-11-22 14:10:14] 🎯 Post-Increment-Completion Hook Triggered
|
|
332
|
+
[2025-11-22 14:10:14] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
333
|
+
[2025-11-22 14:10:14] Run: npm run build
|
|
334
|
+
[2025-11-22 14:10:19] 🎯 Post-Increment-Completion Hook Triggered
|
|
335
|
+
[2025-11-22 14:10:19] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
336
|
+
[2025-11-22 14:10:19] Run: npm run build
|
|
337
|
+
[2025-11-22 14:27:50] 🎯 Post-Increment-Completion Hook Triggered
|
|
338
|
+
[2025-11-22 14:27:50] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
339
|
+
[2025-11-22 14:27:50] Run: npm run build
|
|
340
|
+
[2025-11-22 14:27:55] 🎯 Post-Increment-Completion Hook Triggered
|
|
341
|
+
[2025-11-22 14:27:55] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
342
|
+
[2025-11-22 14:27:55] Run: npm run build
|
|
343
|
+
[2025-11-22 14:28:00] 🎯 Post-Increment-Completion Hook Triggered
|
|
344
|
+
[2025-11-22 14:28:00] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
345
|
+
[2025-11-22 14:28:00] Run: npm run build
|
|
346
|
+
[2025-11-22 14:28:05] 🎯 Post-Increment-Completion Hook Triggered
|
|
347
|
+
[2025-11-22 14:28:05] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
348
|
+
[2025-11-22 14:28:05] Run: npm run build
|
|
349
|
+
[2025-11-22 14:39:21] 🎯 Post-Increment-Completion Hook Triggered
|
|
350
|
+
[2025-11-22 14:39:21] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
351
|
+
[2025-11-22 14:39:21] Run: npm run build
|
|
352
|
+
[2025-11-22 14:39:26] 🎯 Post-Increment-Completion Hook Triggered
|
|
353
|
+
[2025-11-22 14:39:26] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
354
|
+
[2025-11-22 14:39:26] Run: npm run build
|
|
355
|
+
[2025-11-22 14:39:31] 🎯 Post-Increment-Completion Hook Triggered
|
|
356
|
+
[2025-11-22 14:39:31] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
357
|
+
[2025-11-22 14:39:31] Run: npm run build
|
|
358
|
+
[2025-11-22 14:39:36] 🎯 Post-Increment-Completion Hook Triggered
|
|
359
|
+
[2025-11-22 14:39:36] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
360
|
+
[2025-11-22 14:39:36] Run: npm run build
|
|
361
|
+
[2025-11-22 15:58:48] 🎯 Post-Increment-Completion Hook Triggered
|
|
362
|
+
[2025-11-22 15:58:48] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
363
|
+
[2025-11-22 15:58:48] Run: npm run build
|
|
364
|
+
[2025-11-22 15:58:53] 🎯 Post-Increment-Completion Hook Triggered
|
|
365
|
+
[2025-11-22 15:58:53] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
366
|
+
[2025-11-22 15:58:53] Run: npm run build
|
|
367
|
+
[2025-11-22 15:58:58] 🎯 Post-Increment-Completion Hook Triggered
|
|
368
|
+
[2025-11-22 15:58:58] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
369
|
+
[2025-11-22 15:58:58] Run: npm run build
|
|
370
|
+
[2025-11-22 15:59:03] 🎯 Post-Increment-Completion Hook Triggered
|
|
371
|
+
[2025-11-22 15:59:03] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
372
|
+
[2025-11-22 15:59:03] Run: npm run build
|
|
373
|
+
[2025-11-22 15:59:21] 🎯 Post-Increment-Completion Hook Triggered
|
|
374
|
+
[2025-11-22 15:59:21] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
375
|
+
[2025-11-22 15:59:21] Run: npm run build
|
|
376
|
+
[2025-11-22 15:59:26] 🎯 Post-Increment-Completion Hook Triggered
|
|
377
|
+
[2025-11-22 15:59:26] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
378
|
+
[2025-11-22 15:59:26] Run: npm run build
|
|
379
|
+
[2025-11-22 15:59:32] 🎯 Post-Increment-Completion Hook Triggered
|
|
380
|
+
[2025-11-22 15:59:32] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
381
|
+
[2025-11-22 15:59:32] Run: npm run build
|
|
382
|
+
[2025-11-22 15:59:37] 🎯 Post-Increment-Completion Hook Triggered
|
|
383
|
+
[2025-11-22 15:59:37] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
384
|
+
[2025-11-22 15:59:37] Run: npm run build
|
|
385
|
+
[2025-11-22 16:00:32] 🎯 Post-Increment-Completion Hook Triggered
|
|
386
|
+
[2025-11-22 16:00:32] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
387
|
+
[2025-11-22 16:00:32] Run: npm run build
|
|
388
|
+
[2025-11-22 16:00:37] 🎯 Post-Increment-Completion Hook Triggered
|
|
389
|
+
[2025-11-22 16:00:37] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
390
|
+
[2025-11-22 16:00:37] Run: npm run build
|
|
391
|
+
[2025-11-22 16:00:42] 🎯 Post-Increment-Completion Hook Triggered
|
|
392
|
+
[2025-11-22 16:00:42] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
393
|
+
[2025-11-22 16:00:42] Run: npm run build
|
|
394
|
+
[2025-11-22 16:00:47] 🎯 Post-Increment-Completion Hook Triggered
|
|
395
|
+
[2025-11-22 16:00:47] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
396
|
+
[2025-11-22 16:00:47] Run: npm run build
|
|
397
|
+
[2025-11-22 16:01:04] 🎯 Post-Increment-Completion Hook Triggered
|
|
398
|
+
[2025-11-22 16:01:04] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
399
|
+
[2025-11-22 16:01:04] Run: npm run build
|
|
400
|
+
[2025-11-22 16:01:09] 🎯 Post-Increment-Completion Hook Triggered
|
|
401
|
+
[2025-11-22 16:01:09] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
402
|
+
[2025-11-22 16:01:09] Run: npm run build
|
|
403
|
+
[2025-11-22 16:01:14] 🎯 Post-Increment-Completion Hook Triggered
|
|
404
|
+
[2025-11-22 16:01:14] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
405
|
+
[2025-11-22 16:01:14] Run: npm run build
|
|
406
|
+
[2025-11-22 16:01:19] 🎯 Post-Increment-Completion Hook Triggered
|
|
407
|
+
[2025-11-22 16:01:19] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
408
|
+
[2025-11-22 16:01:19] Run: npm run build
|
|
409
|
+
[2025-11-22 16:02:06] 🎯 Post-Increment-Completion Hook Triggered
|
|
410
|
+
[2025-11-22 16:02:06] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
411
|
+
[2025-11-22 16:02:06] Run: npm run build
|
|
412
|
+
[2025-11-22 16:02:11] 🎯 Post-Increment-Completion Hook Triggered
|
|
413
|
+
[2025-11-22 16:02:11] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
414
|
+
[2025-11-22 16:02:11] Run: npm run build
|
|
415
|
+
[2025-11-22 16:02:16] 🎯 Post-Increment-Completion Hook Triggered
|
|
416
|
+
[2025-11-22 16:02:16] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
417
|
+
[2025-11-22 16:02:16] Run: npm run build
|
|
418
|
+
[2025-11-22 16:02:21] 🎯 Post-Increment-Completion Hook Triggered
|
|
419
|
+
[2025-11-22 16:02:21] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
420
|
+
[2025-11-22 16:02:21] Run: npm run build
|
|
421
|
+
[2025-11-22 17:12:35] 🎯 Post-Increment-Completion Hook Triggered
|
|
422
|
+
[2025-11-22 17:12:35] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
423
|
+
[2025-11-22 17:12:35] Run: npm run build
|
|
424
|
+
[2025-11-22 17:12:37] 🎯 Post-Increment-Completion Hook Triggered
|
|
425
|
+
[2025-11-22 17:12:37] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
426
|
+
[2025-11-22 17:12:37] Run: npm run build
|
|
427
|
+
[2025-11-22 17:12:38] 🎯 Post-Increment-Completion Hook Triggered
|
|
428
|
+
[2025-11-22 17:12:38] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
429
|
+
[2025-11-22 17:12:38] Run: npm run build
|
|
430
|
+
[2025-11-22 17:12:40] 🎯 Post-Increment-Completion Hook Triggered
|
|
431
|
+
[2025-11-22 17:12:40] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
432
|
+
[2025-11-22 17:12:40] Run: npm run build
|
|
433
|
+
[2025-11-22 17:12:42] 🎯 Post-Increment-Completion Hook Triggered
|
|
434
|
+
[2025-11-22 17:12:42] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
435
|
+
[2025-11-22 17:12:42] Run: npm run build
|
|
436
|
+
[2025-11-22 17:12:42] 🎯 Post-Increment-Completion Hook Triggered
|
|
437
|
+
[2025-11-22 17:12:42] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
438
|
+
[2025-11-22 17:12:42] Run: npm run build
|
|
439
|
+
[2025-11-22 17:12:42] 🎯 Post-Increment-Completion Hook Triggered
|
|
440
|
+
[2025-11-22 17:12:42] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
441
|
+
[2025-11-22 17:12:42] Run: npm run build
|
|
442
|
+
[2025-11-22 17:12:42] 🎯 Post-Increment-Completion Hook Triggered
|
|
443
|
+
[2025-11-22 17:12:42] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
444
|
+
[2025-11-22 17:12:43] Run: npm run build
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "specweave-testing",
|
|
3
|
+
"description": "Comprehensive testing tools for modern web applications. Includes Playwright E2E testing, Vitest unit testing, test generation, and coverage analysis. Focus on test-driven development and quality assurance.",
|
|
4
|
+
"version": "0.24.0",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Anton Abyzov",
|
|
7
|
+
"email": "anton.abyzov@gmail.com"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://spec-weave.com",
|
|
10
|
+
"repository": "https://github.com/anton-abyzov/specweave",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"testing",
|
|
14
|
+
"playwright",
|
|
15
|
+
"vitest",
|
|
16
|
+
"e2e",
|
|
17
|
+
"unit-testing",
|
|
18
|
+
"test-automation",
|
|
19
|
+
"specweave"
|
|
20
|
+
]
|
|
21
|
+
}
|