@netnodeag/kraftwerk 0.3.1 → 0.4.1
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/README.md +8 -6
- package/dist/cli/kraftwerk.js +2 -2
- package/dist/cli/ui.js +32 -55
- package/dist/inspector/chat/acp.d.ts +2 -0
- package/dist/inspector/chat/acp.js +122 -0
- package/dist/inspector/chat/backend.d.ts +28 -0
- package/dist/inspector/chat/backend.js +1 -0
- package/dist/inspector/chat/types.d.ts +70 -0
- package/dist/inspector/chat/types.js +8 -0
- package/dist/inspector/context.d.ts +5 -0
- package/dist/inspector/context.js +19 -0
- package/dist/inspector/runner.d.ts +13 -0
- package/dist/inspector/runner.js +66 -0
- package/dist/inspector/runs.d.ts +57 -0
- package/dist/inspector/runs.js +240 -0
- package/dist/inspector/server.d.ts +8 -0
- package/dist/inspector/server.js +186 -0
- package/dist/inspector/workflows.d.ts +45 -0
- package/dist/inspector/workflows.js +186 -0
- package/inspector/dist/assets/ibm-plex-mono-latin-400-normal-CvHOgSBP.woff +0 -0
- package/inspector/dist/assets/ibm-plex-mono-latin-400-normal-DMJ8VG8y.woff2 +0 -0
- package/inspector/dist/assets/ibm-plex-mono-latin-500-normal-CB9ihrfo.woff +0 -0
- package/inspector/dist/assets/ibm-plex-mono-latin-500-normal-DSY6xOcd.woff2 +0 -0
- package/inspector/dist/assets/ibm-plex-mono-latin-600-normal-BgSNZQsw.woff2 +0 -0
- package/inspector/dist/assets/ibm-plex-mono-latin-600-normal-DWFSQ4vo.woff +0 -0
- package/inspector/dist/assets/ibm-plex-mono-latin-700-normal-7sUh57Bg.woff2 +0 -0
- package/inspector/dist/assets/ibm-plex-mono-latin-700-normal-CNHXzs6v.woff +0 -0
- package/inspector/dist/assets/ibm-plex-sans-latin-400-normal-CDDApCn2.woff2 +0 -0
- package/inspector/dist/assets/ibm-plex-sans-latin-400-normal-CYLoc0-x.woff +0 -0
- package/inspector/dist/assets/ibm-plex-sans-latin-500-normal-6ng42L7E.woff2 +0 -0
- package/inspector/dist/assets/ibm-plex-sans-latin-500-normal-BgVn5rGT.woff +0 -0
- package/inspector/dist/assets/ibm-plex-sans-latin-600-normal-Cu4Hd6ag.woff +0 -0
- package/inspector/dist/assets/ibm-plex-sans-latin-600-normal-CuJfVYMP.woff2 +0 -0
- package/inspector/dist/assets/ibm-plex-sans-latin-700-normal-Bth3BMcD.woff +0 -0
- package/inspector/dist/assets/ibm-plex-sans-latin-700-normal-Bxkt5Cjx.woff2 +0 -0
- package/inspector/dist/assets/index-BCSWkslF.css +1 -0
- package/inspector/dist/assets/index-D6WuziFQ.js +9 -0
- package/inspector/dist/index.html +24 -0
- package/package.json +7 -10
- package/inspector/README.md +0 -67
- package/inspector/app/api/runs/[id]/file/route.ts +0 -56
- package/inspector/app/api/runs/[id]/route.ts +0 -15
- package/inspector/app/api/runs/[id]/stop/route.ts +0 -15
- package/inspector/app/api/runs/route.ts +0 -9
- package/inspector/app/api/workflows/[slug]/route.ts +0 -11
- package/inspector/app/api/workflows/[slug]/run/route.ts +0 -37
- package/inspector/app/api/workflows/route.ts +0 -8
- package/inspector/app/globals.css +0 -460
- package/inspector/app/layout.tsx +0 -54
- package/inspector/app/page.tsx +0 -16
- package/inspector/app/runs/[id]/page.tsx +0 -6
- package/inspector/app/runs/[id]/run-detail.tsx +0 -343
- package/inspector/app/shared.tsx +0 -81
- package/inspector/app/theme-toggle.tsx +0 -19
- package/inspector/app/workflows/[slug]/page.tsx +0 -6
- package/inspector/app/workflows/[slug]/workflow-view.tsx +0 -271
- package/inspector/app/workflows/page.tsx +0 -43
- package/inspector/lib/runner.ts +0 -78
- package/inspector/lib/runs.ts +0 -313
- package/inspector/lib/workflows.ts +0 -240
- package/inspector/next.config.ts +0 -5
- package/inspector/package-lock.json +0 -982
- package/inspector/package.json +0 -24
- package/inspector/tsconfig.json +0 -21
package/inspector/package.json
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "kraftwerk-inspector",
|
|
3
|
-
"version": "0.1.0",
|
|
4
|
-
"private": true,
|
|
5
|
-
"description": "Web UI to inspect kraftwerk workflow runs: live executions, phase traces, and per-run artifacts",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"dev": "next dev -p 4499",
|
|
8
|
-
"build": "next build",
|
|
9
|
-
"start": "next start -p 4499",
|
|
10
|
-
"typecheck": "tsc --noEmit"
|
|
11
|
-
},
|
|
12
|
-
"dependencies": {
|
|
13
|
-
"next": "^15.5.0",
|
|
14
|
-
"react": "^19.1.0",
|
|
15
|
-
"react-dom": "^19.1.0",
|
|
16
|
-
"yaml": "^2.9.0"
|
|
17
|
-
},
|
|
18
|
-
"devDependencies": {
|
|
19
|
-
"@types/node": "^24.0.0",
|
|
20
|
-
"@types/react": "^19.1.0",
|
|
21
|
-
"@types/react-dom": "^19.1.0",
|
|
22
|
-
"typescript": "^5.9.0"
|
|
23
|
-
}
|
|
24
|
-
}
|
package/inspector/tsconfig.json
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ES2022",
|
|
4
|
-
"lib": ["dom", "dom.iterable", "esnext"],
|
|
5
|
-
"allowJs": true,
|
|
6
|
-
"skipLibCheck": true,
|
|
7
|
-
"strict": true,
|
|
8
|
-
"noEmit": true,
|
|
9
|
-
"esModuleInterop": true,
|
|
10
|
-
"module": "esnext",
|
|
11
|
-
"moduleResolution": "bundler",
|
|
12
|
-
"resolveJsonModule": true,
|
|
13
|
-
"isolatedModules": true,
|
|
14
|
-
"jsx": "preserve",
|
|
15
|
-
"incremental": true,
|
|
16
|
-
"plugins": [{ "name": "next" }],
|
|
17
|
-
"paths": { "@/*": ["./*"] }
|
|
18
|
-
},
|
|
19
|
-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
20
|
-
"exclude": ["node_modules"]
|
|
21
|
-
}
|