@intentsolutionsio/severity1-marketplace 1.0.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/plugin.json +21 -0
- package/LICENSE +21 -0
- package/README.md +52 -0
- package/agents/severity-triage.md +36 -0
- package/commands/prompt-improve.md +48 -0
- package/commands/severity-classify.md +62 -0
- package/package.json +43 -0
- package/skills/prompt-improver/SKILL.md +126 -0
- package/skills/prompt-improver/references/severity-levels.md +74 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "severity1-marketplace",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Severity level classification and prompt improvement for marketplace plugins. Assigns severity ratings (S1-Critical through S4-Low) and enhances plugin prompts for clarity, safety, and effectiveness.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "severity1",
|
|
7
|
+
"email": "severity1@intentsolutions.io"
|
|
8
|
+
},
|
|
9
|
+
"repository": "https://github.com/jeremylongshore/claude-code-plugins",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"severity",
|
|
13
|
+
"classification",
|
|
14
|
+
"prompt-improvement",
|
|
15
|
+
"marketplace",
|
|
16
|
+
"security",
|
|
17
|
+
"quality",
|
|
18
|
+
"triage",
|
|
19
|
+
"agent-skills"
|
|
20
|
+
]
|
|
21
|
+
}
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 severity1
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Severity1 Marketplace
|
|
2
|
+
|
|
3
|
+
Severity level classification and prompt improvement for Claude Code marketplace plugins.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- **Severity Classification**: Assigns severity ratings (S1-Critical, S2-High, S3-Medium, S4-Low) to security findings, bugs, and issues
|
|
8
|
+
- **Prompt Improver**: Analyzes and enhances plugin prompts for clarity, safety, effectiveness, and best-practice adherence
|
|
9
|
+
- **Triage Agent**: Automated severity triage for incoming issues and vulnerability reports
|
|
10
|
+
|
|
11
|
+
## Severity Levels
|
|
12
|
+
|
|
13
|
+
| Level | Label | Description |
|
|
14
|
+
|-------|-------|-------------|
|
|
15
|
+
| S1 | Critical | System-down, data loss, security breach — immediate action required |
|
|
16
|
+
| S2 | High | Major functionality broken, security vulnerability — urgent resolution |
|
|
17
|
+
| S3 | Medium | Degraded functionality, workaround available — scheduled fix |
|
|
18
|
+
| S4 | Low | Minor issue, cosmetic, enhancement request — backlog |
|
|
19
|
+
|
|
20
|
+
## Commands
|
|
21
|
+
|
|
22
|
+
- `/severity-classify` — Classify an issue or finding by severity level
|
|
23
|
+
- `/prompt-improve` — Analyze and improve a plugin prompt or skill definition
|
|
24
|
+
|
|
25
|
+
## Skills
|
|
26
|
+
|
|
27
|
+
- **prompt-improver** — Auto-activates when users ask to improve, review, or enhance prompts, skill definitions, or command instructions
|
|
28
|
+
|
|
29
|
+
## Agents
|
|
30
|
+
|
|
31
|
+
- **severity-triage** — Automated severity triage agent for issues and vulnerabilities
|
|
32
|
+
|
|
33
|
+
## Installation
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
claude plugin marketplace add severity1/severity1-marketplace
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Usage
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
/severity-classify "Users can bypass authentication by..."
|
|
43
|
+
/prompt-improve
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Contributors
|
|
47
|
+
|
|
48
|
+
- severity1
|
|
49
|
+
|
|
50
|
+
## License
|
|
51
|
+
|
|
52
|
+
MIT
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: severity-triage
|
|
3
|
+
description: Automated severity triage agent for issues and vulnerabilities
|
|
4
|
+
---
|
|
5
|
+
# Severity Triage Agent
|
|
6
|
+
|
|
7
|
+
You are a severity triage agent that automatically classifies incoming issues, bug reports, and vulnerability findings using the S1-S4 severity framework.
|
|
8
|
+
|
|
9
|
+
## Capabilities
|
|
10
|
+
|
|
11
|
+
- Analyze issue descriptions and context to determine severity
|
|
12
|
+
- Cross-reference against known vulnerability databases and patterns
|
|
13
|
+
- Provide consistent, justified severity classifications
|
|
14
|
+
- Recommend escalation paths based on severity level
|
|
15
|
+
|
|
16
|
+
## Triage Workflow
|
|
17
|
+
|
|
18
|
+
1. **Intake** — Read the issue or finding in full
|
|
19
|
+
2. **Context Gathering** — Search the codebase for related files and recent changes
|
|
20
|
+
3. **Impact Assessment** — Determine blast radius and affected components
|
|
21
|
+
4. **Severity Assignment** — Classify using S1-S4 framework
|
|
22
|
+
5. **Action Routing** — Recommend next steps based on severity
|
|
23
|
+
|
|
24
|
+
## Severity Decision Matrix
|
|
25
|
+
|
|
26
|
+
| Factor | S1 Weight | S2 Weight | S3 Weight | S4 Weight |
|
|
27
|
+
|--------|-----------|-----------|-----------|-----------|
|
|
28
|
+
| Data loss risk | High | Medium | Low | None |
|
|
29
|
+
| User impact scope | All users | Many users | Some users | Few users |
|
|
30
|
+
| Security exposure | Active exploit | Exploitable | Theoretical | Informational |
|
|
31
|
+
| Workaround | None | Impractical | Available | Trivial |
|
|
32
|
+
| Business impact | Revenue/trust | Major feature | Minor feature | Cosmetic |
|
|
33
|
+
|
|
34
|
+
## Output
|
|
35
|
+
|
|
36
|
+
Provide a structured triage report with severity level, rationale, recommended actions, and escalation guidance.
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: prompt-improve
|
|
3
|
+
description: Analyze and improve a plugin prompt, skill definition, or command instruction
|
|
4
|
+
shortcut: pi
|
|
5
|
+
---
|
|
6
|
+
# Prompt Improver
|
|
7
|
+
|
|
8
|
+
Analyze the current plugin's prompts, skill definitions, or command instructions and suggest improvements for clarity, safety, effectiveness, and best-practice adherence.
|
|
9
|
+
|
|
10
|
+
## Analysis Dimensions
|
|
11
|
+
|
|
12
|
+
1. **Clarity** — Are instructions unambiguous and easy to follow?
|
|
13
|
+
2. **Safety** — Does the prompt avoid encouraging dangerous operations?
|
|
14
|
+
3. **Effectiveness** — Will the prompt reliably produce the intended result?
|
|
15
|
+
4. **Completeness** — Are edge cases and error scenarios addressed?
|
|
16
|
+
5. **Conciseness** — Is the prompt free of unnecessary verbosity?
|
|
17
|
+
|
|
18
|
+
## Process
|
|
19
|
+
|
|
20
|
+
1. **Read** the target file (SKILL.md, command .md, or agent .md)
|
|
21
|
+
2. **Score** each dimension on a 1-5 scale
|
|
22
|
+
3. **Identify** specific improvement opportunities
|
|
23
|
+
4. **Suggest** concrete rewrites for weak sections
|
|
24
|
+
5. **Validate** that improvements preserve original intent
|
|
25
|
+
|
|
26
|
+
## Output Format
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
## Prompt Analysis: [filename]
|
|
30
|
+
|
|
31
|
+
### Scores
|
|
32
|
+
| Dimension | Score | Notes |
|
|
33
|
+
|-----------|-------|-------|
|
|
34
|
+
| Clarity | X/5 | ... |
|
|
35
|
+
| Safety | X/5 | ... |
|
|
36
|
+
| Effectiveness | X/5 | ... |
|
|
37
|
+
| Completeness | X/5 | ... |
|
|
38
|
+
| Conciseness | X/5 | ... |
|
|
39
|
+
|
|
40
|
+
**Overall: X/25**
|
|
41
|
+
|
|
42
|
+
### Improvements
|
|
43
|
+
1. [Specific improvement with before/after]
|
|
44
|
+
2. [Specific improvement with before/after]
|
|
45
|
+
|
|
46
|
+
### Suggested Rewrite
|
|
47
|
+
[Full improved prompt text]
|
|
48
|
+
```
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: severity-classify
|
|
3
|
+
description: Classify an issue, finding, or vulnerability by severity level (S1-S4)
|
|
4
|
+
shortcut: sev
|
|
5
|
+
---
|
|
6
|
+
# Severity Classification
|
|
7
|
+
|
|
8
|
+
Analyze the provided issue, bug report, or security finding and assign an appropriate severity level.
|
|
9
|
+
|
|
10
|
+
## Severity Levels
|
|
11
|
+
|
|
12
|
+
### S1 — Critical
|
|
13
|
+
- System completely down or unusable
|
|
14
|
+
- Active data loss or corruption
|
|
15
|
+
- Security breach with confirmed exploitation
|
|
16
|
+
- No workaround available
|
|
17
|
+
- **Response time:** Immediate
|
|
18
|
+
|
|
19
|
+
### S2 — High
|
|
20
|
+
- Major functionality broken for many users
|
|
21
|
+
- Security vulnerability with high exploitability
|
|
22
|
+
- Data integrity at risk
|
|
23
|
+
- Workaround exists but is impractical
|
|
24
|
+
- **Response time:** Within 4 hours
|
|
25
|
+
|
|
26
|
+
### S3 — Medium
|
|
27
|
+
- Functionality degraded but operational
|
|
28
|
+
- Security issue with limited scope
|
|
29
|
+
- Reasonable workaround available
|
|
30
|
+
- Affects subset of users or use cases
|
|
31
|
+
- **Response time:** Within 24 hours
|
|
32
|
+
|
|
33
|
+
### S4 — Low
|
|
34
|
+
- Minor issue or cosmetic defect
|
|
35
|
+
- Enhancement request
|
|
36
|
+
- Documentation improvement
|
|
37
|
+
- Edge case with minimal impact
|
|
38
|
+
- **Response time:** Backlog
|
|
39
|
+
|
|
40
|
+
## Classification Process
|
|
41
|
+
|
|
42
|
+
1. **Read the issue** — Understand the full context of the report
|
|
43
|
+
2. **Assess impact** — Determine scope, affected users, and business impact
|
|
44
|
+
3. **Evaluate exploitability** — For security issues, assess ease of exploitation
|
|
45
|
+
4. **Check for workarounds** — Determine if users can work around the issue
|
|
46
|
+
5. **Assign severity** — Apply the appropriate S1-S4 level
|
|
47
|
+
6. **Provide rationale** — Explain the classification with supporting evidence
|
|
48
|
+
|
|
49
|
+
## Output Format
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
## Severity: S[1-4] — [Critical|High|Medium|Low]
|
|
53
|
+
|
|
54
|
+
**Impact:** [Description of impact]
|
|
55
|
+
**Scope:** [How many users/systems affected]
|
|
56
|
+
**Workaround:** [Available|None|Impractical]
|
|
57
|
+
**Rationale:** [Why this severity was assigned]
|
|
58
|
+
|
|
59
|
+
### Recommended Actions
|
|
60
|
+
1. [First action]
|
|
61
|
+
2. [Second action]
|
|
62
|
+
```
|
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@intentsolutionsio/severity1-marketplace",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Severity level classification and prompt improvement for marketplace plugins. Assigns severity ratings (S1-Critical through S4-Low) and enhances plugin prompts for clarity, safety, and effectiveness.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"severity",
|
|
7
|
+
"classification",
|
|
8
|
+
"prompt-improvement",
|
|
9
|
+
"marketplace",
|
|
10
|
+
"security",
|
|
11
|
+
"quality",
|
|
12
|
+
"triage",
|
|
13
|
+
"agent-skills",
|
|
14
|
+
"claude-code",
|
|
15
|
+
"claude-plugin",
|
|
16
|
+
"tonsofskills"
|
|
17
|
+
],
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/jeremylongshore/claude-code-plugins-plus-skills.git",
|
|
21
|
+
"directory": "plugins/security/severity1-marketplace"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://tonsofskills.com/plugins/severity1-marketplace",
|
|
24
|
+
"bugs": "https://github.com/jeremylongshore/claude-code-plugins-plus-skills/issues",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"author": {
|
|
27
|
+
"name": "severity1",
|
|
28
|
+
"email": "severity1@intentsolutions.io"
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"README.md",
|
|
35
|
+
".claude-plugin",
|
|
36
|
+
"skills",
|
|
37
|
+
"commands",
|
|
38
|
+
"agents"
|
|
39
|
+
],
|
|
40
|
+
"scripts": {
|
|
41
|
+
"postinstall": "node -e \"console.log(\\\"\\\\n→ This npm package is a tracking/proof artifact. Install the plugin via:\\\\n ccpi install severity1-marketplace\\\\n or /plugin install severity1-marketplace@claude-code-plugins-plus in Claude Code\\\\n\\\")\""
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: prompt-improver
|
|
3
|
+
description: |
|
|
4
|
+
Analyze and improve plugin prompts, skill definitions, and command instructions for clarity, safety, and effectiveness. Use when the user asks to "improve a prompt", "review a skill", "enhance instructions", "make this prompt better", "optimize this command", or "audit prompt quality".
|
|
5
|
+
allowed-tools: Read, Write, Edit, Glob, Grep
|
|
6
|
+
version: 1.0.0
|
|
7
|
+
author: severity1 <severity1@intentsolutions.io>
|
|
8
|
+
license: MIT
|
|
9
|
+
tags: [security, compliance]
|
|
10
|
+
compatible-with: claude-code
|
|
11
|
+
---
|
|
12
|
+
# Prompt Improver
|
|
13
|
+
|
|
14
|
+
This skill automatically analyzes and improves plugin prompts, SKILL.md files, command definitions, and agent instructions.
|
|
15
|
+
|
|
16
|
+
## Overview
|
|
17
|
+
|
|
18
|
+
The prompt-improver skill evaluates plugin content across five dimensions — clarity, safety, effectiveness, completeness, and conciseness — then provides scored assessments and concrete rewrites.
|
|
19
|
+
|
|
20
|
+
## When to Use This Skill
|
|
21
|
+
|
|
22
|
+
This skill activates when you need to:
|
|
23
|
+
- Review and improve a SKILL.md file's instructions
|
|
24
|
+
- Enhance command or agent markdown definitions
|
|
25
|
+
- Audit prompt quality across a plugin
|
|
26
|
+
- Optimize instructions for better Claude performance
|
|
27
|
+
- Ensure prompts follow marketplace best practices
|
|
28
|
+
|
|
29
|
+
## Instructions
|
|
30
|
+
|
|
31
|
+
1. **Identify the target** — Locate the SKILL.md, command, or agent file to analyze
|
|
32
|
+
2. **Read the content** — Use Read tool to get the full file contents
|
|
33
|
+
3. **Score each dimension** on a 1-5 scale:
|
|
34
|
+
- **Clarity (1-5)**: Are instructions unambiguous?
|
|
35
|
+
- **Safety (1-5)**: Does it avoid encouraging dangerous operations?
|
|
36
|
+
- **Effectiveness (1-5)**: Will it reliably produce intended results?
|
|
37
|
+
- **Completeness (1-5)**: Are edge cases addressed?
|
|
38
|
+
- **Conciseness (1-5)**: Is it free of unnecessary verbosity?
|
|
39
|
+
4. **Identify improvements** — List specific weaknesses with line references
|
|
40
|
+
5. **Generate rewrites** — Provide improved versions preserving original intent
|
|
41
|
+
6. **Apply changes** — If requested, use Edit tool to apply improvements
|
|
42
|
+
|
|
43
|
+
## Output Format
|
|
44
|
+
|
|
45
|
+
```
|
|
46
|
+
## Prompt Analysis: [filename]
|
|
47
|
+
|
|
48
|
+
### Scores
|
|
49
|
+
| Dimension | Score | Notes |
|
|
50
|
+
|-----------|-------|-------|
|
|
51
|
+
| Clarity | X/5 | ... |
|
|
52
|
+
| Safety | X/5 | ... |
|
|
53
|
+
| Effectiveness | X/5 | ... |
|
|
54
|
+
| Completeness | X/5 | ... |
|
|
55
|
+
| Conciseness | X/5 | ... |
|
|
56
|
+
|
|
57
|
+
**Overall: X/25**
|
|
58
|
+
|
|
59
|
+
### Improvements
|
|
60
|
+
1. [Specific improvement with before/after]
|
|
61
|
+
|
|
62
|
+
### Suggested Rewrite
|
|
63
|
+
[Full improved prompt text]
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
## Best Practices
|
|
67
|
+
|
|
68
|
+
- Preserve the original author's intent and style
|
|
69
|
+
- Prioritize safety improvements over stylistic ones
|
|
70
|
+
- Keep suggestions actionable and specific
|
|
71
|
+
- Reference marketplace conventions from CLAUDE.md
|
|
72
|
+
- Validate frontmatter fields match the 2026 spec
|
|
73
|
+
|
|
74
|
+
## Examples
|
|
75
|
+
|
|
76
|
+
### Example 1: Improving a vague skill description
|
|
77
|
+
|
|
78
|
+
**Before:**
|
|
79
|
+
```yaml
|
|
80
|
+
description: Does stuff with code
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
**After:**
|
|
84
|
+
```yaml
|
|
85
|
+
description: |
|
|
86
|
+
Analyze source code for common anti-patterns and suggest refactoring improvements. Use when the user asks to "review code quality", "find code smells", or "refactor this file".
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
### Example 2: Adding missing safety guidance
|
|
90
|
+
|
|
91
|
+
**Before:**
|
|
92
|
+
```markdown
|
|
93
|
+
Delete all temporary files from the project.
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
**After:**
|
|
97
|
+
```markdown
|
|
98
|
+
Identify temporary files (*.tmp, *.bak, *.swp) in the project. List them for user confirmation before deletion. Never delete files outside the project root.
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
## Prerequisites
|
|
102
|
+
|
|
103
|
+
- A plugin directory containing at least one SKILL.md, command, or agent markdown file
|
|
104
|
+
- Read access to the target plugin's `.claude-plugin/plugin.json` for context
|
|
105
|
+
- Familiarity with the [2026 SKILL.md frontmatter spec](https://docs.anthropic.com/en/docs/claude-code/plugins)
|
|
106
|
+
|
|
107
|
+
## Output
|
|
108
|
+
|
|
109
|
+
The skill produces a structured analysis report containing:
|
|
110
|
+
- **Score card**: 5 dimensions rated 1-5 with notes and an overall score out of 25
|
|
111
|
+
- **Improvement list**: Specific weaknesses with file paths and line references
|
|
112
|
+
- **Suggested rewrite**: Full improved prompt text preserving original intent
|
|
113
|
+
|
|
114
|
+
## Error Handling
|
|
115
|
+
|
|
116
|
+
| Error | Cause | Resolution |
|
|
117
|
+
|-------|-------|------------|
|
|
118
|
+
| No SKILL.md found | Target path has no skill files | Verify the plugin path and check for `skills/*/SKILL.md` |
|
|
119
|
+
| Invalid frontmatter | YAML parsing failure in target file | Report the specific YAML error and suggest corrections |
|
|
120
|
+
| Empty skill body | File has frontmatter but no instructions | Flag as critical and generate a starter template |
|
|
121
|
+
|
|
122
|
+
## Resources
|
|
123
|
+
|
|
124
|
+
- [Claude Code plugins documentation](https://docs.anthropic.com/en/docs/claude-code/plugins) — official plugin and SKILL.md spec
|
|
125
|
+
- [Prompt engineering guide](https://docs.anthropic.com/en/docs/build-with-claude/prompt-engineering) — Anthropic best practices for prompt design
|
|
126
|
+
- Marketplace conventions: see the repository CLAUDE.md for field requirements and structure
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Severity Level Reference
|
|
2
|
+
|
|
3
|
+
## S1 — Critical
|
|
4
|
+
|
|
5
|
+
**Definition:** System-down, active data loss, or confirmed security breach requiring immediate response.
|
|
6
|
+
|
|
7
|
+
**Indicators:**
|
|
8
|
+
- Production system completely unavailable
|
|
9
|
+
- Active data corruption or loss
|
|
10
|
+
- Confirmed security exploitation in progress
|
|
11
|
+
- No workaround exists
|
|
12
|
+
- Affects all or most users
|
|
13
|
+
|
|
14
|
+
**Response:** Immediate — all hands on deck
|
|
15
|
+
|
|
16
|
+
**Examples:**
|
|
17
|
+
- SQL injection actively being exploited
|
|
18
|
+
- Database corruption causing data loss
|
|
19
|
+
- Authentication bypass allowing unauthorized access
|
|
20
|
+
- Complete service outage
|
|
21
|
+
|
|
22
|
+
## S2 — High
|
|
23
|
+
|
|
24
|
+
**Definition:** Major functionality broken or security vulnerability with high exploitability requiring urgent resolution.
|
|
25
|
+
|
|
26
|
+
**Indicators:**
|
|
27
|
+
- Core feature non-functional
|
|
28
|
+
- Security vulnerability with known exploit path
|
|
29
|
+
- Data integrity at risk but not actively compromised
|
|
30
|
+
- Workaround exists but is impractical for most users
|
|
31
|
+
|
|
32
|
+
**Response:** Within 4 hours
|
|
33
|
+
|
|
34
|
+
**Examples:**
|
|
35
|
+
- Payment processing failing for subset of users
|
|
36
|
+
- XSS vulnerability in user input fields
|
|
37
|
+
- API rate limiting completely broken
|
|
38
|
+
- User sessions not expiring properly
|
|
39
|
+
|
|
40
|
+
## S3 — Medium
|
|
41
|
+
|
|
42
|
+
**Definition:** Degraded functionality with reasonable workaround available, scheduled for normal fix cycle.
|
|
43
|
+
|
|
44
|
+
**Indicators:**
|
|
45
|
+
- Feature works but with reduced capability
|
|
46
|
+
- Security issue with limited scope or low exploitability
|
|
47
|
+
- Workaround is available and practical
|
|
48
|
+
- Affects a subset of users or use cases
|
|
49
|
+
|
|
50
|
+
**Response:** Within 24 hours
|
|
51
|
+
|
|
52
|
+
**Examples:**
|
|
53
|
+
- Search results occasionally missing items
|
|
54
|
+
- CSRF token not rotating on session refresh
|
|
55
|
+
- Export feature produces incorrect formatting
|
|
56
|
+
- Mobile layout broken on specific device
|
|
57
|
+
|
|
58
|
+
## S4 — Low
|
|
59
|
+
|
|
60
|
+
**Definition:** Minor issue, cosmetic defect, or enhancement request for the backlog.
|
|
61
|
+
|
|
62
|
+
**Indicators:**
|
|
63
|
+
- Cosmetic or UI inconsistency
|
|
64
|
+
- Documentation error
|
|
65
|
+
- Enhancement request
|
|
66
|
+
- Edge case with minimal user impact
|
|
67
|
+
|
|
68
|
+
**Response:** Backlog prioritization
|
|
69
|
+
|
|
70
|
+
**Examples:**
|
|
71
|
+
- Typo in error message
|
|
72
|
+
- Button color inconsistent with design system
|
|
73
|
+
- Feature request for additional export format
|
|
74
|
+
- Tooltip text truncated on hover
|