qodfy 0.2.8 → 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.
Files changed (2) hide show
  1. package/dist/index.js +4 -0
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -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.8",
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.8"
55
+ "@qodfy/core": "^0.2.9"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@types/node": "^25.7.0",