@aiready/context-analyzer 0.4.1 → 0.4.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.
- package/.turbo/turbo-build.log +7 -7
- package/README.md +9 -14
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @aiready/context-analyzer@0.4.
|
|
3
|
+
> @aiready/context-analyzer@0.4.2 build /Users/pengcao/projects/aiready/packages/context-analyzer
|
|
4
4
|
> tsup src/index.ts src/cli.ts --format cjs,esm --dts
|
|
5
5
|
|
|
6
6
|
[34mCLI[39m Building entry: src/cli.ts, src/index.ts
|
|
@@ -9,15 +9,15 @@
|
|
|
9
9
|
[34mCLI[39m Target: es2020
|
|
10
10
|
[34mCJS[39m Build start
|
|
11
11
|
[34mESM[39m Build start
|
|
12
|
-
[
|
|
13
|
-
[32mCJS[39m [1mdist/cli.js [22m[32m35.91 KB[39m
|
|
14
|
-
[32mCJS[39m ⚡️ Build success in 58ms
|
|
12
|
+
[32mESM[39m [1mdist/cli.mjs [22m[32m15.74 KB[39m
|
|
15
13
|
[32mESM[39m [1mdist/index.mjs [22m[32m164.00 B[39m
|
|
16
14
|
[32mESM[39m [1mdist/chunk-HDFXSEFW.mjs [22m[32m19.11 KB[39m
|
|
17
|
-
[32mESM[39m
|
|
18
|
-
[
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 33ms
|
|
16
|
+
[32mCJS[39m [1mdist/cli.js [22m[32m35.91 KB[39m
|
|
17
|
+
[32mCJS[39m [1mdist/index.js [22m[32m20.26 KB[39m
|
|
18
|
+
[32mCJS[39m ⚡️ Build success in 33ms
|
|
19
19
|
DTS Build start
|
|
20
|
-
DTS ⚡️ Build success in
|
|
20
|
+
DTS ⚡️ Build success in 646ms
|
|
21
21
|
DTS dist/cli.d.ts 20.00 B
|
|
22
22
|
DTS dist/index.d.ts 2.37 KB
|
|
23
23
|
DTS dist/cli.d.mts 20.00 B
|
package/README.md
CHANGED
|
@@ -171,8 +171,8 @@ Create an `aiready.json` or `aiready.config.json` file in your project root:
|
|
|
171
171
|
|
|
172
172
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
173
173
|
|
|
174
|
-
💎
|
|
175
|
-
💼
|
|
174
|
+
💎 Roadmap: Historical trends and guided refactoring (planned)
|
|
175
|
+
💼 Roadmap: CI/CD integration and team benchmarks (planned)
|
|
176
176
|
```
|
|
177
177
|
|
|
178
178
|
### Programmatic API
|
|
@@ -420,20 +420,15 @@ aiready-patterns src # Duplicate pattern detection
|
|
|
420
420
|
✅ All metrics and recommendations
|
|
421
421
|
✅ JSON/HTML export
|
|
422
422
|
|
|
423
|
-
|
|
424
|
-
📈 Historical trend tracking
|
|
425
|
-
📊 Team benchmarks
|
|
426
|
-
🎯 Automated refactoring plans (5/month)
|
|
427
|
-
🔌 Integration API
|
|
423
|
+
## 🚧 Project Status
|
|
428
424
|
|
|
429
|
-
|
|
430
|
-
🔄 CI/CD integration
|
|
431
|
-
💰 AI usage correlation (show $ waste)
|
|
432
|
-
⚙️ Custom rules engine
|
|
433
|
-
👥 Team analytics
|
|
434
|
-
🎯 Unlimited refactoring plans
|
|
425
|
+
The SaaS and hosted features are not live yet. Today, this package ships as a CLI/tool-only module focused on local analysis. Future SaaS features will include:
|
|
435
426
|
|
|
436
|
-
|
|
427
|
+
- Historical trend tracking and team benchmarks
|
|
428
|
+
- Automated refactoring plans
|
|
429
|
+
- CI/CD integration and export APIs
|
|
430
|
+
|
|
431
|
+
Follow progress in the monorepo and release notes.
|
|
437
432
|
|
|
438
433
|
## 🤝 Contributing
|
|
439
434
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiready/context-analyzer",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "AI context window cost analysis - detect fragmented code, deep import chains, and expensive context budgets",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|