@promise-inc/ai-guard 0.1.0 → 0.1.2

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/README.md +7 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -132,6 +132,13 @@ console.log(analysis.totalViolations); // number
132
132
  - **Zero external dependencies** — Only `ts-morph` for AST parsing
133
133
  - **Not a linter** — Focused exclusively on AI-generated code patterns
134
134
 
135
+ ## Also by Promise Inc.
136
+
137
+ | Package | Description |
138
+ |---------|-------------|
139
+ | [`@promise-inc/devlog`](https://www.npmjs.com/package/@promise-inc/devlog) | Logger with automatic context |
140
+ | [`@promise-inc/ui-states`](https://www.npmjs.com/package/@promise-inc/ui-states) | Auto-skeleton from real DOM |
141
+
135
142
  ## License
136
143
 
137
144
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promise-inc/ai-guard",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Detect AI-generated code patterns before commit/push. Not a linter — a guard.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -41,6 +41,7 @@
41
41
  "node": ">=18"
42
42
  },
43
43
  "files": [
44
- "dist"
44
+ "dist",
45
+ "README.md"
45
46
  ]
46
47
  }