feat: add OpenProse plugin skills

This commit is contained in:
Peter Steinberger
2026-01-23 00:49:32 +00:00
parent db0235a26a
commit 51a9053387
102 changed files with 23315 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
# Code Review Pipeline
# Review code from multiple perspectives sequentially
# First, understand what the code does
session "Read the files in src/ and provide a brief overview of the codebase structure and purpose."
# Security review
session "Review the code for security vulnerabilities. Look for injection risks, authentication issues, and data exposure."
# Performance review
session "Review the code for performance issues. Look for N+1 queries, unnecessary allocations, and blocking operations."
# Maintainability review
session "Review the code for maintainability. Look for code duplication, unclear naming, and missing documentation."
# Synthesize findings
session "Create a unified code review report combining all the findings above. Prioritize issues by severity and provide actionable recommendations."