Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

java-python-code-reviewerJava Python 代码 reviewer

Agent Skill

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。它适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令、生成脚本或分析数据处理逻辑。使用时需要确认项目虚拟环境、依赖版本和测试入口;涉及执行脚本、读写文件、访问数据库或调用外部 API 时,应先明确运行目录和输入输出范围,避免误改生产数据。

总安装

1,493

周安装

61

GitHub Stars

133

下载量

478
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:java-python-code-reviewer(Java Python 代码 reviewer)
来源仓库:https://github.com/yennanliu/cs_basics
仓库路径:skills/java-python-code-reviewer
安装命令:
npx skills add https://github.com/yennanliu/cs_basics --skill java-python-code-reviewer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/yennanliu/cs_basics --skill java-python-code-reviewer

简介

用于辅助 Python 项目开发、测试和依赖管理。

  • 适合阅读 Python 代码、定位测试问题和生成运行命令。
  • 使用时需确认虚拟环境和依赖版本,避免误改数据。
  • 涉及外部调用时应明确输入输出范围和安全边界。
  • java-python-code-reviewer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Java & Python Code Reviewer

When to use this Skill

Use this Skill when:

  • Reviewing LeetCode problem solutions
  • Checking code correctness and efficiency
  • Comparing Java and Python implementations
  • Providing feedback on algorithm implementations
  • Optimizing existing solutions

Review Framework

1. Correctness Analysis

Check for:

  • Edge cases handling (empty input, null, single element)
  • Boundary conditions (array indices, loop termination)
  • Logic errors in algorithm implementation
  • Test case coverage (basic, edge, corner cases)

Common edge cases:

  • Empty arrays/strings: [], ""
  • Null inputs: null, None
  • Single element: [1], "a"
  • Duplicates: [1,1,1]
  • Negative numbers: [-1, -5]
  • Large inputs: Test time/space limits

2. Time & Space Complexity

Analyze and verify:

  • Time complexity: Count operations relative to input size
  • Space complexity: Count auxiliary space used
  • Compare against optimal solution

Provide:

Current: O(n²) time, O(1) space
Optimal: O(n) time, O(n) space using HashMap
Trade-off: Use extra space for better time complexity

Complexity Reference:

  • O(1): Direct access
  • O(log n): Binary search, balanced tree
  • O(n): Single pass, linear scan
  • O(n log n): Efficient sorting, divide-and-conquer
  • O(n²): Nested loops
  • O(2ⁿ): Exponential (backtracking, brute force)

3. Code Quality - Java

Java Best Practices:

  • Use appropriate data structures (ArrayList, HashMap, HashSet)
  • Follow naming conventions (camelCase for methods/variables)
  • Handle null checks and validation
  • Use generics properly (List<Integer> not raw types)
  • Prefer interfaces over implementations (List<> not ArrayList<>)

Java Anti-patterns to flag:

// Bad: Raw types
ArrayList list = new ArrayList();

// Good: Generics
List<Integer> list = new ArrayList<>();

// Bad: Manual array copying
for (int i = 0; i < arr.length; i++) { ... }

// Good: Built-in methods
Arrays.copyOf(arr, arr.length);

// Bad: String concatenation in loop
String s = "";
for (String str : list) { s += str; }

// Good: StringBuilder
StringBuilder sb = new StringBuilder();
for (String str : list) { sb.append(str); }

Check for:

  • Integer overflow: Suggest long when needed
  • Proper exception handling
  • Memory leaks (unclosed resources)
  • Thread safety if applicable

4. Code Quality - Python

Python Best Practices:

  • Use Pythonic idioms (list comprehensions, enumerate, zip)
  • Follow PEP 8 style guidelines
  • Use appropriate data structures (set, dict, deque)
  • Leverage built-in functions

Python Anti-patterns to flag:

# Bad: Manual index tracking
for i in range(len(arr)):
    print(i, arr[i])

# Good: enumerate
for i, val in enumerate(arr):
    print(i, val)

# Bad: Building list with append in loop
result = []
for x in arr:
    result.append(x * 2)

# Good: List comprehension
result = [x * 2 for x in arr]

# Bad: Multiple membership checks
if x == 'a' or x == 'b' or x == 'c':

# Good: Use set or tuple
if x in {'a', 'b', 'c'}:

Check for:

  • Use of appropriate collections (collections.defaultdict, Counter)
  • Generator expressions for memory efficiency
  • Proper use of None checks
  • Type hints for clarity (optional but helpful)

5. Algorithm Optimization

Suggest improvements for:

  • Unnecessary nested loops → Use HashMap for O(n)
  • Repeated calculations → Use memoization/DP
  • Redundant sorting → Use heap or quick select
  • Multiple passes → Combine into single pass
  • Extra space usage → In-place modifications

Pattern Recognition:

  • Two Sum pattern → Use HashMap
  • Sliding Window → Two pointers
  • Subarray sum → Prefix sum
  • Longest substring → Sliding window + HashMap
  • Tree traversal → DFS/BFS with proper data structure

6. Comparison: Java vs Python

When comparing implementations:

Java strengths:

  • Explicit types catch errors early
  • Better for performance-critical code
  • Clear data structure usage

Python strengths:

  • More concise and readable
  • Rich standard library (collections, itertools)
  • Better for rapid prototyping

Flag inconsistencies:

  • Different algorithms used (should be same approach)
  • Different time/space complexity
  • Missing edge case handling in one version

7. Review Output Format

Structure your review as:

## Correctness: ✓ Pass / ⚠ Issues Found

[List any correctness issues]

## Complexity Analysis

- Time: O(?) - [Explain]
- Space: O(?) - [Explain]
- Optimal: [If current solution is not optimal]

## Code Quality

**Strengths:**
- [List positive aspects]

**Issues:**
- [Issue 1] at line X: [Explanation]
- [Issue 2] at line Y: [Explanation]

**Suggestions:**
- [Suggestion 1]: [Why it's better]
- [Suggestion 2]: [Why it's better]

## Overall Assessment

[Summary and recommendation]

Review Checklist

Before completing review:

  • Tested with edge cases
  • Verified time complexity
  • Verified space complexity
  • Checked for common bugs
  • Compared to optimal solution
  • Suggested concrete improvements
  • Provided code examples for suggestions

Example Reviews

Example 1: Two Sum

// Code under review
public int[] twoSum(int[] nums, int target) {
    for (int i = 0; i < nums.length; i++) {
        for (int j = i + 1; j < nums.length; j++) {
            if (nums[i] + nums[j] == target) {
                return new int[]{i, j};
            }
        }
    }
    return new int[]{};
}

Review:

  • Correctness: ✓ Works correctly
  • Time: O(n²) - Can be optimized to O(n)
  • Suggestion: Use HashMap to store seen numbers and their indices

Optimized:

public int[] twoSum(int[] nums, int target) {
    Map<Integer, Integer> map = new HashMap<>();
    for (int i = 0; i < nums.length; i++) {
        int complement = target - nums[i];
        if (map.containsKey(complement)) {
            return new int[]{map.get(complement), i};
        }
        map.put(nums[i], i);
    }
    return new int[]{};
}

Project Context

  • Review solutions in leetcode_java/ and leetcode_python/
  • Compare implementations across languages
  • Check against patterns in algorithm/ and data_structure/
  • Reference complexity charts in doc/ for analysis

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.06%
按下载量换算139

OpenCode

21.09%
按下载量换算101

Gemini CLI

19.57%
按下载量换算94

windsurf

12.94%
按下载量换算62

Antigravity

7.69%
按下载量换算37

github-copilot

3.46%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills