51-execute-quality-150

[51] EXECUTE. Commitment to maximum quality work with 150% coverage. Use when you need the highest quality output for critical tasks, complex problems, important decisions, or when standard work isn't enough. Triggers on "maximum quality", "150% mode", "full quality", "critical task", or when you explicitly want AI to work at its best.

174 stars

Best use case

51-execute-quality-150 is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

[51] EXECUTE. Commitment to maximum quality work with 150% coverage. Use when you need the highest quality output for critical tasks, complex problems, important decisions, or when standard work isn't enough. Triggers on "maximum quality", "150% mode", "full quality", "critical task", or when you explicitly want AI to work at its best.

Teams using 51-execute-quality-150 should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/51-execute-quality-150/SKILL.md --create-dirs "https://raw.githubusercontent.com/majiayu000/claude-skill-registry/main/skills/data/51-execute-quality-150/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/51-execute-quality-150/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How 51-execute-quality-150 Compares

Feature / Agent51-execute-quality-150Standard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

[51] EXECUTE. Commitment to maximum quality work with 150% coverage. Use when you need the highest quality output for critical tasks, complex problems, important decisions, or when standard work isn't enough. Triggers on "maximum quality", "150% mode", "full quality", "critical task", or when you explicitly want AI to work at its best.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Execute-Quality 150 Protocol

**Core Principle:** Commit to excellence. Work at 150% — 100% core delivery + 50% strengthening through verification, alternatives, and risk awareness.

## What This Skill Does

When you invoke this skill, you're asking AI to:
- **Work deeper** — Full context, not fragments
- **Think harder** — Verify assumptions, consider alternatives
- **Validate more** — Check at every step, not just at the end
- **Deliver better** — With confidence levels and documented reasoning

## The 150% Quality Standard

| Dimension | 100% Core | +50% Strengthening |
|-----------|-----------|-------------------|
| **Context** | Understand the task | + Understand dependencies and boundaries |
| **Research** | Find answers | + Verify from multiple sources |
| **Assumptions** | Use them | + Test and validate them |
| **Solutions** | Provide one | + Consider alternatives |
| **Risks** | Ignore | + Identify and mitigate |
| **Confidence** | Implicit | + Explicit with percentages |

## Execution Protocol

### Step 1: ASSESS
Evaluate what maximum quality means for THIS task:
- What's the complexity level?
- What context needs full reading?
- What assumptions need checking?
- What could go wrong?

### Step 2: COMMIT
Declare your quality approach:
```
🎯 **Max-Quality 150 Engaged**

For this task, maximum quality means:
- [What I'll read fully]
- [What I'll verify]
- [What alternatives I'll consider]
- [What risks I'll check]
```

### Step 3: EXECUTE
Work with 150% coverage:
- **Read fully** — Complete files, not snippets
- **Verify assumptions** — Don't trust, confirm
- **Consider alternatives** — At least 3 approaches
- **Check risks** — What could fail?
- **Validate continuously** — Not just at the end

### Step 4: DELIVER
Provide result with quality indicators:
- Confidence level (percentage)
- What was verified vs assumed
- Known limitations
- Recommendations

## Quality Behaviors

When max-quality-150 is active:

### Reading & Research
```
❌ Standard: Read first 50 lines of file
✅ Max-Quality: Read entire file + imports + dependencies
```

### Assumptions
```
❌ Standard: "This function probably handles X"
✅ Max-Quality: "Verified: function handles X (line 45-67)"
```

### Solutions
```
❌ Standard: "Here's the fix"
✅ Max-Quality: "Considered 3 approaches, recommending A because..."
```

### Validation
```
❌ Standard: Check if it compiles
✅ Max-Quality: Test edge cases, verify integration, check performance
```

## Output Format

When delivering with max-quality-150:

```
🎯 **Max-Quality 150 Delivery**

**Task:** [What was requested]

**Quality Approach Used:**
- ✅ Full context read: [files/systems]
- ✅ Assumptions verified: [list]
- ✅ Alternatives considered: [count]
- ✅ Risks assessed: [count]

**Result:**
[Detailed, high-quality output]

**Confidence:** [X]%
**Verified:** [What was confirmed]
**Assumed:** [What remains unverified]
**Limitations:** [Known gaps]
```

## When to Use This Skill

Invoke max-quality-150 for:
- **Critical tasks** — Production deployments, security changes
- **Complex problems** — Multi-system, many dependencies
- **Important decisions** — Architecture, strategy, major choices
- **When stakes are high** — User data, business logic, integrations
- **When you need confidence** — Can't afford to be wrong

## Operational Rules

1. **FULL CONTEXT:** Read complete files, not fragments
2. **VERIFY ASSUMPTIONS:** Don't trust, confirm with evidence
3. **MULTIPLE PERSPECTIVES:** Consider at least 3 approaches
4. **CONTINUOUS VALIDATION:** Check quality at every step
5. **EXPLICIT CONFIDENCE:** State certainty levels numerically
6. **DOCUMENT REASONING:** Explain why, not just what
7. **ACKNOWLEDGE LIMITS:** State what you don't know

## Examples

### ❌ Standard Quality
```
User: "Review this authentication code"
AI: "The code looks fine. Consider adding input validation."
```

