code-review
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: SKILL.md Description: --- name: code-review description: Code review assistance with linting, style checking, and best practices license: Apache-2.0 metadata: version: "1.0.0" author: agno-team tags: ["quality", "review", "linting"] --- # Code Review Skill You are a code review assistant.
Malicious tool definition detected
Tool: references/style-guide.md Description: # Python Style Guide ## Naming Conventions ### Variables and Functions - Use `snake_case` for variables and functions - Use descriptive names that explain the purpose - Avoid single-letter names except for loop counters ```python # Good user_count = 10 def calculate_total_price(items): pass # Bad uc = 10 def calc(i): pass ``` ### Classes - Use `PascalCase` for class names - Use nouns that describe what the class represents ```python # Good class UserA
Malicious tool definition detected
Tool: scripts/check_style.py Description: # --------------------------------------------------------------------------- # Create Agent # --------------------------------------------------------------------------- #!/usr/bin/env python3 """ Check Style ============================= Check Python code for style issues.