1
0
mirror of https://github.com/hustcer/deepseek-review.git synced 2026-05-13 05:16:05 +08:00

28 Commits
v1.0 ... v1.3

Author SHA1 Message Date
hustcer
00000001ec Bump to v1.3 2025-01-31 11:55:39 +08:00
Justin Ma
025694ce43 doc: Polish documents (#57) 2025-01-31 11:49:57 +08:00
Justin Ma
f847c1a154 feat: Add skip cr or skip review feature (#56)
* feat: Add skip cr or skip review feature

* feat: Add skip cr or skip review feature

* feat: Add skip cr or skip review feature
2025-01-31 10:45:03 +08:00
Justin Ma
7b21216ef9 feat: Add github-token input (#55) 2025-01-31 10:14:10 +08:00
Justin Ma
c984584c3a chore: Increase max-length in review workflow (#54)
* test max-length

* chore: Increase max-length in wf
2025-01-31 10:00:11 +08:00
Justin Ma
e9361125bc doc: Update CLI help output (#53)
* doc: Update CLI help output

* doc: Update CLI help output

* doc: Update CLI help output

* fix: Fix max-length not work issue

* fix: Fix max-length not work issue

* fix: Fix max-length not work issue

* fix: Fix max-length not work issue

* fix: Fix max-length not work issue

* fix: Fix max-length not work issue

* fix: Fix max-length not work issue

* fix: Fix max-length not work issue

* fix: Fix max-length not work issue
2025-01-31 09:51:51 +08:00
hustcer
000000086e Bump to v1.2 2025-01-31 09:00:31 +08:00
Justin Ma
5225cc66ea feat: Add max-length input (#52)
* feat: Add max-length input

* feat: Add max-length input
2025-01-31 08:56:56 +08:00
Justin Ma
e94ff03208 breaking: Change DEEPSEEK_TOKEN to CHAT_TOKEN (#50)
* breaking: Change DEEPSEEK_TOKEN to CHAT_TOKEN

* breaking: Change DEEPSEEK_TOKEN to CHAT_TOKEN
2025-01-31 08:18:19 +08:00
Justin Ma
a7fd374fc1 chore: Update action name, description and icon (#49) 2025-01-31 07:50:50 +08:00
hustcer
a7699eee9c ci skip 2025-01-30 23:57:51 +08:00
hustcer
000000090a Bump v1.1 2025-01-30 23:32:09 +08:00
Justin Ma
052182c5de fix: Polish CLI output for local code review (#44) 2025-01-30 23:27:03 +08:00
hustcer
e8e5bc99ff doc: Reorganize docs 2025-01-30 20:19:11 +08:00
Justin Ma
272fb2244e feat: Add DEFAULT_GITHUB_REPO & DEFAULT_LOCAL_REPO config for local CR (#42)
* feat: Add DEFAULT_GITHUB_REPO & DEFAULT_LOCAL_REPO config for local code review

* feat: Add DEFAULT_GITHUB_REPO & DEFAULT_LOCAL_REPO config for local code review
2025-01-30 20:07:02 +08:00
Justin Ma
6dc9fc6f1d doc: Add local code review guide (#41) 2025-01-30 19:30:34 +08:00
Justin Ma
35a8ded25b doc: Add planed features to doc (#39)
* doc: Add planed features to doc

* doc: Add planed features to doc
2025-01-30 13:53:03 +08:00
hustcer
00000006e0 fix doc 2025-01-30 11:46:47 +08:00
Justin Ma
88e0011fbf doc: Add CLI help doc (#36) 2025-01-30 11:42:30 +08:00
Justin Ma
18450d75e8 feat: Add more CLI short flags (#35) 2025-01-30 11:33:36 +08:00
Justin Ma
8e67d7be7e fix: Add repo checking for GitHub PR review (#34) 2025-01-30 10:57:04 +08:00
Justin Ma
28505c4767 feat: Add dot env conf for local code review (#33)
* feat: Add dot env conf for local code review

* cs

* cs
2025-01-30 10:47:06 +08:00
Justin Ma
4c4defaaca fix: Add git repo and git ref checking (#32)
* fix: Check gh installation status in GitHub Action

* fix: Add git repo and git ref checking
2025-01-30 10:17:29 +08:00
Justin Ma
f536accea4 fix: Check gh installation status in GitHub Action (#31) 2025-01-30 09:25:11 +08:00
Justin Ma
b527650ce1 fix: Do not override GITHUB_TOKEN env var (#30) 2025-01-30 09:09:34 +08:00
Justin Ma
40b98c9c16 doc: Add features description to README (#29)
* doc: Add features description to README

* cs
2025-01-30 09:02:35 +08:00
hustcer
8c99ac926e ci skip 2025-01-29 23:50:35 +08:00
Justin Ma
f962bbb88d chore: Use v1 in README docs (#17) 2025-01-29 20:46:12 +08:00
10 changed files with 441 additions and 79 deletions

22
.env.example Normal file
View File

@@ -0,0 +1,22 @@
# Description: Environment variables for Local Code Review Only
# Usage: Copy this file to .env and replace the values with your own
# WARNING: Do not commit the actual .env file to version control as it may contain sensitive information.
# CHAT_TOKEN: Obtain this token from your Deepseek account settings
CHAT_TOKEN='Your Deepseek API token'
# GITHUB_TOKEN: Your GitHub API token to query GitHub PR changes
# Generate this token from your GitHub account with the necessary permissions
GITHUB_TOKEN='Your GitHub API token'
# MAX_LENGTH: The maximum length of the content for review, 0 means no limit.
MAX_LENGTH='0'
# Default GitHub repository name to fetch PR changes
DEFAULT_GITHUB_REPO='hustcer/deepseek-review'
# Default local repository absolute path to query commit changes
DEFAULT_LOCAL_REPO='/Users/hustcer/deepseek-review'
# BASE_URL: Deepseek API base URL
# Replace with the actual API base URL if different
BASE_URL='https://api.deepseek.ai'
# USER_PROMPT: User prompt message, customize as needed
USER_PROMPT='Please review the following code changes'
# SYSTEM_PROMPT: System prompt message, customize as needed
SYSTEM_PROMPT='You are a professional code review assistant responsible for analyzing code changes in GitHub Pull Requests. Identify potential issues such as code style violations, logical errors, security vulnerabilities, and provide improvement suggestions. Clearly list the problems and recommendations in a concise manner.'

View File

@@ -6,7 +6,10 @@
name: Code Review
on:
pull_request_target:
types: [opened, synchronize, reopened]
types:
- opened # Triggers when a PR is opened
- reopened # Triggers when a PR is reopened
- synchronize # Triggers when a commit is pushed to the PR
# fix: GraphQL: Resource not accessible by integration (addComment) error
permissions:
@@ -14,12 +17,11 @@ permissions:
jobs:
setup-deepseek-review:
strategy:
fail-fast: false
runs-on: ubuntu-latest
name: Code Review
steps:
- name: Deepseek Code Review
uses: hustcer/deepseek-review@develop
with:
deepseek-token: ${{ secrets.DEEPSEEK_TOKEN }}
max-length: 10000
chat-token: ${{ secrets.CHAT_TOKEN }}

View File

@@ -1,6 +1,63 @@
# Changelog
All notable changes to this project will be documented in this file.
## [1.3.0] - 2025-01-31
### Documentation
- Update CLI help output (#53)
- Polish documents (#57)
### Features
- Add `github-token` input (#55)
- Add `skip cr` or `skip review` to PR title or body to disable code review in GitHub Actions (#56)
### Miscellaneous Tasks
- Increase `max-length` in review workflow (#54)
## [1.2.0] - 2025-01-31
### Breaking Changes
- Change `DEEPSEEK_TOKEN` to `CHAT_TOKEN` (#50)
### Features
- Add `max-length` input (#52)
### Miscellaneous Tasks
- Update action name, description and icon (#49)
## [1.1.0] - 2025-01-30
### Bug Fixes
- Do not override `GITHUB_TOKEN` env var (#30)
- Check `gh` installation status in GitHub Action (#31)
- Add git repo and git ref checking (#32)
- Add repo checking for GitHub PR review (#34)
- Polish CLI output for local code review (#44)
### Documentation
- Add features description to README (#29)
- Add CLI help doc (#36)
- Add planed features to doc (#39)
- Add local code review guide (#41)
### Features
- Add dot env conf for local code review (#33)
- Add more CLI short flags (#35)
- Add `DEFAULT_GITHUB_REPO` & `DEFAULT_LOCAL_REPO` config for local code review (#42)
### Miscellaneous Tasks
- Use `v1` in README docs (#17)
## [1.0.0] - 2025-01-29
### Bug Fixes

View File

@@ -2,13 +2,33 @@
[中文说明](README.zh-CN.md)
## Features
- Automate PR Reviews with Deepseek via GitHub Action
- Review Remote GitHub PRs Directly from Your Local CLI
- Analyze Commit Changes with Deepseek for Any Local Repository with CLI
- Fully Customizable: Choose Models, Base URLs, and Prompts
- Supports Self-Hosted Deepseek Models for Enhanced Flexibility
- Add `skip cr` or `skip review` to PR title or body to disable code review in GitHub Actions
- Cross-platform Support: Compatible with GitHub Runners across `macOS`, `Ubuntu`, and `Windows`.
## Planned Features
- [ ] **Trigger Code Review on Mention**: Automatically initiate code review when the `github-actions` bot is mentioned in a PR comment.
- [ ] **Exclude Specific File Changes**: Ignore changes to specified files, such as `Cargo.lock`, `pnpm-lock.yaml`, and others.
## Code Review with GitHub Action
Add a GitHub workflow with the following contents:
```yaml
name: Code Review
on:
pull_request_target:
types: [opened]
types:
- opened # Triggers when a PR is opened
- reopened # Triggers when a PR is reopened
- synchronize # Triggers when a commit is pushed to the PR
# fix: GraphQL: Resource not accessible by integration (addComment) error
permissions:
@@ -20,22 +40,26 @@ jobs:
name: Code Review
steps:
- name: Deepseek Code Review
uses: hustcer/deepseek-review@develop
uses: hustcer/deepseek-review@v1
with:
deepseek-token: ${{ secrets.DEEPSEEK_TOKEN }}
chat-token: ${{ secrets.CHAT_TOKEN }}
```
When a PR is created, Deepseek code review will be automatically triggered, and the review results will be posted as comments on the corresponding PR. For example: [Example](https://github.com/hustcer/deepseek-review/pull/30) & [Run Log](https://github.com/hustcer/deepseek-review/actions/runs/13043609677/job/36390331791#step:2:53).
## Input Parameters
| Name | Type | Description |
| -------------- | ------ | ----------------------------------------------------------------------- |
| deepseek-token | String | Required, Deepseek API Token |
| chat-token | String | Required, Deepseek API Token |
| model | String | Optional, the model used for code review, defaults to `deepseek-chat` |
| base-url | String | Optional, Deepseek API Base URL, defaults to `https://api.deepseek.com` |
| sys-prompt | String | Optional, system prompt corresponding to `$sys_prompt` in the input, default value see note below |
| user-prompt | String | Optional, system prompt corresponding to `$user_prompt` in the input, default value see note below |
| max-length | Int | Optional, Maximum length(Unicode width) of the content for review, if the content length exceeds this value, the review will be skipped. Default `0` means no limit. |
| sys-prompt | String | Optional, system prompt corresponding to `$sys_prompt` in the payload, default value see note below |
| user-prompt | String | Optional, user prompt corresponding to `$user_prompt` in the payload, default value see note below |
| github-token | String | Optional, The `GITHUB_TOKEN` secret or personal access token to authenticate. Defaults to `github.token`. |
**API Call Input**:
**Deepseek API Call Payload**:
```js
{
@@ -55,6 +79,60 @@ jobs:
}
```
## Local Code Review
### Required Tools
To perform code reviews locally(should works for `macOS`, `Ubuntu`, and `Windows`), you need to install the following tools:
- [`Nushell`](https://www.nushell.sh/book/installation.html) & [`Just`](https://just.systems/man/en/packages.html). It is recommended to install the latest versions.
- If you need to review GitHub PRs locally, you also need to install [`gh`](https://cli.github.com/).
- Once the tools are installed, simply clone this repository to your local machine, navigate to the repository directory, and run `just code-review -h` or `just cr -h`. You should see an output similar to the following:
```console
Use Deepseek AI to review code changes locally or in GitHub Actions
Usage:
> deepseek-review {flags} (token)
Flags:
-d, --debug: Debug mode
-r, --repo <string>: GitHub repository name, e.g. hustcer/deepseek-review
-n, --pr-number <string>: GitHub PR number
--gh-token <string>: Your GitHub token, fallback to GITHUB_TOKEN env var
-t, --diff-to <string>: Diff to git REF
-f, --diff-from <string>: Diff from git REF
-l, --max-length <int>: Maximum length of the content for review, 0 means no limit.
-m, --model <string>: Model name, deepseek-chat by default (default: 'deepseek-chat')
--base-url <string> (default: 'https://api.deepseek.com')
-s, --sys-prompt <string> (default: 'You are a professional code review assistant responsible for analyzing code changes in GitHub Pull Requests. Identify potential issues such as code style violations, logical errors, security vulnerabilities, and provide improvement suggestions. Clearly list the problems and recommendations in a concise manner.')
-u, --user-prompt <string> (default: 'Please review the following code changes:')
-h, --help: Display the help message for this command
Parameters:
token <string>: Your Deepseek API token, fallback to CHAT_TOKEN env var (optional)
```
### Environment Configuration
To perform code reviews locally, you need to modify the configuration file. A sample configuration file `.env.example` is already provided in the repository. Copy it to `.env` and adjust it according to your actual setup.
### Usage Examples
```sh
# Perform code review on the `git diff` changes in the local DEFAULT_LOCAL_REPO repo
just cr
# Perform code review on the `git diff f536acc` changes in the local DEFAULT_LOCAL_REPO repo
just cr --diff-from f536acc
# Perform code review on the `git diff f536acc 0dd0eb5` changes in the local DEFAULT_LOCAL_REPO repo
just cr --diff-from f536acc --diff-to 0dd0eb5
# Perform code review on PR #31 in the remote DEFAULT_GITHUB_REPO repo
just cr --pr-number 31
# Perform code review on PR #31 in the remote hustcer/deepseek-review repo
just cr --pr-number 31 --repo hustcer/deepseek-review
```
## License
Licensed under:

View File

@@ -1,12 +1,32 @@
# Deepseek Code Review
# Deepseek 代码审核
## 特性
- 通过 GitHub Action 使用 Deepseek 进行自动化 PR 审查
- 通过本地 CLI 直接审查远程 GitHub PR
- 通过本地 CLI 使用 Deepseek 分析任何本地仓库的提交变更
- 完全可定制:选择模型、基础 URL 和提示词
- 支持自托管 Deepseek 模型,提供更强的灵活性
- 在 PR 的标题或描述中添加 `skip cr` or `skip review` 可跳过 GitHub Actions 里的代码审查
- 跨平台:支持 GitHub `macOS`, `Ubuntu` & `Windows` Runners
## 计划支持特性
- [ ] **通过提及触发代码审查**:当 PR 评论中提及 `github-actions bot` 时,自动触发代码审查
- [ ] **忽略指定文件变更**:忽略对指定文件的更改,例如 `Cargo.lock``pnpm-lock.yaml`
## 通过 GitHub Action 进行代码审核
创建一个 GitHub workflow 内容如下:
```yaml
name: Code Review
on:
pull_request_target:
types: [opened]
types:
- opened # Triggers when a PR is opened
- reopened # Triggers when a PR is reopened
- synchronize # Triggers when a commit is pushed to the PR
# fix: GraphQL: Resource not accessible by integration (addComment) error
permissions:
@@ -18,22 +38,26 @@ jobs:
name: Code Review
steps:
- name: Deepseek Code Review
uses: hustcer/deepseek-review@develop
uses: hustcer/deepseek-review@v1
with:
deepseek-token: ${{ secrets.DEEPSEEK_TOKEN }}
chat-token: ${{ secrets.CHAT_TOKEN }}
```
当 PR 创建的时候会自动触发 Deepseek 代码审核,并将审核结果以评论的方式发布到对应的 PR 上。比如:[示例](https://github.com/hustcer/deepseek-review/pull/30) & [运行日志](https://github.com/hustcer/deepseek-review/actions/runs/13043609677/job/36390331791#step:2:53)
## 输入参数
| 名称 | 类型 | 描述 |
| -------------- | ------ | -------------------------------------------------------------- |
| deepseek-token | String | 必填Deepseek API Token |
| chat-token | String | 必填Deepseek API Token |
| model | String | 可选,配置代码审核选用的模型,默认为 `deepseek-chat` |
| base-url | String | 可选Deepseek API Base URL, 默认为 `https://api.deepseek.com` |
| max-length | Int | 可选,待审核内容的最大 Unicode 长度, 默认 `0` 表示没有限制,超过非零值则跳过审核 |
| sys-prompt | String | 可选,系统 Prompt 对应入参中的 `$sys_prompt`, 默认值见后文注释 |
| user-prompt | String | 可选,用户 Prompt 对应入参中的 `$user_prompt`, 默认值见后文注释 |
| github-token | String | 可选,用于访问 API 进行 PR 管理的 GitHub Token默认为 `${{ github.token }}` |
接口调用入参:
Deepseek 接口调用入参:
```js
{
@@ -53,6 +77,60 @@ jobs:
}
```
## 本地代码审核
### 依赖工具
在本地进行代码审核,支持 `macOS`, `Ubuntu` & `Windows` 不过需要安装以下工具:
- [`Nushell`](https://www.nushell.sh/book/installation.html) & [`Just`](https://just.systems/man/en/packages.html), 建议安装最新版本
- 如果你需要在本地审核 GitHub PRs 还需要安装 [`gh`](https://cli.github.com/)
- 接下来只需要把本仓库代码克隆到本地,然后进入仓库目录执行 `just code-review -h` 或者 `just cr -h` 即可看到类似如下输出:
```console
Use Deepseek AI to review code changes locally or in GitHub Actions
Usage:
> deepseek-review {flags} (token)
Flags:
-d, --debug: Debug mode
-r, --repo <string>: GitHub repository name, e.g. hustcer/deepseek-review
-n, --pr-number <string>: GitHub PR number
--gh-token <string>: Your GitHub token, fallback to GITHUB_TOKEN env var
-t, --diff-to <string>: Diff to git REF
-f, --diff-from <string>: Diff from git REF
-l, --max-length <int>: Maximum length of the content for review, 0 means no limit.
-m, --model <string>: Model name, deepseek-chat by default (default: 'deepseek-chat')
--base-url <string> (default: 'https://api.deepseek.com')
-s, --sys-prompt <string> (default: 'You are a professional code review assistant responsible for analyzing code changes in GitHub Pull Requests. Identify potential issues such as code style violations, logical errors, security vulnerabilities, and provide improvement suggestions. Clearly list the problems and recommendations in a concise manner.')
-u, --user-prompt <string> (default: 'Please review the following code changes:')
-h, --help: Display the help message for this command
Parameters:
token <string>: Your Deepseek API token, fallback to CHAT_TOKEN env var (optional)
```
### 环境配置
在本地进行代码审核需要先修改配置文件,仓库里已经有了 `.env.example` 配置文件示例,将其拷贝到 `.env` 然后根据自己的实际情况进行修改即可。
### 使用举例
```sh
# 对本地 DEFAULT_LOCAL_REPO 仓库 `git diff` 修改内容进行代码审核
just cr
# 对本地 DEFAULT_LOCAL_REPO 仓库 `git diff f536acc` 修改内容进行代码审核
just cr --diff-from f536acc
# 对本地 DEFAULT_LOCAL_REPO 仓库 `git diff f536acc 0dd0eb5` 修改内容进行代码审核
just cr --diff-from f536acc --diff-to 0dd0eb5
# 对远程 DEFAULT_GITHUB_REPO 仓库编号为 31 的 PR 进行代码审核
just cr --pr-number 31
# 对远程 hustcer/deepseek-review 仓库编号为 31 的 PR 进行代码审核
just cr --pr-number 31 --repo hustcer/deepseek-review
```
## 许可
Licensed under:

View File

@@ -6,18 +6,22 @@
# - https://docs.github.com/cn/actions/creating-actions/metadata-syntax-for-github-actions
# - https://docs.github.com/en/actions/creating-actions/creating-a-composite-action
name: 'Deepseek Code Review'
name: 'Deepseek CR'
author: 'hustcer'
description: 'A github action to do code review by Deepseek for PRs.'
description: '🚀 Sharpen Your Code, Ship with Confidence Elevate Your Workflow with Deepseek Code Review 🚀'
branding:
icon: 'code'
icon: 'eye'
color: 'purple'
inputs:
deepseek-token:
chat-token:
required: true
description: 'Your deepseek API token.'
max-length:
default: 0
required: false
description: 'The maximum length of the content for review, 0 means no limit.'
model:
required: false
default: 'deepseek-chat'
@@ -34,6 +38,10 @@ inputs:
required: false
default: 'Please review the following code changes'
description: 'The user prompt for deepseek API.'
github-token:
required: false
default: '${{ github.token }}'
description: 'The GITHUB_TOKEN secret or personal access token to authenticate. Defaults to `github.token`.'
runs:
using: 'composite'
@@ -48,20 +56,22 @@ runs:
run: |
const NU_LIB_DIRS = [ ${{ github.action_path }}/nu ]
use review.nu *
let model = '${{inputs.model}}'
let baseUrl = '${{inputs.base-url}}'
let token = '${{inputs.deepseek-token}}'
let sysPrompt = '${{inputs.sys-prompt}}'
let userPrompt = '${{inputs.user-prompt}}'
let ghToken = '${{ github.token }}'
let model = '${{ inputs.model }}'
let baseUrl = '${{ inputs.base-url }}'
let repo = '${{ github.repository }}'
let token = '${{ inputs.chat-token }}'
let ghToken = '${{ inputs.github-token }}'
let sysPrompt = '${{ inputs.sys-prompt }}'
let userPrompt = '${{ inputs.user-prompt }}'
let pr = '${{ github.event.pull_request.number }}'
let maxLength = try { '${{ inputs.max-length }}' | into int } catch { 0 }
(deepseek-review $token
--model $model
--repo $repo
--pr-number $pr
--gh-token $ghToken
--base-url $baseUrl
--max-length $maxLength
--sys-prompt $sysPrompt
--user-prompt $userPrompt
)

View File

@@ -39,6 +39,7 @@ commit_parsers = [
{ message = "^doc", group = "Documentation"},
{ message = "^perf", group = "Performance"},
{ message = "^refactor", group = "Refactor"},
{ message = "^breaking", group = "Breaking Changes"},
{ message = "^style", group = "Styling"},
{ message = "^test", group = "Testing"},
{ message = "^chore\\(release\\): prepare for", skip = true},

View File

@@ -4,11 +4,14 @@
# npx cspell --no-progress .
words:
- psql
- ECODE
- endfor
- dotenv
- hustcer
- Nushell
- justfile
- lefthook
- deepseek
- hustcer
- endfor
- dotenv
- linewise
ignorePaths:

View File

@@ -1,10 +1,10 @@
{
"name": "deepseek-review",
"version": "1.0.0",
"actionVer": "v1.0",
"version": "1.3.0",
"actionVer": "v1.3",
"author": "hustcer",
"license": "MIT",
"github": "https://github.com/hustcer/deepseek-review",
"home": "https://github.com/marketplace/actions/deepseek-review",
"description": "A github action to do code review for pull requests."
"home": "https://github.com/marketplace/actions/deepseek-cr",
"description": "🚀 Sharpen Your Code, Ship with Confidence Elevate Your Workflow with Deepseek Code Review 🚀"
}

View File

@@ -10,12 +10,27 @@
# Description: A script to do code review by deepseek
# Env vars:
# GITHUB_TOKEN: Your GitHub API token
# DEEPSEEK_TOKEN: Your Deepseek API token
# CHAT_TOKEN: Your Deepseek API token
# BASE_URL: Deepseek API base URL
# SYSTEM_PROMPT: System prompt message
# USER_PROMPT: User prompt message
# Usage:
# 1. Local: just cr
# 2. Local: just cr -f HEAD~1 --debug
#
# Commonly used exit codes
const ECODE = {
SUCCESS: 0,
OUTDATED: 1,
MISSING_BINARY: 2,
MISSING_DEPENDENCY: 3,
CONDITION_NOT_SATISFIED: 5,
SERVER_ERROR: 6,
INVALID_PARAMETER: 7,
AUTH_FAILED: 8,
}
const DEFAULT_OPTIONS = {
MODEL: 'deepseek-chat',
BASE_URL: 'https://api.deepseek.com',
@@ -23,43 +38,64 @@ const DEFAULT_OPTIONS = {
SYS_PROMPT: 'You are a professional code review assistant responsible for analyzing code changes in GitHub Pull Requests. Identify potential issues such as code style violations, logical errors, security vulnerabilities, and provide improvement suggestions. Clearly list the problems and recommendations in a concise manner.',
}
# Use Deepseek AI to review code changes
export def deepseek-review [
token?: string, # Your Deepseek API token, fallback to DEEPSEEK_TOKEN
--debug(-d), # Debug mode
--repo: string, # GitHub repository name, e.g. hustcer/deepseek-review
--pr-number: string, # GitHub PR number
--gh-token: string, # Your GitHub token, GITHUB_TOKEN by default
--diff-to(-t): string, # Diff to git ref
--diff-from(-f): string, # Diff from git ref
--model: string = $DEFAULT_OPTIONS.MODEL, # Model name, deepseek-chat by default
--base-url: string = $DEFAULT_OPTIONS.BASE_URL,
--sys-prompt: string = $DEFAULT_OPTIONS.SYS_PROMPT,
--user-prompt: string = $DEFAULT_OPTIONS.USER_PROMPT,
] {
# If the PR title or body contains any of these keywords, skip the review
const IGNORE_REVIEW_KEYWORDS = ['skip review' 'skip cr']
let token = $token | default $env.DEEPSEEK_TOKEN?
# Use Deepseek AI to review code changes locally or in GitHub Actions
export def --env deepseek-review [
token?: string, # Your Deepseek API token, fallback to CHAT_TOKEN env var
--debug(-d), # Debug mode
--repo(-r): string, # GitHub repository name, e.g. hustcer/deepseek-review
--pr-number(-n): string, # GitHub PR number
--gh-token: string, # Your GitHub token, fallback to GITHUB_TOKEN env var
--diff-to(-t): string, # Diff to git REF
--diff-from(-f): string, # Diff from git REF
--max-length(-l): int, # Maximum length of the content for review, 0 means no limit.
--model(-m): string = $DEFAULT_OPTIONS.MODEL, # Model name, deepseek-chat by default
--base-url: string = $DEFAULT_OPTIONS.BASE_URL,
--sys-prompt(-s): string = $DEFAULT_OPTIONS.SYS_PROMPT,
--user-prompt(-u): string = $DEFAULT_OPTIONS.USER_PROMPT,
]: nothing -> nothing {
$env.config.table.mode = 'psql'
let is_action = ($env.GITHUB_ACTIONS? == 'true')
let token = $token | default $env.CHAT_TOKEN?
let repo = $repo | default $env.DEFAULT_GITHUB_REPO?
let header = [Authorization $'Bearer ($token)']
let url = $'($base_url)/chat/completions'
let local_repo = $env.DEFAULT_LOCAL_REPO? | default (pwd)
let max_length = $max_length | default ($env.MAX_LENGTH? | default 0 | into int)
let setting = {
repo: $repo,
diff_to: $diff_to,
diff_from: $diff_from,
pr_number: $pr_number,
max_length: $max_length,
local_repo: $local_repo,
}
$env.GH_TOKEN = $gh_token | default $env.GITHUB_TOKEN?
if ($token | is-empty) {
print $'(ansi r)Please provide your Deepseek API token by setting `DEEPSEEK_TOKEN` or passing it as an argument.(ansi reset)'
return
print $'(ansi r)Please provide your Deepseek API token by setting `CHAT_TOKEN` or passing it as an argument.(ansi reset)'
exit $ECODE.INVALID_PARAMETER
}
let hint = if ($env.GITHUB_ACTIONS? != 'true') {
if $is_action and not (is-installed gh) {
print $'(ansi r)Please install GitHub CLI from https://cli.github.com (ansi reset)'
exit $ECODE.MISSING_BINARY
}
let hint = if not $is_action and ($pr_number | is-empty) {
$'🚀 Initiate the code review by Deepseek AI for local changes ...'
} else {
$'🚀 Initiate the code review by Deepseek AI for PR (ansi g)#($pr_number)(ansi reset) in (ansi g)($repo)(ansi reset) ...'
}
print $hint; print -n (char nl)
$env.GITHUB_TOKEN = $gh_token | default $env.GITHUB_TOKEN?
let diff_content = if ($pr_number | is-not-empty) {
gh pr diff $pr_number --repo $repo | str trim
} else if ($diff_from | is-not-empty) {
git diff $diff_from ($diff_to | default HEAD)
} else { git diff }
if ($diff_content | is-empty) {
print $'(ansi r)Please provide the diff content by passing `--pr-number`.(ansi reset)'
return
if ($pr_number | is-empty) { $setting | compact-record | reject repo | print }
let diff_content = get-diff --pr-number $pr_number --repo $repo --diff-to $diff_to --diff-from $diff_from
let length = $diff_content | str stats | get unicode-width
if ($max_length != 0) and ($length > $max_length) {
print $'(char nl)(ansi r)The content length ($length) exceeds the maximum limit ($max_length), review skipped.(ansi reset)'
exit $ECODE.SUCCESS
}
print $'Review content length: (ansi g)($length)(ansi reset), current max length: (ansi g)($max_length)(ansi reset)'
let payload = {
model: $model,
stream: false,
@@ -68,31 +104,21 @@ export def deepseek-review [
{ role: 'user', content: $"($user_prompt):\n($diff_content)" }
]
}
if $debug {
print $'Code Changes:'; hr-line; print $diff_content
}
let header = [Authorization $'Bearer ($token)']
let url = $'($base_url)/chat/completions'
if $debug { print $'Code Changes:'; hr-line; print $diff_content }
print $'(char nl)(ansi g)Waiting for response from Deepseek ...(ansi reset)'
let response = http post -e -H $header -t application/json $url $payload
if ($response | is-empty) {
print $'(ansi r)Oops, No response returned from Deepseek API.(ansi reset)'
exit 1
return
}
if $debug {
print $'Deepseek Response:'; hr-line
$response | table -e | print
exit $ECODE.SERVER_ERROR
}
if $debug { print $'Deepseek Response:'; hr-line; $response | table -e | print }
if ($response | describe) == 'string' {
print $'❌ Code review failedError: '; hr-line; print $response
exit 1
return
exit $ECODE.SERVER_ERROR
}
let review = $response | get -i choices.0.message.content
if ($env.GITHUB_ACTIONS? != 'true') {
print $'Code Review Result:'; hr-line
print $review
if not $is_action {
print $'Code Review Result:'; hr-line; print $review
} else {
gh pr comment $pr_number --body $review --repo $repo
print $'✅ Code review finishedPR (ansi g)#($pr_number)(ansi reset) review result was posted as a comment.'
@@ -101,16 +127,101 @@ export def deepseek-review [
$response.usage | table -e | print
}
# Get the diff content from GitHub PR or local git changes
export def get-diff [
--repo: string, # GitHub repository name
--pr-number: string, # GitHub PR number
--diff-to: string, # Diff to git ref
--diff-from: string, # Diff from git ref
] {
let local_repo = $env.DEFAULT_LOCAL_REPO? | default (pwd)
if not ($local_repo | path exists) {
print $'(ansi r)The directory ($local_repo) does not exist.(ansi reset)'
exit $ECODE.CONDITION_NOT_SATISFIED
}
cd $local_repo
let diff_content = if ($pr_number | is-not-empty) {
if ($repo | is-empty) {
print $'(ansi r)Please provide the GitHub repository name by `--repo` option.(ansi reset)'
exit $ECODE.INVALID_PARAMETER
}
# TODO: Ignore keywords checking when triggering by mentioning the bot
let description = gh pr view $pr_number --repo $repo --json title,body
if ($IGNORE_REVIEW_KEYWORDS | any {|it| $description =~ $it }) {
print $'(ansi r)The PR title or body contains keywords to skip the review, bye...(ansi reset)'
exit $ECODE.SUCCESS
}
gh pr diff $pr_number --repo $repo | str trim
} else if ($diff_from | is-not-empty) {
if not (has-ref $diff_from) {
print $'(ansi r)The specified git ref ($diff_from) does not exist, please check it again.(ansi reset)'
exit $ECODE.INVALID_PARAMETER
}
if ($diff_to | is-not-empty) and not (has-ref $diff_to) {
print $'(ansi r)The specified git ref ($diff_to) does not exist, please check it again.(ansi reset)'
exit $ECODE.INVALID_PARAMETER
}
git diff $diff_from ($diff_to | default HEAD)
} else if not (git-check $local_repo --check-repo=1) {
print $'Current directory ($local_repo) is (ansi r)NOT(ansi reset) a git repo, bye...(char nl)'
exit $ECODE.CONDITION_NOT_SATISFIED
} else { git diff }
if ($diff_content | is-empty) {
print $'(ansi g)Nothing to review.(ansi reset)'; exit $ECODE.SUCCESS
}
$diff_content
}
# Compact the record by removing empty columns
export def compact-record []: record -> record {
let record = $in
let empties = $record | columns | filter {|it| $record | get $it | is-empty }
$record | reject ...$empties
}
# Check if some command available in current shell
export def is-installed [ app: string ] {
(which $app | length) > 0
}
# Check if git was installed and if current directory is a git repo
export def git-check [
dest: string, # The dest dir to check
--check-repo: int, # Check if current directory is a git repo
] {
cd $dest
if not (is-installed git) {
print $'You should (ansi r)INSTALL git(ansi reset) first to run this command, bye...'
exit $ECODE.MISSING_BINARY
}
# If we don't need repo check just quit now
if ($check_repo != 0) {
let checkRepo = (do -i { git rev-parse --is-inside-work-tree } | complete)
if not ($checkRepo.stdout =~ 'true') {
print $'Current directory is (ansi r)NOT(ansi reset) a git repo, bye...(char nl)'
exit $ECODE.CONDITION_NOT_SATISFIED
}
}
true
}
# Check if a git repo has the specified ref: could be a branch or tag, etc.
export def has-ref [
ref: string # The git ref to check
] {
let checkRepo = (do -i { git rev-parse --is-inside-work-tree } | complete)
if not ($checkRepo.stdout =~ 'true') { return false }
# Brackets were required here, or error will occur
let parse = (do -i { git rev-parse --verify -q $ref } | complete)
if ($parse.stdout | is-empty) { false } else { true }
}
export def hr-line [
width?: int = 90,
--color(-c): string = 'g',
--blank-line(-b),
--with-arrow(-a),
--color(-c): string = 'g',
] {
# Create a line by repeating the unit with specified times
def build-line [