@aiready/cli 0.13.7 → 0.14.0
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 +10 -10
- package/.turbo/turbo-test.log +32 -32
- package/dist/cli.js +290 -188
- package/dist/cli.mjs +239 -137
- package/package.json +12 -12
- package/packages/core/src/.aiready/aiready-report-20260314-161145.json +230 -0
- package/packages/core/src/.aiready/aiready-report-20260314-161152.json +253 -0
- package/packages/pattern-detect/src/.aiready/aiready-report-20260314-161139.json +230 -0
- package/src/.aiready/aiready-report-20260312-110843.json +28746 -0
- package/src/.aiready/aiready-report-20260312-110955.json +28746 -0
- package/src/cli.ts +15 -0
- package/src/commands/index.ts +1 -0
- package/src/commands/init.ts +97 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiready/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "Unified CLI for AIReady analysis tools",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -11,17 +11,17 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"chalk": "^5.3.0",
|
|
13
13
|
"commander": "^14.0.0",
|
|
14
|
-
"@aiready/
|
|
15
|
-
"@aiready/
|
|
16
|
-
"@aiready/
|
|
17
|
-
"@aiready/
|
|
18
|
-
"@aiready/deps": "0.
|
|
19
|
-
"@aiready/
|
|
20
|
-
"@aiready/
|
|
21
|
-
"@aiready/change-amplification": "0.
|
|
22
|
-
"@aiready/
|
|
23
|
-
"@aiready/
|
|
24
|
-
"@aiready/
|
|
14
|
+
"@aiready/consistency": "0.20.0",
|
|
15
|
+
"@aiready/context-analyzer": "0.21.0",
|
|
16
|
+
"@aiready/agent-grounding": "0.13.0",
|
|
17
|
+
"@aiready/doc-drift": "0.13.0",
|
|
18
|
+
"@aiready/deps": "0.13.0",
|
|
19
|
+
"@aiready/pattern-detect": "0.16.0",
|
|
20
|
+
"@aiready/core": "0.23.0",
|
|
21
|
+
"@aiready/change-amplification": "0.13.0",
|
|
22
|
+
"@aiready/ai-signal-clarity": "0.13.0",
|
|
23
|
+
"@aiready/visualizer": "0.6.0",
|
|
24
|
+
"@aiready/testability": "0.6.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/node": "^24.0.0",
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
{
|
|
2
|
+
"summary": {
|
|
3
|
+
"totalIssues": 0,
|
|
4
|
+
"criticalIssues": 0,
|
|
5
|
+
"majorIssues": 0,
|
|
6
|
+
"totalFiles": 0,
|
|
7
|
+
"toolsRun": [
|
|
8
|
+
"pattern-detect"
|
|
9
|
+
],
|
|
10
|
+
"executionTime": 5,
|
|
11
|
+
"config": {
|
|
12
|
+
"scan": {
|
|
13
|
+
"tools": [
|
|
14
|
+
"patterns"
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"tools": {
|
|
18
|
+
"pattern-detect": {
|
|
19
|
+
"minSimilarity": 0.5,
|
|
20
|
+
"minLines": 6,
|
|
21
|
+
"approx": true,
|
|
22
|
+
"minSharedTokens": 10,
|
|
23
|
+
"maxCandidatesPerBlock": 100,
|
|
24
|
+
"severity": "all"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"toolConfigs": {
|
|
29
|
+
"pattern-detect": {
|
|
30
|
+
"minSimilarity": 0.5,
|
|
31
|
+
"minLines": 6,
|
|
32
|
+
"approx": true,
|
|
33
|
+
"minSharedTokens": 10,
|
|
34
|
+
"maxCandidatesPerBlock": 100,
|
|
35
|
+
"severity": "all"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"pattern-detect": {
|
|
40
|
+
"results": [],
|
|
41
|
+
"summary": {
|
|
42
|
+
"totalFiles": 0,
|
|
43
|
+
"totalIssues": 0,
|
|
44
|
+
"duplicates": [],
|
|
45
|
+
"clusters": [],
|
|
46
|
+
"config": {
|
|
47
|
+
"rootDir": "/Users/pengcao/projects/aiready/packages/cli/packages/core/src",
|
|
48
|
+
"minSimilarity": 0.5,
|
|
49
|
+
"minLines": 6,
|
|
50
|
+
"approx": true,
|
|
51
|
+
"minSharedTokens": 10,
|
|
52
|
+
"maxCandidatesPerBlock": 100,
|
|
53
|
+
"severity": "all"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"metadata": {
|
|
57
|
+
"toolName": "pattern-detect",
|
|
58
|
+
"version": "0.12.5",
|
|
59
|
+
"timestamp": "2026-03-14T05:11:45.606Z",
|
|
60
|
+
"config": {
|
|
61
|
+
"minSimilarity": 0.5,
|
|
62
|
+
"minLines": 6,
|
|
63
|
+
"approx": true,
|
|
64
|
+
"minSharedTokens": 10,
|
|
65
|
+
"maxCandidatesPerBlock": 100,
|
|
66
|
+
"severity": "all",
|
|
67
|
+
"includeTests": false
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"patterns": {
|
|
72
|
+
"results": [],
|
|
73
|
+
"summary": {
|
|
74
|
+
"totalFiles": 0,
|
|
75
|
+
"totalIssues": 0,
|
|
76
|
+
"duplicates": [],
|
|
77
|
+
"clusters": [],
|
|
78
|
+
"config": {
|
|
79
|
+
"rootDir": "/Users/pengcao/projects/aiready/packages/cli/packages/core/src",
|
|
80
|
+
"minSimilarity": 0.5,
|
|
81
|
+
"minLines": 6,
|
|
82
|
+
"approx": true,
|
|
83
|
+
"minSharedTokens": 10,
|
|
84
|
+
"maxCandidatesPerBlock": 100,
|
|
85
|
+
"severity": "all"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"metadata": {
|
|
89
|
+
"toolName": "pattern-detect",
|
|
90
|
+
"version": "0.12.5",
|
|
91
|
+
"timestamp": "2026-03-14T05:11:45.606Z",
|
|
92
|
+
"config": {
|
|
93
|
+
"minSimilarity": 0.5,
|
|
94
|
+
"minLines": 6,
|
|
95
|
+
"approx": true,
|
|
96
|
+
"minSharedTokens": 10,
|
|
97
|
+
"maxCandidatesPerBlock": 100,
|
|
98
|
+
"severity": "all",
|
|
99
|
+
"includeTests": false
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"duplicates": {
|
|
104
|
+
"results": [],
|
|
105
|
+
"summary": {
|
|
106
|
+
"totalFiles": 0,
|
|
107
|
+
"totalIssues": 0,
|
|
108
|
+
"duplicates": [],
|
|
109
|
+
"clusters": [],
|
|
110
|
+
"config": {
|
|
111
|
+
"rootDir": "/Users/pengcao/projects/aiready/packages/cli/packages/core/src",
|
|
112
|
+
"minSimilarity": 0.5,
|
|
113
|
+
"minLines": 6,
|
|
114
|
+
"approx": true,
|
|
115
|
+
"minSharedTokens": 10,
|
|
116
|
+
"maxCandidatesPerBlock": 100,
|
|
117
|
+
"severity": "all"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"metadata": {
|
|
121
|
+
"toolName": "pattern-detect",
|
|
122
|
+
"version": "0.12.5",
|
|
123
|
+
"timestamp": "2026-03-14T05:11:45.606Z",
|
|
124
|
+
"config": {
|
|
125
|
+
"minSimilarity": 0.5,
|
|
126
|
+
"minLines": 6,
|
|
127
|
+
"approx": true,
|
|
128
|
+
"minSharedTokens": 10,
|
|
129
|
+
"maxCandidatesPerBlock": 100,
|
|
130
|
+
"severity": "all",
|
|
131
|
+
"includeTests": false
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"duplication": {
|
|
136
|
+
"results": [],
|
|
137
|
+
"summary": {
|
|
138
|
+
"totalFiles": 0,
|
|
139
|
+
"totalIssues": 0,
|
|
140
|
+
"duplicates": [],
|
|
141
|
+
"clusters": [],
|
|
142
|
+
"config": {
|
|
143
|
+
"rootDir": "/Users/pengcao/projects/aiready/packages/cli/packages/core/src",
|
|
144
|
+
"minSimilarity": 0.5,
|
|
145
|
+
"minLines": 6,
|
|
146
|
+
"approx": true,
|
|
147
|
+
"minSharedTokens": 10,
|
|
148
|
+
"maxCandidatesPerBlock": 100,
|
|
149
|
+
"severity": "all"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"metadata": {
|
|
153
|
+
"toolName": "pattern-detect",
|
|
154
|
+
"version": "0.12.5",
|
|
155
|
+
"timestamp": "2026-03-14T05:11:45.606Z",
|
|
156
|
+
"config": {
|
|
157
|
+
"minSimilarity": 0.5,
|
|
158
|
+
"minLines": 6,
|
|
159
|
+
"approx": true,
|
|
160
|
+
"minSharedTokens": 10,
|
|
161
|
+
"maxCandidatesPerBlock": 100,
|
|
162
|
+
"severity": "all",
|
|
163
|
+
"includeTests": false
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"patternDetect": {
|
|
168
|
+
"results": [],
|
|
169
|
+
"summary": {
|
|
170
|
+
"totalFiles": 0,
|
|
171
|
+
"totalIssues": 0,
|
|
172
|
+
"duplicates": [],
|
|
173
|
+
"clusters": [],
|
|
174
|
+
"config": {
|
|
175
|
+
"rootDir": "/Users/pengcao/projects/aiready/packages/cli/packages/core/src",
|
|
176
|
+
"minSimilarity": 0.5,
|
|
177
|
+
"minLines": 6,
|
|
178
|
+
"approx": true,
|
|
179
|
+
"minSharedTokens": 10,
|
|
180
|
+
"maxCandidatesPerBlock": 100,
|
|
181
|
+
"severity": "all"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"metadata": {
|
|
185
|
+
"toolName": "pattern-detect",
|
|
186
|
+
"version": "0.12.5",
|
|
187
|
+
"timestamp": "2026-03-14T05:11:45.606Z",
|
|
188
|
+
"config": {
|
|
189
|
+
"minSimilarity": 0.5,
|
|
190
|
+
"minLines": 6,
|
|
191
|
+
"approx": true,
|
|
192
|
+
"minSharedTokens": 10,
|
|
193
|
+
"maxCandidatesPerBlock": 100,
|
|
194
|
+
"severity": "all",
|
|
195
|
+
"includeTests": false
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"results": [],
|
|
200
|
+
"scoring": {
|
|
201
|
+
"overall": 100,
|
|
202
|
+
"rating": "Excellent",
|
|
203
|
+
"timestamp": "2026-03-14T05:11:45.608Z",
|
|
204
|
+
"toolsUsed": [
|
|
205
|
+
"pattern-detect"
|
|
206
|
+
],
|
|
207
|
+
"breakdown": [
|
|
208
|
+
{
|
|
209
|
+
"toolName": "pattern-detect",
|
|
210
|
+
"score": 100,
|
|
211
|
+
"rawMetrics": {
|
|
212
|
+
"totalDuplicates": 0,
|
|
213
|
+
"totalTokenCost": 0,
|
|
214
|
+
"highImpactDuplicates": 0,
|
|
215
|
+
"totalFilesAnalyzed": 0
|
|
216
|
+
},
|
|
217
|
+
"factors": [],
|
|
218
|
+
"recommendations": []
|
|
219
|
+
}
|
|
220
|
+
],
|
|
221
|
+
"calculation": {
|
|
222
|
+
"formula": "[(100 × 22)] / 22 = 100",
|
|
223
|
+
"weights": {
|
|
224
|
+
"pattern-detect": 22
|
|
225
|
+
},
|
|
226
|
+
"normalized": "[(100 × 22)] / 22 = 100"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"repository": {}
|
|
230
|
+
}
|
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
{
|
|
2
|
+
"summary": {
|
|
3
|
+
"totalIssues": 0,
|
|
4
|
+
"criticalIssues": 0,
|
|
5
|
+
"majorIssues": 0,
|
|
6
|
+
"totalFiles": 0,
|
|
7
|
+
"toolsRun": [
|
|
8
|
+
"pattern-detect"
|
|
9
|
+
],
|
|
10
|
+
"executionTime": 5,
|
|
11
|
+
"config": {
|
|
12
|
+
"scan": {
|
|
13
|
+
"tools": [
|
|
14
|
+
"patterns"
|
|
15
|
+
],
|
|
16
|
+
"include": [
|
|
17
|
+
"**/*.ts"
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
"tools": {
|
|
21
|
+
"pattern-detect": {
|
|
22
|
+
"minSimilarity": 0.5,
|
|
23
|
+
"minLines": 6,
|
|
24
|
+
"approx": true,
|
|
25
|
+
"minSharedTokens": 10,
|
|
26
|
+
"maxCandidatesPerBlock": 100,
|
|
27
|
+
"severity": "all"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"toolConfigs": {
|
|
32
|
+
"pattern-detect": {
|
|
33
|
+
"minSimilarity": 0.5,
|
|
34
|
+
"minLines": 6,
|
|
35
|
+
"approx": true,
|
|
36
|
+
"minSharedTokens": 10,
|
|
37
|
+
"maxCandidatesPerBlock": 100,
|
|
38
|
+
"severity": "all"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"pattern-detect": {
|
|
43
|
+
"results": [],
|
|
44
|
+
"summary": {
|
|
45
|
+
"totalFiles": 0,
|
|
46
|
+
"totalIssues": 0,
|
|
47
|
+
"duplicates": [],
|
|
48
|
+
"clusters": [],
|
|
49
|
+
"config": {
|
|
50
|
+
"rootDir": "/Users/pengcao/projects/aiready/packages/cli/packages/core/src",
|
|
51
|
+
"minSimilarity": 0.5,
|
|
52
|
+
"minLines": 6,
|
|
53
|
+
"approx": true,
|
|
54
|
+
"minSharedTokens": 10,
|
|
55
|
+
"maxCandidatesPerBlock": 100,
|
|
56
|
+
"severity": "all"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"metadata": {
|
|
60
|
+
"toolName": "pattern-detect",
|
|
61
|
+
"version": "0.12.5",
|
|
62
|
+
"timestamp": "2026-03-14T05:11:52.041Z",
|
|
63
|
+
"config": {
|
|
64
|
+
"include": [
|
|
65
|
+
"**/*.ts"
|
|
66
|
+
],
|
|
67
|
+
"minSimilarity": 0.5,
|
|
68
|
+
"minLines": 6,
|
|
69
|
+
"approx": true,
|
|
70
|
+
"minSharedTokens": 10,
|
|
71
|
+
"maxCandidatesPerBlock": 100,
|
|
72
|
+
"severity": "all",
|
|
73
|
+
"includeTests": false
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"patterns": {
|
|
78
|
+
"results": [],
|
|
79
|
+
"summary": {
|
|
80
|
+
"totalFiles": 0,
|
|
81
|
+
"totalIssues": 0,
|
|
82
|
+
"duplicates": [],
|
|
83
|
+
"clusters": [],
|
|
84
|
+
"config": {
|
|
85
|
+
"rootDir": "/Users/pengcao/projects/aiready/packages/cli/packages/core/src",
|
|
86
|
+
"minSimilarity": 0.5,
|
|
87
|
+
"minLines": 6,
|
|
88
|
+
"approx": true,
|
|
89
|
+
"minSharedTokens": 10,
|
|
90
|
+
"maxCandidatesPerBlock": 100,
|
|
91
|
+
"severity": "all"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"metadata": {
|
|
95
|
+
"toolName": "pattern-detect",
|
|
96
|
+
"version": "0.12.5",
|
|
97
|
+
"timestamp": "2026-03-14T05:11:52.041Z",
|
|
98
|
+
"config": {
|
|
99
|
+
"include": [
|
|
100
|
+
"**/*.ts"
|
|
101
|
+
],
|
|
102
|
+
"minSimilarity": 0.5,
|
|
103
|
+
"minLines": 6,
|
|
104
|
+
"approx": true,
|
|
105
|
+
"minSharedTokens": 10,
|
|
106
|
+
"maxCandidatesPerBlock": 100,
|
|
107
|
+
"severity": "all",
|
|
108
|
+
"includeTests": false
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"duplicates": {
|
|
113
|
+
"results": [],
|
|
114
|
+
"summary": {
|
|
115
|
+
"totalFiles": 0,
|
|
116
|
+
"totalIssues": 0,
|
|
117
|
+
"duplicates": [],
|
|
118
|
+
"clusters": [],
|
|
119
|
+
"config": {
|
|
120
|
+
"rootDir": "/Users/pengcao/projects/aiready/packages/cli/packages/core/src",
|
|
121
|
+
"minSimilarity": 0.5,
|
|
122
|
+
"minLines": 6,
|
|
123
|
+
"approx": true,
|
|
124
|
+
"minSharedTokens": 10,
|
|
125
|
+
"maxCandidatesPerBlock": 100,
|
|
126
|
+
"severity": "all"
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
"metadata": {
|
|
130
|
+
"toolName": "pattern-detect",
|
|
131
|
+
"version": "0.12.5",
|
|
132
|
+
"timestamp": "2026-03-14T05:11:52.041Z",
|
|
133
|
+
"config": {
|
|
134
|
+
"include": [
|
|
135
|
+
"**/*.ts"
|
|
136
|
+
],
|
|
137
|
+
"minSimilarity": 0.5,
|
|
138
|
+
"minLines": 6,
|
|
139
|
+
"approx": true,
|
|
140
|
+
"minSharedTokens": 10,
|
|
141
|
+
"maxCandidatesPerBlock": 100,
|
|
142
|
+
"severity": "all",
|
|
143
|
+
"includeTests": false
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"duplication": {
|
|
148
|
+
"results": [],
|
|
149
|
+
"summary": {
|
|
150
|
+
"totalFiles": 0,
|
|
151
|
+
"totalIssues": 0,
|
|
152
|
+
"duplicates": [],
|
|
153
|
+
"clusters": [],
|
|
154
|
+
"config": {
|
|
155
|
+
"rootDir": "/Users/pengcao/projects/aiready/packages/cli/packages/core/src",
|
|
156
|
+
"minSimilarity": 0.5,
|
|
157
|
+
"minLines": 6,
|
|
158
|
+
"approx": true,
|
|
159
|
+
"minSharedTokens": 10,
|
|
160
|
+
"maxCandidatesPerBlock": 100,
|
|
161
|
+
"severity": "all"
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
"metadata": {
|
|
165
|
+
"toolName": "pattern-detect",
|
|
166
|
+
"version": "0.12.5",
|
|
167
|
+
"timestamp": "2026-03-14T05:11:52.041Z",
|
|
168
|
+
"config": {
|
|
169
|
+
"include": [
|
|
170
|
+
"**/*.ts"
|
|
171
|
+
],
|
|
172
|
+
"minSimilarity": 0.5,
|
|
173
|
+
"minLines": 6,
|
|
174
|
+
"approx": true,
|
|
175
|
+
"minSharedTokens": 10,
|
|
176
|
+
"maxCandidatesPerBlock": 100,
|
|
177
|
+
"severity": "all",
|
|
178
|
+
"includeTests": false
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"patternDetect": {
|
|
183
|
+
"results": [],
|
|
184
|
+
"summary": {
|
|
185
|
+
"totalFiles": 0,
|
|
186
|
+
"totalIssues": 0,
|
|
187
|
+
"duplicates": [],
|
|
188
|
+
"clusters": [],
|
|
189
|
+
"config": {
|
|
190
|
+
"rootDir": "/Users/pengcao/projects/aiready/packages/cli/packages/core/src",
|
|
191
|
+
"minSimilarity": 0.5,
|
|
192
|
+
"minLines": 6,
|
|
193
|
+
"approx": true,
|
|
194
|
+
"minSharedTokens": 10,
|
|
195
|
+
"maxCandidatesPerBlock": 100,
|
|
196
|
+
"severity": "all"
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"metadata": {
|
|
200
|
+
"toolName": "pattern-detect",
|
|
201
|
+
"version": "0.12.5",
|
|
202
|
+
"timestamp": "2026-03-14T05:11:52.041Z",
|
|
203
|
+
"config": {
|
|
204
|
+
"include": [
|
|
205
|
+
"**/*.ts"
|
|
206
|
+
],
|
|
207
|
+
"minSimilarity": 0.5,
|
|
208
|
+
"minLines": 6,
|
|
209
|
+
"approx": true,
|
|
210
|
+
"minSharedTokens": 10,
|
|
211
|
+
"maxCandidatesPerBlock": 100,
|
|
212
|
+
"severity": "all",
|
|
213
|
+
"includeTests": false
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
"results": [],
|
|
218
|
+
"scoring": {
|
|
219
|
+
"overall": 100,
|
|
220
|
+
"rating": "Excellent",
|
|
221
|
+
"timestamp": "2026-03-14T05:11:52.043Z",
|
|
222
|
+
"toolsUsed": [
|
|
223
|
+
"pattern-detect"
|
|
224
|
+
],
|
|
225
|
+
"breakdown": [
|
|
226
|
+
{
|
|
227
|
+
"toolName": "pattern-detect",
|
|
228
|
+
"score": 100,
|
|
229
|
+
"rawMetrics": {
|
|
230
|
+
"totalDuplicates": 0,
|
|
231
|
+
"totalTokenCost": 0,
|
|
232
|
+
"highImpactDuplicates": 0,
|
|
233
|
+
"totalFilesAnalyzed": 0
|
|
234
|
+
},
|
|
235
|
+
"factors": [],
|
|
236
|
+
"recommendations": []
|
|
237
|
+
}
|
|
238
|
+
],
|
|
239
|
+
"calculation": {
|
|
240
|
+
"formula": "[(100 × 22)] / 22 = 100",
|
|
241
|
+
"weights": {
|
|
242
|
+
"pattern-detect": 22
|
|
243
|
+
},
|
|
244
|
+
"normalized": "[(100 × 22)] / 22 = 100"
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
"repository": {
|
|
248
|
+
"url": "https://github.com/caopengau/aiready.git",
|
|
249
|
+
"branch": "main",
|
|
250
|
+
"commit": "d18009e9c1b30c7efd1afef5569b0aca40ccabf5",
|
|
251
|
+
"author": "caopengau@gmail.com"
|
|
252
|
+
}
|
|
253
|
+
}
|