Skip to content

Commit d89b3c9

Browse files
committed
docs: update version to 2.0.0-beta.7 and add detailed prompt/rules documentation
- Update version to 2.0.0-beta.7 in package.json, pyproject.toml, README.md - Add audit rules and prompt templates to core features in README - Remove 'custom rules' from roadmap (now implemented) - Add comprehensive documentation for audit rules configuration - Add complete system prompt examples and architecture explanation - Document all built-in rule sets (OWASP Top 10, Code Quality, Performance) - Document all built-in prompt templates with full content - Add prompt composition structure diagram
1 parent d84f407 commit d89b3c9

File tree

4 files changed

+440
-4
lines changed

4 files changed

+440
-4
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<div align="center">
1010

11-
[![Version](https://img.shields.io/badge/version-2.0.0--beta.6-blue.svg)](https://github.com/lintsinghua/DeepAudit/releases)
11+
[![Version](https://img.shields.io/badge/version-2.0.0--beta.7-blue.svg)](https://github.com/lintsinghua/DeepAudit/releases)
1212
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
1313
[![React](https://img.shields.io/badge/React-18-61dafb.svg)](https://reactjs.org/)
1414
[![TypeScript](https://img.shields.io/badge/TypeScript-5.7-3178c6.svg)](https://www.typescriptlang.org/)
@@ -115,6 +115,8 @@ docker-compose up -d
115115
- **即时分析** — 代码片段秒级分析,10+ 编程语言全覆盖
116116
- **智能审计** — Bug、安全、性能、风格、可维护性五维检测
117117
- **可解释分析** — What-Why-How 模式,精准定位 + 修复建议
118+
- **自定义规则** — 内置 OWASP Top 10 等规则集,支持自定义审计规则
119+
- **提示词管理** — 可视化管理审计提示词模板,支持中英文双语
118120
- **可视化报告** — 质量仪表盘、趋势分析、PDF/JSON 导出
119121
- **灵活配置** — 浏览器运行时配置,无需重启服务
120122

@@ -135,7 +137,6 @@ docker-compose up -d
135137
- **多 Agent 协作** — 多智能体架构,模拟真实的安全团队工作流程
136138
- **自动生成补丁** — 光说哪里有问题不够,还得能自动生成能用的修复代码
137139
- **混合分析** — AI 分析完再用传统 SAST 工具验证一遍,两边互相补充,减少误报漏报
138-
- **自定义规则** — 支持用配置文件定义自己团队的编码规范
139140
- **跨文件分析** — 做代码知识图谱,理解模块间的调用关系
140141
- **多仓库支持** — 除Github/GitLab以外,更新支持Gitea等更多平台以及自建仓库
141142

backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "deepaudit-backend"
3-
version = "0.1.0"
3+
version = "2.0.0-beta.7"
44
description = "DeepAudit Backend API"
55
requires-python = ">=3.13"
66
dependencies = [

0 commit comments

Comments
 (0)