qodfy 0.2.7 → 0.2.9
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/dist/index.js +5 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
scanProject,
|
|
12
12
|
validScanChecks
|
|
13
13
|
} from "@qodfy/core";
|
|
14
|
-
var CLI_VERSION = "0.2.
|
|
14
|
+
var CLI_VERSION = "0.2.8";
|
|
15
15
|
var DEFAULT_MAX_ISSUES = 5;
|
|
16
16
|
var program = new Command();
|
|
17
17
|
program.name("qodfy").description("Launch readiness scanner for AI-built apps.").version(CLI_VERSION);
|
|
@@ -607,6 +607,10 @@ function getTopPriorities(issues) {
|
|
|
607
607
|
ruleIds: ["internal-route-missing-protection"],
|
|
608
608
|
message: "Protect internal or operational API routes before launch."
|
|
609
609
|
},
|
|
610
|
+
{
|
|
611
|
+
ruleIds: ["admin-route-missing-authorization"],
|
|
612
|
+
message: "Confirm admin/private routes have role or permission checks."
|
|
613
|
+
},
|
|
610
614
|
{
|
|
611
615
|
ruleIds: ["public-form-missing-abuse-protection"],
|
|
612
616
|
message: "Add abuse protection to public form routes."
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qodfy",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.9",
|
|
4
4
|
"description": "Open-source launch readiness scanner for AI-built apps.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"qodfy",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@inquirer/prompts": "^8.4.3",
|
|
53
53
|
"commander": "^14.0.3",
|
|
54
54
|
"picocolors": "^1.1.1",
|
|
55
|
-
"@qodfy/core": "^0.2.
|
|
55
|
+
"@qodfy/core": "^0.2.9"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@types/node": "^25.7.0",
|