Skip to content

Commit 547ea6a

Browse files
feat: trend analysis
1 parent 33dbb43 commit 547ea6a

File tree

136 files changed

+19326
-2301
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+19326
-2301
lines changed

.detective/config.json

Lines changed: 8 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,22 @@
11
{
22
"scopes": [
3+
"apps/frontend/src/app/features/trend-analysis/components",
4+
"apps/frontend/src/app/features/trend-analysis/models",
5+
"apps/frontend/src/app/features/trend-analysis/stores",
6+
"apps/backend/src/infrastructure",
7+
"apps/backend/src/mcp",
38
"apps/backend/src/model",
49
"apps/backend/src/options",
510
"apps/backend/src/services",
6-
"apps/backend/src/utils",
7-
"apps/backend/src/infrastructure",
8-
"apps/frontend/src/app/features/coupling",
9-
"apps/frontend/src/app/features/hotspot",
10-
"apps/frontend/src/app/features/team-alignment",
11-
"apps/frontend/src/app/shell/about",
12-
"apps/frontend/src/app/shell/filter-tree",
13-
"apps/frontend/src/app/shell/nav",
14-
"apps/frontend/src/app/model",
15-
"apps/frontend/src/app/ui/doughnut",
16-
"apps/frontend/src/app/ui/graph",
17-
"apps/frontend/src/app/ui/limits",
18-
"apps/frontend/src/app/ui/loading",
19-
"apps/frontend/src/app/ui/resizer",
20-
"apps/frontend/src/app/ui/treemap"
21-
],
22-
"groups": [
23-
"apps/backend/src",
24-
"apps/backend",
25-
"apps/frontend/src/app/features",
26-
"apps/frontend/src/app/shell",
27-
"apps/frontend/src/app/ui",
28-
"apps/frontend/src/app",
29-
"apps/frontend/src",
30-
"apps/frontend",
31-
"apps"
11+
"apps/backend/src/utils"
3212
],
13+
"groups": ["apps/backend/src", "apps/backend", "apps"],
3314
"entries": [],
3415
"filter": {
3516
"files": [],
3617
"logs": []
3718
},
19+
"aliases": {},
3820
"teams": {
3921
"example-team-a": ["John Doe", "Jane Doe"],
4022
"example-team-b": ["Max Muster", "Susi Sorglos"]

.detective/hash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
503c63bcf7fab325fc9687a40ad048b2b16ca636, v1.1.6
1+
b9e5325cb15351cf5aff90ddaf542f0ec2f486fd, v1.3.0

.detective/log

Lines changed: 277 additions & 0 deletions
Large diffs are not rendered by default.

.vscode/launch.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "chrome",
9+
"request": "launch",
10+
"name": "Launch Chrome against localhost",
11+
"url": "http://localhost:4300",
12+
"webRoot": "${workspaceFolder}"
13+
}
14+
]
15+
}

apps/backend/package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@
66
"@softarc/detective": "./bin/main.js"
77
},
88
"dependencies": {
9-
"tslib": "^2.0.0"
9+
"@jscpd/core": "^4.0.1",
10+
"@jscpd/tokenizer": "^4.0.1",
11+
"@modelcontextprotocol/sdk": "1.17.3",
12+
"reflect-metadata": "^0.2.2",
13+
"tslib": "^2.0.0",
14+
"zod": "3.25.76",
15+
"zod-to-json-schema": "^3.23.5"
1016
},
1117
"author": "Manfred Steyer",
1218
"license": "MIT",

apps/backend/project.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,8 @@
1212
"options": {
1313
"buildTarget": "backend:build",
1414
"runBuildTargetDependencies": false,
15-
"args": [
16-
"--path",
17-
"/Users/manfredsteyer/projects/public/standalone-example-cli",
18-
"--open",
19-
"false"
20-
]
15+
"inspect": true,
16+
"args": ["--path", "."]
2117
},
2218
"configurations": {
2319
"development": {

0 commit comments

Comments
 (0)