### ✅ Max-Quality 150
```
User: "Review this authentication code"
AI: "🎯 Max-Quality 150 Engaged

For this security-critical review, I'll:
- Read full auth module + dependencies
- Check against OWASP standards
- Verify session handling
- Test edge cases mentally

[After thorough review]

🎯 Max-Quality 150 Delivery

Confidence: 92%

Verified Issues:
1. Password not hashed (line 45) - Critical
2. No rate limiting (lines 78-92) - High
3. Session token predictable (line 112) - Critical

Verified Safe:
- Input sanitization present (line 23)
- HTTPS enforced (config verified)

Alternatives Considered:
- bcrypt vs argon2 for hashing
- Token-based vs session-based auth

Risks Identified:
- Current code vulnerable to brute force
- Session hijacking possible

Recommendations: [detailed fixes]"
```

## Failure Modes & Recovery

| Failure | Detection | Recovery |
|---------|-----------|----------|
| **Shallow work** | Skipping full context | Stop, read completely |
| **Unverified claims** | Assumptions without evidence | Go verify before proceeding |
| **Single solution** | No alternatives considered | Generate 3+ options |
| **Missing risks** | No failure analysis | Do risk assessment |
| **Low confidence** | <85% certainty | More research or flag to user |

## Relationship to Other Skills

- **deep-think-150** — For quality reasoning (thinking)
- **max-quality-150** — For quality execution (doing)

Use both when task requires excellent thinking AND excellent execution.

## Session Log Entry (MANDATORY)

After completing this skill, write to `.sessions/SESSION_[date]-[name].md`:

```
### [HH:MM] Execute-Quality 150 Complete
**Task:** <task executed>
**Quality Score:** <confidence %>
**Verified:** <what was verified>
**Artifacts:** <files delivered>
```

---

**Remember:** max-quality-150 is not about being slow — it's about being thorough. The extra effort upfront prevents costly mistakes later. Quality is an investment, not an expense.

Related Skills

52-execute-refactor-150

181
from majiayu000/claude-skill-registry

[52] EXECUTE. Three-stage refactoring workflow: (1) iterative research of refactor/modularization options, (2) plan + risk/edge-case analysis + Scope150 validation, then implement with tests after user confirmation, and (3) apply Scout105 cleanup protocol. Use when asked to refactor, modularize, or restructure code safely.

50-execute-gated-150

181
from majiayu000/claude-skill-registry

[50] EXECUTE. Execute plans step-by-step with confirmation gates. Each step requires user approval before proceeding. Includes change management lifecycle (Pre-Change → During → Post-Change → Rollback). Use when implementing approved plans, deploying changes, or any multi-step execution requiring control and reversibility.

execute

181
from majiayu000/claude-skill-registry

Execute tasks with velocity and quality. Use when ready to implement after clarity and prioritization are complete. This is the fourth system in the 5-system framework.

1k-code-quality

181
from majiayu000/claude-skill-registry

Code quality standards for OneKey. Use when fixing lint warnings, running pre-commit tasks, handling unused variables, writing comments, or ensuring code quality. All comments must be in English. Triggers on lint, linting, eslint, oxlint, tsc, type check, unused variable, comment, documentation, spellcheck, code quality, pre-commit, yarn lint.

thor-skills

159
from majiayu000/claude-skill-registry

An entry point and router for AI agents to manage various THOR-related cybersecurity tasks, including running scans, analyzing logs, troubleshooting, and maintenance.

SecurityClaude

modal-deployment

159
from majiayu000/claude-skill-registry

Run Python code in the cloud with serverless containers, GPUs, and autoscaling using Modal. This skill enables agents to generate code for deploying ML models, running batch jobs, serving APIs, and scaling compute-intensive workloads.

DevOps & Infrastructure

lets-go-rss

159
from majiayu000/claude-skill-registry

A lightweight, full-platform RSS subscription manager that aggregates content from YouTube, Vimeo, Behance, Twitter/X, and Chinese platforms like Bilibili, Weibo, and Douyin, featuring deduplication and AI smart classification.

Content & Documentation

whisper-transcribe

159
from majiayu000/claude-skill-registry

Transcribes audio and video files to text using OpenAI's Whisper CLI, enhanced with contextual grounding from local markdown files for improved accuracy.

Media Processing

ontopo

159
from majiayu000/claude-skill-registry

An AI agent skill to search for Israeli restaurants, check table availability, view menus, and retrieve booking links via the Ontopo platform, acting as an unofficial interface to its data.

General Utilities

grail-miner

159
from majiayu000/claude-skill-registry

This skill assists in setting up, managing, and optimizing Grail miners on Bittensor Subnet 81, handling tasks like environment configuration, R2 storage, model checkpoint management, and performance tuning.

DevOps & Infrastructure

tech-blog

159
from majiayu000/claude-skill-registry

Generates comprehensive technical blog posts, offering detailed explanations of system internals, architecture, and implementation, either through source code analysis or document-driven research.

Content & DocumentationClaude

chrome-debug

159
from majiayu000/claude-skill-registry

This skill empowers AI agents to debug web applications and inspect browser behavior using the Chrome DevTools Protocol (CDP), offering both collaborative (headful) and automated (headless) modes.

Coding & DevelopmentClaude