Development
log-quality-issues - Claude MCP Skill
Run /check-quality, then create GitHub issues for all findings. Issues are created with priority labels and structured format. Use /fix-quality instead if you want to fix issues immediately.
SEO Guide: Enhance your AI agent with the log-quality-issues tool. This Model Context Protocol (MCP) server allows Claude Desktop and other LLMs to run /check-quality, then create github issues for all findings. issues are created with priority lab... Download and configure this skill to unlock new capabilities for your AI workflow.
Documentation
SKILL.md# /log-quality-issues
Run quality gates audit and create GitHub issues for all findings.
## What This Does
1. Invoke `/check-quality` to audit quality infrastructure
2. Parse findings by priority (P0-P3)
3. Check existing issues to avoid duplicates
4. Create GitHub issues for each finding
**This is an issue-creator.** It creates work items, not fixes. Use `/fix-quality` to fix issues.
## Process
### 1. Run Primitive
Invoke `/check-quality` skill to get structured findings.
### 2. Check Existing Issues
```bash
gh issue list --state open --label "domain/quality" --limit 50
```
### 3. Create Issues
For each finding:
```bash
gh issue create \
--title "[P0] No test runner configured" \
--body "$(cat <<'EOF'
## Problem
No testing framework (Vitest/Jest) is configured. Code changes cannot be validated.
## Impact
- Regressions go undetected
- Refactoring is dangerous
- CI cannot verify changes
- No confidence in deployments
## Suggested Fix
Run `/fix-quality` or manually:
```bash
pnpm add -D vitest @vitest/coverage-v8
```
Then create `vitest.config.ts` with coverage enabled.
---
Created by `/log-quality-issues`
EOF
)" \
--label "priority/p0,domain/quality,type/chore"
```
### 4. Issue Format
**Title:** `[P{0-3}] Quality gap description`
**Labels:**
- `priority/p0` | `priority/p1` | `priority/p2` | `priority/p3`
- `domain/quality`
- `type/chore`
**Body:**
```markdown
## Problem
What quality infrastructure is missing
## Impact
Risk and consequences of the gap
## Suggested Fix
Commands or skill to run
---
Created by `/log-quality-issues`
```
## Priority Mapping
| Gap | Priority |
|-----|----------|
| No test runner | P0 |
| No CI workflow | P0 |
| No coverage configured | P1 |
| No git hooks | P1 |
| No linting | P1 |
| TypeScript not strict | P1 |
| No commitlint | P2 |
| No coverage in PRs | P2 |
| Tool upgrade opportunities | P3 |
## Output
After running:
```
Quality Issues Created:
- P0: 2 (no tests, no CI)
- P1: 3 (coverage, hooks, linting)
- P2: 2 (commitlint, PR coverage)
- P3: 1 (tool upgrades)
Total: 8 issues created
View: gh issue list --label domain/quality
```
## Related
- `/check-quality` - The primitive (audit only)
- `/fix-quality` - Fix quality infrastructure
- `/quality-gates` - Full quality setup workflow
- `/groom` - Full backlog groomingSignals
Information
- Repository
- phrazzld/claude-config
- Author
- phrazzld
- Last Sync
- 3/2/2026
- Repo Updated
- 3/1/2026
- Created
- 1/25/2026
Reviews (0)
No reviews yet. Be the first to review this skill!
Related Skills
upgrade-nodejs
Upgrading Bun's Self-Reported Node.js Version
cursorrules
CrewAI Development Rules
firecrawl-build-search
Integrate Firecrawl `/search` into product code and agent workflows. Use when an app needs discovery before extraction, when the feature starts with a query instead of a URL, or when the system should search the web and optionally hydrate result content.
firecrawl-build-onboarding
Get Firecrawl credentials and SDK setup into a project. Use when an application needs `FIRECRAWL_API_KEY`, when an agent should add Firecrawl to `.env`, when the user wants to authenticate Firecrawl for app code, or when choosing the first SDK and docs for a new Firecrawl integration. This skill includes its own browser auth flow, so it does not depend on the website onboarding skill.
Related Guides
Python Django Best Practices: A Comprehensive Guide to the Claude Skill
Learn how to use the python django best practices Claude skill. Complete guide with installation instructions and examples.
Mastering Python and TypeScript Development with the Claude Skill Guide
Learn how to use the python typescript guide Claude skill. Complete guide with installation instructions and examples.
Mastering Python Development with Claude: A Complete Guide to the Python Skill
Learn how to use the python Claude skill. Complete guide with installation instructions and examples.