Skip to content
dsh.fish
Bundle

dsh-plugin-code-review

Structured code review skill for DeepSeek Harness -- bugs, security, performance, style

Source
YYTbit
stars
1 stars
License
MIT
Updated
Updated 5 days ago

Readme

# dsh-plugin-code-review

Structured code review skill for DeepSeek Harness.

## What it does

Teaches the agent a systematic code review process:
- Correctness: logic errors, edge cases, error handling
- Security: input validation, secrets, injection
- Performance: unnecessary loops, N+1, blocking ops
- Style: naming, complexity, dead code
- Testing: coverage, edge cases

## Install

```sh
dsh plugin --profile your-profile add dsh-plugin-code-review
```

## Usage

Just ask the agent to review code:
- "Review this diff"
- "Check this PR for security issues"
- "Review src/auth.ts"

## Output format

```
[CRITICAL] src/auth.ts:42 - Missing input validation on user email
[WARNING] src/api.ts:18 - Potential SQL injection via string concatenation
[SUGGESTION] src/utils.ts:7 - Function too long, consider splitting
```

## License

MIT -- YYTbit

Install

dsh plugin --profile web add github:YYTbit/dsh-plugin-code-review

Profile: web

  • This package builds from source on install. pnpm will ask you to allow its build script — that is permission to run the package’s code on your machine, outside the agent sandbox. Only allow sources you trust.
  • This source has no pinned commit, so a later push upstream changes what installs. Prefer pinning a commit.
Source