@kernlang/review-python 3.1.1 → 3.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/README.md +3 -0
- package/package.json +12 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
- 2523ee7: KERN 3.0 — security hardening, self-review clean, 68+ review rules
|
|
8
8
|
|
|
9
|
-
- **kern review**:
|
|
9
|
+
- **kern review**: 76+ rules across 10 layers — base, React, Next.js, Vue, Express, security (v1-v4), dead logic, null safety, concept rules, taint tracking
|
|
10
10
|
- **OWASP LLM01**: 10 prompt injection detection rules — indirect injection, output execution, system prompt leakage, RAG poisoning, tool manipulation
|
|
11
11
|
- **Taint tracking**: source-to-sink analysis on KERN IR with cross-file tracking
|
|
12
12
|
- **Suppression engine**: `// kern-ignore` and `// kern-ignore-next-line` directives
|
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# @kernlang/review-python
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@kernlang/review-python)
|
|
4
|
+
[](https://github.com/KERNlang/kern/blob/main/LICENSE)
|
|
5
|
+
|
|
3
6
|
Python concept mapper for kern review — tree-sitter based
|
|
4
7
|
|
|
5
8
|
Part of the [KERN monorepo](https://github.com/KERNlang/kern).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kernlang/review-python",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.3",
|
|
4
4
|
"description": "Python concept mapper for kern review — tree-sitter based",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -8,13 +8,22 @@
|
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"tree-sitter": "^0.25.0",
|
|
10
10
|
"tree-sitter-python": "^0.25.0",
|
|
11
|
-
"@kernlang/core": "3.1.
|
|
12
|
-
"@kernlang/review": "3.1.
|
|
11
|
+
"@kernlang/core": "3.1.3",
|
|
12
|
+
"@kernlang/review": "3.1.3"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"ts-morph": "^27.0.0",
|
|
16
16
|
"typescript": "^5.7.0"
|
|
17
17
|
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"kern",
|
|
20
|
+
"llm",
|
|
21
|
+
"python",
|
|
22
|
+
"review",
|
|
23
|
+
"tree-sitter",
|
|
24
|
+
"static-analysis",
|
|
25
|
+
"ai"
|
|
26
|
+
],
|
|
18
27
|
"exports": {
|
|
19
28
|
".": {
|
|
20
29
|
"types": "./dist/index.d.ts",
|