@aiready/pattern-detect 0.9.6 → 0.9.8

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 +5 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -199,13 +199,17 @@ aiready patterns ./src
199
199
  # Context analysis (token costs, fragmentation)
200
200
  aiready context ./src
201
201
 
202
+ # Consistency checking (naming, patterns)
203
+ aiready consistency ./src
204
+
202
205
  # Full codebase analysis
203
206
  aiready scan ./src
204
207
  ```
205
208
 
206
- **Individual packages:**
209
+ **Related packages:**
207
210
  - [**@aiready/cli**](https://www.npmjs.com/package/@aiready/cli) - Unified CLI with all tools
208
211
  - [**@aiready/context-analyzer**](https://www.npmjs.com/package/@aiready/context-analyzer) - Context window cost analysis
212
+ - [**@aiready/consistency**](https://www.npmjs.com/package/@aiready/consistency) - Consistency checking
209
213
 
210
214
  ---
211
215
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiready/pattern-detect",
3
- "version": "0.9.6",
3
+ "version": "0.9.8",
4
4
  "description": "Semantic duplicate pattern detection for AI-generated code - finds similar implementations that waste AI context tokens",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -45,7 +45,7 @@
45
45
  "dependencies": {
46
46
  "commander": "^14.0.0",
47
47
  "chalk": "^5.3.0",
48
- "@aiready/core": "0.7.2"
48
+ "@aiready/core": "0.7.3"
49
49
  },
50
50
  "devDependencies": {
51
51
  "tsup": "^8.3.5",