slashdev 0.1.0 → 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/.gitmodules +3 -0
- package/CLAUDE.md +87 -0
- package/README.md +158 -21
- package/bin/check-setup.js +27 -0
- package/claude-skills/agentswarm/SKILL.md +479 -0
- package/claude-skills/bug-diagnosis/SKILL.md +34 -0
- package/claude-skills/code-review/SKILL.md +26 -0
- package/claude-skills/frontend-design/LICENSE.txt +177 -0
- package/claude-skills/frontend-design/SKILL.md +42 -0
- package/claude-skills/pr-description/SKILL.md +35 -0
- package/claude-skills/scope-estimate/SKILL.md +37 -0
- package/hooks/post-response.sh +242 -0
- package/package.json +11 -3
- package/skills/front-end-design/prompts/system.md +37 -0
- package/skills/front-end-testing/prompts/system.md +66 -0
- package/skills/github-manager/prompts/system.md +79 -0
- package/skills/product-expert/prompts/system.md +52 -0
- package/skills/server-admin/prompts/system.md +39 -0
- package/src/auth/index.js +115 -0
- package/src/cli.js +188 -18
- package/src/commands/setup-internals.js +137 -0
- package/src/commands/setup.js +104 -0
- package/src/commands/update.js +60 -0
- package/src/connections/index.js +449 -0
- package/src/connections/providers/github.js +71 -0
- package/src/connections/providers/servers.js +175 -0
- package/src/connections/registry.js +21 -0
- package/src/core/claude.js +78 -0
- package/src/core/codebase.js +119 -0
- package/src/core/config.js +110 -0
- package/src/index.js +8 -1
- package/src/info.js +54 -21
- package/src/skills/index.js +252 -0
- package/src/utils/ssh-keys.js +67 -0
- package/vendor/gstack/.env.example +5 -0
- package/vendor/gstack/autoplan/SKILL.md +1116 -0
- package/vendor/gstack/browse/SKILL.md +538 -0
- package/vendor/gstack/canary/SKILL.md +587 -0
- package/vendor/gstack/careful/SKILL.md +59 -0
- package/vendor/gstack/codex/SKILL.md +862 -0
- package/vendor/gstack/connect-chrome/SKILL.md +549 -0
- package/vendor/gstack/cso/ACKNOWLEDGEMENTS.md +14 -0
- package/vendor/gstack/cso/SKILL.md +929 -0
- package/vendor/gstack/design-consultation/SKILL.md +962 -0
- package/vendor/gstack/design-review/SKILL.md +1314 -0
- package/vendor/gstack/design-shotgun/SKILL.md +730 -0
- package/vendor/gstack/document-release/SKILL.md +718 -0
- package/vendor/gstack/freeze/SKILL.md +82 -0
- package/vendor/gstack/gstack-upgrade/SKILL.md +232 -0
- package/vendor/gstack/guard/SKILL.md +82 -0
- package/vendor/gstack/investigate/SKILL.md +504 -0
- package/vendor/gstack/land-and-deploy/SKILL.md +1367 -0
- package/vendor/gstack/office-hours/SKILL.md +1317 -0
- package/vendor/gstack/plan-ceo-review/SKILL.md +1537 -0
- package/vendor/gstack/plan-design-review/SKILL.md +1227 -0
- package/vendor/gstack/plan-eng-review/SKILL.md +1120 -0
- package/vendor/gstack/qa/SKILL.md +1136 -0
- package/vendor/gstack/qa/references/issue-taxonomy.md +85 -0
- package/vendor/gstack/qa/templates/qa-report-template.md +126 -0
- package/vendor/gstack/qa-only/SKILL.md +726 -0
- package/vendor/gstack/retro/SKILL.md +1197 -0
- package/vendor/gstack/review/SKILL.md +1138 -0
- package/vendor/gstack/review/TODOS-format.md +62 -0
- package/vendor/gstack/review/checklist.md +220 -0
- package/vendor/gstack/review/design-checklist.md +132 -0
- package/vendor/gstack/review/greptile-triage.md +220 -0
- package/vendor/gstack/setup-browser-cookies/SKILL.md +348 -0
- package/vendor/gstack/setup-deploy/SKILL.md +528 -0
- package/vendor/gstack/ship/SKILL.md +1931 -0
- package/vendor/gstack/unfreeze/SKILL.md +40 -0
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# QA Issue Taxonomy
|
|
2
|
+
|
|
3
|
+
## Severity Levels
|
|
4
|
+
|
|
5
|
+
| Severity | Definition | Examples |
|
|
6
|
+
|----------|------------|----------|
|
|
7
|
+
| **critical** | Blocks a core workflow, causes data loss, or crashes the app | Form submit causes error page, checkout flow broken, data deleted without confirmation |
|
|
8
|
+
| **high** | Major feature broken or unusable, no workaround | Search returns wrong results, file upload silently fails, auth redirect loop |
|
|
9
|
+
| **medium** | Feature works but with noticeable problems, workaround exists | Slow page load (>5s), form validation missing but submit still works, layout broken on mobile only |
|
|
10
|
+
| **low** | Minor cosmetic or polish issue | Typo in footer, 1px alignment issue, hover state inconsistent |
|
|
11
|
+
|
|
12
|
+
## Categories
|
|
13
|
+
|
|
14
|
+
### 1. Visual/UI
|
|
15
|
+
- Layout breaks (overlapping elements, clipped text, horizontal scrollbar)
|
|
16
|
+
- Broken or missing images
|
|
17
|
+
- Incorrect z-index (elements appearing behind others)
|
|
18
|
+
- Font/color inconsistencies
|
|
19
|
+
- Animation glitches (jank, incomplete transitions)
|
|
20
|
+
- Alignment issues (off-grid, uneven spacing)
|
|
21
|
+
- Dark mode / theme issues
|
|
22
|
+
|
|
23
|
+
### 2. Functional
|
|
24
|
+
- Broken links (404, wrong destination)
|
|
25
|
+
- Dead buttons (click does nothing)
|
|
26
|
+
- Form validation (missing, wrong, bypassed)
|
|
27
|
+
- Incorrect redirects
|
|
28
|
+
- State not persisting (data lost on refresh, back button)
|
|
29
|
+
- Race conditions (double-submit, stale data)
|
|
30
|
+
- Search returning wrong or no results
|
|
31
|
+
|
|
32
|
+
### 3. UX
|
|
33
|
+
- Confusing navigation (no breadcrumbs, dead ends)
|
|
34
|
+
- Missing loading indicators (user doesn't know something is happening)
|
|
35
|
+
- Slow interactions (>500ms with no feedback)
|
|
36
|
+
- Unclear error messages ("Something went wrong" with no detail)
|
|
37
|
+
- No confirmation before destructive actions
|
|
38
|
+
- Inconsistent interaction patterns across pages
|
|
39
|
+
- Dead ends (no way back, no next action)
|
|
40
|
+
|
|
41
|
+
### 4. Content
|
|
42
|
+
- Typos and grammar errors
|
|
43
|
+
- Outdated or incorrect text
|
|
44
|
+
- Placeholder / lorem ipsum text left in
|
|
45
|
+
- Truncated text (cut off without ellipsis or "more")
|
|
46
|
+
- Wrong labels on buttons or form fields
|
|
47
|
+
- Missing or unhelpful empty states
|
|
48
|
+
|
|
49
|
+
### 5. Performance
|
|
50
|
+
- Slow page loads (>3 seconds)
|
|
51
|
+
- Janky scrolling (dropped frames)
|
|
52
|
+
- Layout shifts (content jumping after load)
|
|
53
|
+
- Excessive network requests (>50 on a single page)
|
|
54
|
+
- Large unoptimized images
|
|
55
|
+
- Blocking JavaScript (page unresponsive during load)
|
|
56
|
+
|
|
57
|
+
### 6. Console/Errors
|
|
58
|
+
- JavaScript exceptions (uncaught errors)
|
|
59
|
+
- Failed network requests (4xx, 5xx)
|
|
60
|
+
- Deprecation warnings (upcoming breakage)
|
|
61
|
+
- CORS errors
|
|
62
|
+
- Mixed content warnings (HTTP resources on HTTPS)
|
|
63
|
+
- CSP violations
|
|
64
|
+
|
|
65
|
+
### 7. Accessibility
|
|
66
|
+
- Missing alt text on images
|
|
67
|
+
- Unlabeled form inputs
|
|
68
|
+
- Keyboard navigation broken (can't tab to elements)
|
|
69
|
+
- Focus traps (can't escape a modal or dropdown)
|
|
70
|
+
- Missing or incorrect ARIA attributes
|
|
71
|
+
- Insufficient color contrast
|
|
72
|
+
- Content not reachable by screen reader
|
|
73
|
+
|
|
74
|
+
## Per-Page Exploration Checklist
|
|
75
|
+
|
|
76
|
+
For each page visited during a QA session:
|
|
77
|
+
|
|
78
|
+
1. **Visual scan** — Take annotated screenshot (`snapshot -i -a -o`). Look for layout issues, broken images, alignment.
|
|
79
|
+
2. **Interactive elements** — Click every button, link, and control. Does each do what it says?
|
|
80
|
+
3. **Forms** — Fill and submit. Test empty submission, invalid data, edge cases (long text, special characters).
|
|
81
|
+
4. **Navigation** — Check all paths in/out. Breadcrumbs, back button, deep links, mobile menu.
|
|
82
|
+
5. **States** — Check empty state, loading state, error state, full/overflow state.
|
|
83
|
+
6. **Console** — Run `console --errors` after interactions. Any new JS errors or failed requests?
|
|
84
|
+
7. **Responsiveness** — If relevant, check mobile and tablet viewports.
|
|
85
|
+
8. **Auth boundaries** — What happens when logged out? Different user roles?
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
# QA Report: {APP_NAME}
|
|
2
|
+
|
|
3
|
+
| Field | Value |
|
|
4
|
+
|-------|-------|
|
|
5
|
+
| **Date** | {DATE} |
|
|
6
|
+
| **URL** | {URL} |
|
|
7
|
+
| **Branch** | {BRANCH} |
|
|
8
|
+
| **Commit** | {COMMIT_SHA} ({COMMIT_DATE}) |
|
|
9
|
+
| **PR** | {PR_NUMBER} ({PR_URL}) or "—" |
|
|
10
|
+
| **Tier** | Quick / Standard / Exhaustive |
|
|
11
|
+
| **Scope** | {SCOPE or "Full app"} |
|
|
12
|
+
| **Duration** | {DURATION} |
|
|
13
|
+
| **Pages visited** | {COUNT} |
|
|
14
|
+
| **Screenshots** | {COUNT} |
|
|
15
|
+
| **Framework** | {DETECTED or "Unknown"} |
|
|
16
|
+
| **Index** | [All QA runs](./index.md) |
|
|
17
|
+
|
|
18
|
+
## Health Score: {SCORE}/100
|
|
19
|
+
|
|
20
|
+
| Category | Score |
|
|
21
|
+
|----------|-------|
|
|
22
|
+
| Console | {0-100} |
|
|
23
|
+
| Links | {0-100} |
|
|
24
|
+
| Visual | {0-100} |
|
|
25
|
+
| Functional | {0-100} |
|
|
26
|
+
| UX | {0-100} |
|
|
27
|
+
| Performance | {0-100} |
|
|
28
|
+
| Accessibility | {0-100} |
|
|
29
|
+
|
|
30
|
+
## Top 3 Things to Fix
|
|
31
|
+
|
|
32
|
+
1. **{ISSUE-NNN}: {title}** — {one-line description}
|
|
33
|
+
2. **{ISSUE-NNN}: {title}** — {one-line description}
|
|
34
|
+
3. **{ISSUE-NNN}: {title}** — {one-line description}
|
|
35
|
+
|
|
36
|
+
## Console Health
|
|
37
|
+
|
|
38
|
+
| Error | Count | First seen |
|
|
39
|
+
|-------|-------|------------|
|
|
40
|
+
| {error message} | {N} | {URL} |
|
|
41
|
+
|
|
42
|
+
## Summary
|
|
43
|
+
|
|
44
|
+
| Severity | Count |
|
|
45
|
+
|----------|-------|
|
|
46
|
+
| Critical | 0 |
|
|
47
|
+
| High | 0 |
|
|
48
|
+
| Medium | 0 |
|
|
49
|
+
| Low | 0 |
|
|
50
|
+
| **Total** | **0** |
|
|
51
|
+
|
|
52
|
+
## Issues
|
|
53
|
+
|
|
54
|
+
### ISSUE-001: {Short title}
|
|
55
|
+
|
|
56
|
+
| Field | Value |
|
|
57
|
+
|-------|-------|
|
|
58
|
+
| **Severity** | critical / high / medium / low |
|
|
59
|
+
| **Category** | visual / functional / ux / content / performance / console / accessibility |
|
|
60
|
+
| **URL** | {page URL} |
|
|
61
|
+
|
|
62
|
+
**Description:** {What is wrong, expected vs actual.}
|
|
63
|
+
|
|
64
|
+
**Repro Steps:**
|
|
65
|
+
|
|
66
|
+
1. Navigate to {URL}
|
|
67
|
+

|
|
68
|
+
2. {Action}
|
|
69
|
+

|
|
70
|
+
3. **Observe:** {what goes wrong}
|
|
71
|
+

|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
## Fixes Applied (if applicable)
|
|
76
|
+
|
|
77
|
+
| Issue | Fix Status | Commit | Files Changed |
|
|
78
|
+
|-------|-----------|--------|---------------|
|
|
79
|
+
| ISSUE-NNN | verified / best-effort / reverted / deferred | {SHA} | {files} |
|
|
80
|
+
|
|
81
|
+
### Before/After Evidence
|
|
82
|
+
|
|
83
|
+
#### ISSUE-NNN: {title}
|
|
84
|
+
**Before:** 
|
|
85
|
+
**After:** 
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
## Regression Tests
|
|
90
|
+
|
|
91
|
+
| Issue | Test File | Status | Description |
|
|
92
|
+
|-------|-----------|--------|-------------|
|
|
93
|
+
| ISSUE-NNN | path/to/test | committed / deferred / skipped | description |
|
|
94
|
+
|
|
95
|
+
### Deferred Tests
|
|
96
|
+
|
|
97
|
+
#### ISSUE-NNN: {title}
|
|
98
|
+
**Precondition:** {setup state that triggers the bug}
|
|
99
|
+
**Action:** {what the user does}
|
|
100
|
+
**Expected:** {correct behavior}
|
|
101
|
+
**Why deferred:** {reason}
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
## Ship Readiness
|
|
106
|
+
|
|
107
|
+
| Metric | Value |
|
|
108
|
+
|--------|-------|
|
|
109
|
+
| Health score | {before} → {after} ({delta}) |
|
|
110
|
+
| Issues found | N |
|
|
111
|
+
| Fixes applied | N (verified: X, best-effort: Y, reverted: Z) |
|
|
112
|
+
| Deferred | N |
|
|
113
|
+
|
|
114
|
+
**PR Summary:** "QA found N issues, fixed M, health score X → Y."
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
## Regression (if applicable)
|
|
119
|
+
|
|
120
|
+
| Metric | Baseline | Current | Delta |
|
|
121
|
+
|--------|----------|---------|-------|
|
|
122
|
+
| Health score | {N} | {N} | {+/-N} |
|
|
123
|
+
| Issues | {N} | {N} | {+/-N} |
|
|
124
|
+
|
|
125
|
+
**Fixed since baseline:** {list}
|
|
126
|
+
**New since baseline:** {list}
|