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.

16 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/diegosouzapw/awesome-omni-skill/main/skills/data-ai/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.

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

data-quality-frameworks

16
from diegosouzapw/awesome-omni-skill

Implement data quality validation with Great Expectations, dbt tests, and data contracts. Use when building data quality pipelines, implementing validation rules, or establishing data contracts.

ai-content-quality-checker

16
from diegosouzapw/awesome-omni-skill

AI生成コンテンツの総合品質チェックスキル。読みやすさ、正確性、関連性、独自性、SEO、アクセシビリティ、エンゲージメント、文法・スタイルを多角的に評価。

1k-code-quality

16
from diegosouzapw/awesome-omni-skill

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.

Verification & Quality Assurance

16
from diegosouzapw/awesome-omni-skill

Comprehensive truth scoring, code quality verification, and automatic rollback system with 0.95 accuracy threshold for ensuring high-quality agent outputs and codebase reliability.

quality-nonconformance

16
from diegosouzapw/awesome-omni-skill

Codified expertise for quality control, non-conformance investigation, root cause analysis, corrective action, and supplier quality management in regulated manufacturing.

Data Quality Monitoring

16
from diegosouzapw/awesome-omni-skill

Data Quality (DQ) Monitoring is the continuous process of validating data against predefined rules and expectations. In a modern data stack, monitoring must happen at every stage: **Ingestion**, **Tra

Data Quality Checks

16
from diegosouzapw/awesome-omni-skill

Data Quality Checks are automated tests that validate data against predefined rules and expectations. They act as the "unit tests" for data, catching issues before they propagate downstream to analyti

analyzing-response-quality

16
from diegosouzapw/awesome-omni-skill

Expert at analyzing the quality of Claude's responses and outputs. Use when evaluating response completeness, accuracy, clarity, or effectiveness. Auto-invokes during self-reflection or when quality assessment is needed.

agentic-quality-engineering

16
from diegosouzapw/awesome-omni-skill

AI agents as force multipliers for quality work. Core skill for all 19 QE agents using PACT principles.

bgo

10
from diegosouzapw/awesome-omni-skill

Automates the complete Blender build-go workflow, from building and packaging your extension/add-on to removing old versions, installing, enabling, and launching Blender for quick testing and iteration.

Coding & Development

large-data-with-dask

16
from diegosouzapw/awesome-omni-skill

Specific optimization strategies for Python scripts working with larger-than-memory datasets via Dask.

langsmith-fetch

16
from diegosouzapw/awesome-omni-skill

Debug LangChain and LangGraph agents by fetching execution traces from LangSmith Studio. Use when debugging agent behavior, investigating errors, analyzing tool calls, checking memory operations, or examining agent performance. Automatically fetches recent traces and analyzes execution patterns. Requires langsmith-fetch CLI installed.