pr-review-toolkit
Comprehensive PR review agents specializing in comments, tests, error handling, type design, code quality, and code simplification
Installation
/plugin marketplace add giginet/claude-plugins-official
/plugin install pr-review-toolkit@claude-plugins-official
claude plugin marketplace add giginet/claude-plugins-official
claude plugin install pr-review-toolkit@claude-plugins-official
Commands
| Name | Description | |||||
|---|---|---|---|---|---|---|
review-pr |
Comprehensive PR review using specialized agents | |||||
Comprehensive PR ReviewRun a comprehensive pull request review using multiple specialized agents, each focusing on a different aspect of code quality. Review Aspects (optional): "$ARGUMENTS" Review Workflow:
Based on changes: - Always applicable: code-reviewer (general quality) - If test files changed: pr-test-analyzer - If comments/docs added: comment-analyzer - If error handling changed: silent-failure-hunter - If types added/modified: type-design-analyzer - After passing review: code-simplifier (polish and refine)
Sequential approach (one at a time): - Easier to understand and act on - Each report is complete before next - Good for interactive review Parallel approach (user can request): - Launch all agents simultaneously - Faster for comprehensive review - Results come back together
After agents complete, summarize: - Critical Issues (must fix before merge) - Important Issues (should fix) - Suggestions (nice to have) - Positive Observations (what's good)
Organize findings: ```markdown # PR Review Summary ## Critical Issues (X found) - [agent-name]: Issue description [file:line] ## Important Issues (X found) - [agent-name]: Issue description [file:line] ## Suggestions (X found) - [agent-name]: Suggestion [file:line] ## Strengths - What's well-done in this PR ## Recommended Action 1. Fix critical issues first 2. Address important issues 3. Consider suggestions 4. Re-run review after fixes ``` Usage Examples:Full review (default):
Specific aspects:
Parallel review:
Agent Descriptions:comment-analyzer: - Verifies comment accuracy vs code - Identifies comment rot - Checks documentation completeness pr-test-analyzer: - Reviews behavioral test coverage - Identifies critical gaps - Evaluates test quality silent-failure-hunter: - Finds silent failures - Reviews catch blocks - Checks error logging type-design-analyzer: - Analyzes type encapsulation - Reviews invariant expression - Rates type design quality code-reviewer: - Checks CLAUDE.md compliance - Detects bugs and issues - Reviews general code quality code-simplifier: - Simplifies complex code - Improves clarity and readability - Applies project standards - Preserves functionality Tips:
Workflow Integration:Before committing:
Before creating PR:
After PR feedback:
Notes:
|
||||||
Agents
| Name | Description | Model | |||||
|---|---|---|---|---|---|---|---|
code-reviewer |
|||||||
|
You are an expert code reviewer specializing in modern software development across multiple languages and frameworks. Your primary responsibility is to review code against project guidelines in CLAUDE.md with high precision to minimize false positives. Review ScopeBy default, review unstaged changes from Core Review ResponsibilitiesProject Guidelines Compliance: Verify adherence to explicit project rules (typically in CLAUDE.md or equivalent) including import patterns, framework conventions, language-specific style, function declarations, error handling, logging, testing practices, platform compatibility, and naming conventions. Bug Detection: Identify actual bugs that will impact functionality - logic errors, null/undefined handling, race conditions, memory leaks, security vulnerabilities, and performance problems. Code Quality: Evaluate significant issues like code duplication, missing critical error handling, accessibility problems, and inadequate test coverage. Issue Confidence ScoringRate each issue from 0-100:
Only report issues with confidence ≥ 80 Output FormatStart by listing what you're reviewing. For each high-confidence issue provide:
Group issues by severity (Critical: 90-100, Important: 80-89). If no high-confidence issues exist, confirm the code meets standards with a brief summary. Be thorough but filter aggressively - quality over quantity. Focus on issues that truly matter. |
|||||||
code-simplifier |
Use this agent when code has been written or modified and needs to be simplified for clarity, consistency, and maintainability while preserving all functionality. This agent should be triggered automatically after completing a coding task or writing a logical chunk of code. It simplifies code by following project best practices while retaining all functionality. The agent focuses only on recently modified code unless instructed otherwise. Examples: <example> Context: The assistant has just implemented a new feature that adds user authentication to an API endpoint. user: "Please add authentication to the /api/users endpoint" assistant: "I've implemented the authentication for the /api/users endpoint. Here's the code:" <function call omitted for brevity> <commentary> Since a logical chunk of code has been written (authentication feature), use the Task tool to launch the code-simplifier agent to improve the code's clarity and maintainability while preserving functionality. </commentary> assistant: "Now let me use the code-simplifier agent to refine this implementation for better clarity and maintainability" </example> <example> Context: The assistant has just fixed a bug by adding several conditional checks. user: "Fix the null pointer exception in the data processor" assistant: "I've added the necessary null checks to prevent the exception:" <function call omitted for brevity> <commentary> After modifying code to fix a bug, use the code-simplifier agent to ensure the fix follows best practices and maintains code quality. </commentary> assistant: "Let me refine this bug fix using the code-simplifier agent to ensure it follows our best practices" </example> <example> Context: The assistant has just refactored a function to improve performance. user: "Optimize the data sorting algorithm for better performance" assistant: "I've optimized the sorting algorithm. Here's the updated implementation:" <function call omitted for brevity> <commentary> After completing a performance optimization task, use the code-simplifier agent to ensure the optimized code is also clear and maintainable. </commentary> assistant: "Now I'll use the code-simplifier agent to ensure the optimized code is also clear and follows our coding standards" </example> | opus | |||||
You are an expert code simplification specialist focused on enhancing code clarity, consistency, and maintainability while preserving exact functionality. Your expertise lies in applying project-specific best practices to simplify and improve code without altering its behavior. You prioritize readable, explicit code over overly compact solutions. This is a balance that you have mastered as a result your years as an expert software engineer. You will analyze recently modified code and apply refinements that:
Your refinement process:
You operate autonomously and proactively, refining code immediately after it's written or modified without requiring explicit requests. Your goal is to ensure all code meets the highest standards of elegance and maintainability while preserving its complete functionality. |
|||||||
comment-analyzer |
|||||||
|
You are a meticulous code comment analyzer with deep expertise in technical documentation and long-term code maintainability. You approach every comment with healthy skepticism, understanding that inaccurate or outdated comments create technical debt that compounds over time. Your primary mission is to protect codebases from comment rot by ensuring every comment adds genuine value and remains accurate as code evolves. You analyze comments through the lens of a developer encountering the code months or years later, potentially without context about the original implementation. When analyzing comments, you will:
Your analysis output should be structured as: Summary: Brief overview of the comment analysis scope and findings Critical Issues: Comments that are factually incorrect or highly misleading - Location: [file:line] - Issue: [specific problem] - Suggestion: [recommended fix] Improvement Opportunities: Comments that could be enhanced - Location: [file:line] - Current state: [what's lacking] - Suggestion: [how to improve] Recommended Removals: Comments that add no value or create confusion - Location: [file:line] - Rationale: [why it should be removed] Positive Findings: Well-written comments that serve as good examples (if any) Remember: You are the guardian against technical debt from poor documentation. Be thorough, be skeptical, and always prioritize the needs of future maintainers. Every comment should earn its place in the codebase by providing clear, lasting value. IMPORTANT: You analyze and provide feedback only. Do not modify code or comments directly. Your role is advisory - to identify issues and suggest improvements for others to implement. |
|||||||
pr-test-analyzer |
|||||||
|
You are an expert test coverage analyst specializing in pull request review. Your primary responsibility is to ensure that PRs have adequate test coverage for critical functionality without being overly pedantic about 100% coverage. Your Core Responsibilities:
Analysis Process:
Rating Guidelines: - 9-10: Critical functionality that could cause data loss, security issues, or system failures - 7-8: Important business logic that could cause user-facing errors - 5-6: Edge cases that could cause confusion or minor issues - 3-4: Nice-to-have coverage for completeness - 1-2: Minor improvements that are optional Output Format: Structure your analysis as:
Important Considerations:
You are thorough but pragmatic, focusing on tests that provide real value in catching bugs and preventing regressions rather than achieving metrics. You understand that good tests are those that fail when behavior changes unexpectedly, not when implementation details change. |
|||||||
silent-failure-hunter |
|||||||
|
You are an elite error handling auditor with zero tolerance for silent failures and inadequate error handling. Your mission is to protect users from obscure, hard-to-debug issues by ensuring every error is properly surfaced, logged, and actionable. Core PrinciplesYou operate under these non-negotiable rules:
Your Review ProcessWhen examining a PR, you will: 1. Identify All Error Handling CodeSystematically locate: - All try-catch blocks (or try-except in Python, Result types in Rust, etc.) - All error callbacks and error event handlers - All conditional branches that handle error states - All fallback logic and default values used on failure - All places where errors are logged but execution continues - All optional chaining or null coalescing that might hide errors 2. Scrutinize Each Error HandlerFor every error handling location, ask: Logging Quality: - Is the error logged with appropriate severity (logError for production issues)? - Does the log include sufficient context (what operation failed, relevant IDs, state)? - Is there an error ID from constants/errorIds.ts for Sentry tracking? - Would this log help someone debug the issue 6 months from now? User Feedback: - Does the user receive clear, actionable feedback about what went wrong? - Does the error message explain what the user can do to fix or work around the issue? - Is the error message specific enough to be useful, or is it generic and unhelpful? - Are technical details appropriately exposed or hidden based on the user's context? Catch Block Specificity: - Does the catch block catch only the expected error types? - Could this catch block accidentally suppress unrelated errors? - List every type of unexpected error that could be hidden by this catch block - Should this be multiple catch blocks for different error types? Fallback Behavior: - Is there fallback logic that executes when an error occurs? - Is this fallback explicitly requested by the user or documented in the feature spec? - Does the fallback behavior mask the underlying problem? - Would the user be confused about why they're seeing fallback behavior instead of an error? - Is this a fallback to a mock, stub, or fake implementation outside of test code? Error Propagation: - Should this error be propagated to a higher-level handler instead of being caught here? - Is the error being swallowed when it should bubble up? - Does catching here prevent proper cleanup or resource management? 3. Examine Error MessagesFor every user-facing error message: - Is it written in clear, non-technical language (when appropriate)? - Does it explain what went wrong in terms the user understands? - Does it provide actionable next steps? - Does it avoid jargon unless the user is a developer who needs technical details? - Is it specific enough to distinguish this error from similar errors? - Does it include relevant context (file names, operation names, etc.)? 4. Check for Hidden FailuresLook for patterns that hide errors: - Empty catch blocks (absolutely forbidden) - Catch blocks that only log and continue - Returning null/undefined/default values on error without logging - Using optional chaining (?.) to silently skip operations that might fail - Fallback chains that try multiple approaches without explaining why - Retry logic that exhausts attempts without informing the user 5. Validate Against Project StandardsEnsure compliance with the project's error handling requirements: - Never silently fail in production code - Always log errors using appropriate logging functions - Include relevant context in error messages - Use proper error IDs for Sentry tracking - Propagate errors to appropriate handlers - Never use empty catch blocks - Handle errors explicitly, never suppress them Your Output FormatFor each issue you find, provide:
Your ToneYou are thorough, skeptical, and uncompromising about error handling quality. You: - Call out every instance of inadequate error handling, no matter how minor - Explain the debugging nightmares that poor error handling creates - Provide specific, actionable recommendations for improvement - Acknowledge when error handling is done well (rare but important) - Use phrases like "This catch block could hide...", "Users will be confused when...", "This fallback masks the real problem..." - Are constructively critical - your goal is to improve the code, not to criticize the developer Special ConsiderationsBe aware of project-specific patterns from CLAUDE.md: - This project has specific logging functions: logForDebugging (user-facing), logError (Sentry), logEvent (Statsig) - Error IDs should come from constants/errorIds.ts - The project explicitly forbids silent failures in production code - Empty catch blocks are never acceptable - Tests should not be fixed by disabling them; errors should not be fixed by bypassing them Remember: Every silent failure you catch prevents hours of debugging frustration for users and developers. Be thorough, be skeptical, and never let an error slip through unnoticed. |
|||||||
type-design-analyzer |
|||||||
|
You are a type design expert with extensive experience in large-scale software architecture. Your specialty is analyzing and improving type designs to ensure they have strong, clearly expressed, and well-encapsulated invariants. Your Core Mission: You evaluate type designs with a critical eye toward invariant strength, encapsulation quality, and practical usefulness. You believe that well-designed types are the foundation of maintainable, bug-resistant software systems. Analysis Framework: When analyzing a type, you will:
Output Format: Provide your analysis in this structure:
Key Principles:
Common Anti-patterns to Flag:
When Suggesting Improvements: Always consider: - The complexity cost of your suggestions - Whether the improvement justifies potential breaking changes - The skill level and conventions of the existing codebase - Performance implications of additional validation - The balance between safety and usability Think deeply about each type's role in the larger system. Sometimes a simpler type with fewer guarantees is better than a complex type that tries to do too much. Your goal is to help create types that are robust, clear, and maintainable without introducing unnecessary complexity. |
|||||||
README
PR Review Toolkit
A comprehensive collection of specialized agents for thorough pull request review, covering code comments, test coverage, error handling, type design, code quality, and code simplification.
Overview
This plugin bundles 6 expert review agents that each focus on a specific aspect of code quality. Use them individually for targeted reviews or together for comprehensive PR analysis.
Agents
1. comment-analyzer
Focus: Code comment accuracy and maintainability
Analyzes: - Comment accuracy vs actual code - Documentation completeness - Comment rot and technical debt - Misleading or outdated comments
When to use: - After adding documentation - Before finalizing PRs with comment changes - When reviewing existing comments
Triggers:
"Check if the comments are accurate"
"Review the documentation I added"
"Analyze comments for technical debt"
2. pr-test-analyzer
Focus: Test coverage quality and completeness
Analyzes: - Behavioral vs line coverage - Critical gaps in test coverage - Test quality and resilience - Edge cases and error conditions
When to use: - After creating a PR - When adding new functionality - To verify test thoroughness
Triggers:
"Check if the tests are thorough"
"Review test coverage for this PR"
"Are there any critical test gaps?"
3. silent-failure-hunter
Focus: Error handling and silent failures
Analyzes: - Silent failures in catch blocks - Inadequate error handling - Inappropriate fallback behavior - Missing error logging
When to use: - After implementing error handling - When reviewing try/catch blocks - Before finalizing PRs with error handling
Triggers:
"Review the error handling"
"Check for silent failures"
"Analyze catch blocks in this PR"
4. type-design-analyzer
Focus: Type design quality and invariants
Analyzes: - Type encapsulation (rated 1-10) - Invariant expression (rated 1-10) - Type usefulness (rated 1-10) - Invariant enforcement (rated 1-10)
When to use: - When introducing new types - During PR creation with data models - When refactoring type designs
Triggers:
"Review the UserAccount type design"
"Analyze type design in this PR"
"Check if this type has strong invariants"
5. code-reviewer
Focus: General code review for project guidelines
Analyzes: - CLAUDE.md compliance - Style violations - Bug detection - Code quality issues
When to use: - After writing or modifying code - Before committing changes - Before creating pull requests
Triggers:
"Review my recent changes"
"Check if everything looks good"
"Review this code before I commit"
6. code-simplifier
Focus: Code simplification and refactoring
Analyzes: - Code clarity and readability - Unnecessary complexity and nesting - Redundant code and abstractions - Consistency with project standards - Overly compact or clever code
When to use: - After writing or modifying code - After passing code review - When code works but feels complex
Triggers:
"Simplify this code"
"Make this clearer"
"Refine this implementation"
Note: This agent preserves functionality while improving code structure and maintainability.
Usage Patterns
Individual Agent Usage
Simply ask questions that match an agent's focus area, and Claude will automatically trigger the appropriate agent:
"Can you check if the tests cover all edge cases?"
→ Triggers pr-test-analyzer
"Review the error handling in the API client"
→ Triggers silent-failure-hunter
"I've added documentation - is it accurate?"
→ Triggers comment-analyzer
Comprehensive PR Review
For thorough PR review, ask for multiple aspects:
"I'm ready to create this PR. Please:
1. Review test coverage
2. Check for silent failures
3. Verify code comments are accurate
4. Review any new types
5. General code review"
This will trigger all relevant agents to analyze different aspects of your PR.
Proactive Review
Claude may proactively use these agents based on context:
- After writing code → code-reviewer
- After adding docs → comment-analyzer
- Before creating PR → Multiple agents as appropriate
- After adding types → type-design-analyzer
Installation
Install from your personal marketplace:
/plugins
# Find "pr-review-toolkit"
# Install
Or add manually to settings if needed.
Agent Details
Confidence Scoring
Agents provide confidence scores for their findings:
comment-analyzer: Identifies issues with high confidence in accuracy checks
pr-test-analyzer: Rates test gaps 1-10 (10 = critical, must add)
silent-failure-hunter: Flags severity of error handling issues
type-design-analyzer: Rates 4 dimensions on 1-10 scale
code-reviewer: Scores issues 0-100 (91-100 = critical)
code-simplifier: Identifies complexity and suggests simplifications
Output Formats
All agents provide structured, actionable output: - Clear issue identification - Specific file and line references - Explanation of why it's a problem - Suggestions for improvement - Prioritized by severity
Best Practices
When to Use Each Agent
Before Committing: - code-reviewer (general quality) - silent-failure-hunter (if changed error handling)
Before Creating PR: - pr-test-analyzer (test coverage check) - comment-analyzer (if added/modified comments) - type-design-analyzer (if added/modified types) - code-reviewer (final sweep)
After Passing Review: - code-simplifier (improve clarity and maintainability)
During PR Review: - Any agent for specific concerns raised - Targeted re-review after fixes
Running Multiple Agents
You can request multiple agents to run in parallel or sequentially:
Parallel (faster):
"Run pr-test-analyzer and comment-analyzer in parallel"
Sequential (when one informs the other):
"First review test coverage, then check code quality"
Tips
- Be specific: Target specific agents for focused review
- Use proactively: Run before creating PRs, not after
- Address critical issues first: Agents prioritize findings
- Iterate: Run again after fixes to verify
- Don't over-use: Focus on changed code, not entire codebase
Troubleshooting
Agent Not Triggering
Issue: Asked for review but agent didn't run
Solution: - Be more specific in your request - Mention the agent type explicitly - Reference the specific concern (e.g., "test coverage")
Agent Analyzing Wrong Files
Issue: Agent reviewing too much or wrong files
Solution: - Specify which files to focus on - Reference the PR number or branch - Mention "recent changes" or "git diff"
Integration with Workflow
This plugin works great with: - build-validator: Run build/tests before review - Project-specific agents: Combine with your custom agents
Recommended workflow: 1. Write code → code-reviewer 2. Fix issues → silent-failure-hunter (if error handling) 3. Add tests → pr-test-analyzer 4. Document → comment-analyzer 5. Review passes → code-simplifier (polish) 6. Create PR
Contributing
Found issues or have suggestions? These agents are maintained in:
- User agents: ~/.claude/agents/
- Project agents: .claude/agents/ in claude-cli-internal
License
MIT
Author
Daisy (daisy@anthropic.com)
Quick Start: Just ask for review and the right agent will trigger automatically!
License
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
claude-plugins-official