@netnodeag/kraftwerk 0.2.0 → 0.3.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.
@@ -0,0 +1,24 @@
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
+ }
@@ -0,0 +1,21 @@
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
+ }
package/package.json CHANGED
@@ -1,23 +1,46 @@
1
1
  {
2
2
  "name": "@netnodeag/kraftwerk",
3
- "version": "0.2.0",
3
+ "version": "0.3.1",
4
4
  "description": "Deterministic workflow-as-code framework: agents (persona + model + tools + harness) run in bounded phases on headless CLI harnesses (claude -p, codex exec, pi); code owns the control flow, envelopes + gates judge the results",
5
- "keywords": ["agents", "workflow", "orchestration", "llm", "claude", "codex", "automation", "cli"],
5
+ "keywords": [
6
+ "agents",
7
+ "workflow",
8
+ "orchestration",
9
+ "llm",
10
+ "claude",
11
+ "codex",
12
+ "automation",
13
+ "cli"
14
+ ],
6
15
  "repository": {
7
16
  "type": "git",
8
17
  "url": "git+https://github.com/NETNODEAG/kraftwerk.git",
9
18
  "directory": "kraftwerk"
10
19
  },
11
20
  "homepage": "https://github.com/NETNODEAG/kraftwerk#readme",
12
- "bugs": { "url": "https://github.com/NETNODEAG/kraftwerk/issues" },
13
- "engines": { "node": ">=20" },
14
- "publishConfig": { "access": "public" },
21
+ "bugs": {
22
+ "url": "https://github.com/NETNODEAG/kraftwerk/issues"
23
+ },
24
+ "engines": {
25
+ "node": ">=20"
26
+ },
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
15
30
  "type": "module",
16
31
  "files": [
17
32
  "bin",
18
33
  "dist",
19
34
  "runner",
20
- "schema"
35
+ "schema",
36
+ "inspector/app",
37
+ "inspector/lib",
38
+ "inspector/next.config.ts",
39
+ "inspector/next-env.d.ts",
40
+ "inspector/tsconfig.json",
41
+ "inspector/package.json",
42
+ "inspector/package-lock.json",
43
+ "inspector/README.md"
21
44
  ],
22
45
  "exports": {
23
46
  ".": {