
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
dsh-code-reviewer
Advanced tools
代码审查技能插件 | Code Review Skill Plugin
为 DeepSeek Harness 提供专业的代码审查能力,支持审查 git diff、GitHub/GitLab PR、暂存更改或任何语言的变更集。
cd E:\DeepSeek_Harness\plugins\dsh-code-reviewer
dsh plugin --profile web add .
dsh plugin --profile web add "github:your-username/dsh-code-reviewer#main"
安装后,技能会自动注入到系统提示中。当用户提到以下关键词时自动触发:
# 审查当前 PR
dsh run code-reviewer -- "审查当前 PR"
# 审查暂存的更改
dsh run code-reviewer -- "审查 git diff --cached"
# Code Review Report
**PR/Diff**: Add user authentication
**Verdict**: Request changes
**Summary**: Found 1 critical security issue and 2 medium correctness bugs
---
## Findings
### [CRITICAL] Security
**File**: `src/auth/login.ts:42`
**Summary**: SQL injection vulnerability in login query
**Why it matters**: Attackers can bypass authentication or extract database contents
**Suggested fix**:
```typescript
// Before (vulnerable)
const query = `SELECT * FROM users WHERE username = '${username}'`
// After (safe)
const query = 'SELECT * FROM users WHERE username = ?'
db.query(query, [username])
## 卸载
```bash
dsh plugin --profile web remove dsh-code-reviewer
MIT License
FAQs
Unknown package
The npm package dsh-code-reviewer receives a total of 26 weekly downloads. As such, dsh-code-reviewer popularity was classified as not popular.
We found that dsh-code-reviewer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.