condukt 0.1.0 → 0.2.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.
Files changed (59) hide show
  1. package/README.md +159 -0
  2. package/dist/bridge/bridge.d.ts.map +1 -1
  3. package/dist/bridge/bridge.js +43 -12
  4. package/dist/bridge/bridge.js.map +1 -1
  5. package/dist/runtimes/copilot/copilot-backend.d.ts +3 -1
  6. package/dist/runtimes/copilot/copilot-backend.d.ts.map +1 -1
  7. package/dist/runtimes/copilot/subprocess-backend.d.ts.map +1 -1
  8. package/dist/runtimes/copilot/subprocess-backend.js +3 -0
  9. package/dist/runtimes/copilot/subprocess-backend.js.map +1 -1
  10. package/dist/src/agent.d.ts.map +1 -1
  11. package/dist/src/agent.js +1 -0
  12. package/dist/src/agent.js.map +1 -1
  13. package/dist/src/events.d.ts +10 -1
  14. package/dist/src/events.d.ts.map +1 -1
  15. package/dist/src/index.d.ts +3 -3
  16. package/dist/src/index.d.ts.map +1 -1
  17. package/dist/src/index.js +2 -1
  18. package/dist/src/index.js.map +1 -1
  19. package/dist/src/scheduler.d.ts +3 -1
  20. package/dist/src/scheduler.d.ts.map +1 -1
  21. package/dist/src/scheduler.js +287 -27
  22. package/dist/src/scheduler.js.map +1 -1
  23. package/dist/src/types.d.ts +17 -1
  24. package/dist/src/types.d.ts.map +1 -1
  25. package/dist/src/types.js.map +1 -1
  26. package/dist/state/reducer.d.ts.map +1 -1
  27. package/dist/state/reducer.js +23 -2
  28. package/dist/state/reducer.js.map +1 -1
  29. package/dist/state/state-runtime.d.ts +1 -0
  30. package/dist/state/state-runtime.d.ts.map +1 -1
  31. package/dist/state/state-runtime.js +3 -0
  32. package/dist/state/state-runtime.js.map +1 -1
  33. package/dist/theme/index.d.ts +7 -0
  34. package/dist/theme/index.d.ts.map +1 -1
  35. package/dist/theme/index.js +4 -3
  36. package/dist/theme/index.js.map +1 -1
  37. package/dist/ui/components/FlowEdge.d.ts.map +1 -1
  38. package/dist/ui/components/FlowEdge.js +34 -12
  39. package/dist/ui/components/FlowEdge.js.map +1 -1
  40. package/dist/ui/components/FlowGraph.d.ts +5 -1
  41. package/dist/ui/components/FlowGraph.d.ts.map +1 -1
  42. package/dist/ui/components/FlowGraph.js +43 -5
  43. package/dist/ui/components/FlowGraph.js.map +1 -1
  44. package/dist/ui/components/FlowStatusBar.d.ts.map +1 -1
  45. package/dist/ui/components/FlowStatusBar.js +11 -1
  46. package/dist/ui/components/FlowStatusBar.js.map +1 -1
  47. package/dist/ui/components/MiniPipeline.d.ts.map +1 -1
  48. package/dist/ui/components/MiniPipeline.js +81 -30
  49. package/dist/ui/components/MiniPipeline.js.map +1 -1
  50. package/dist/ui/components/NodeCard.d.ts.map +1 -1
  51. package/dist/ui/components/NodeCard.js +1 -1
  52. package/dist/ui/components/NodeCard.js.map +1 -1
  53. package/dist/ui/components/node-panel/Output.js +1 -1
  54. package/dist/ui/components/node-panel/types.js +3 -3
  55. package/dist/ui/components/node-panel/types.js.map +1 -1
  56. package/dist/ui/core/components/Button.js +1 -1
  57. package/dist/ui/core/components/Button.js.map +1 -1
  58. package/dist/ui/style.css +624 -0
  59. package/package.json +100 -87
package/package.json CHANGED
@@ -1,87 +1,100 @@
1
- {
2
- "name": "condukt",
3
- "version": "0.1.0",
4
- "description": "Composable AI agent workflow framework — execution, state, orchestration, runtimes, UI",
5
- "license": "MIT",
6
- "repository": {
7
- "type": "git",
8
- "url": "https://github.com/animeshkundu/condukt.git"
9
- },
10
- "keywords": ["pipeline", "workflow", "agent", "ai", "flow", "orchestration", "ui", "dashboard"],
11
- "main": "./dist/src/index.js",
12
- "types": "./dist/src/index.d.ts",
13
- "exports": {
14
- ".": {
15
- "types": "./dist/src/index.d.ts",
16
- "default": "./dist/src/index.js"
17
- },
18
- "./state": {
19
- "types": "./dist/state/index.d.ts",
20
- "default": "./dist/state/index.js"
21
- },
22
- "./bridge": {
23
- "types": "./dist/bridge/index.d.ts",
24
- "default": "./dist/bridge/index.js"
25
- },
26
- "./runtimes/copilot": {
27
- "types": "./dist/runtimes/copilot/index.d.ts",
28
- "default": "./dist/runtimes/copilot/index.js"
29
- },
30
- "./runtimes/mock": {
31
- "types": "./dist/runtimes/mock/index.d.ts",
32
- "default": "./dist/runtimes/mock/index.js"
33
- },
34
- "./ui": {
35
- "types": "./dist/ui/index.d.ts",
36
- "default": "./dist/ui/index.js"
37
- },
38
- "./ui/core": {
39
- "types": "./dist/ui/core/index.d.ts",
40
- "default": "./dist/ui/core/index.js"
41
- },
42
- "./ui/graph": {
43
- "types": "./dist/ui/graph/index.d.ts",
44
- "default": "./dist/ui/graph/index.js"
45
- },
46
- "./theme": {
47
- "types": "./dist/theme/index.d.ts",
48
- "default": "./dist/theme/index.js"
49
- }
50
- },
51
- "files": [
52
- "dist"
53
- ],
54
- "scripts": {
55
- "build": "tsc -p tsconfig.build.json",
56
- "test": "vitest run",
57
- "test:watch": "vitest",
58
- "typecheck": "tsc --noEmit",
59
- "clean": "rm -rf dist"
60
- },
61
- "peerDependencies": {
62
- "@xyflow/react": ">=12",
63
- "react": ">=18"
64
- },
65
- "peerDependenciesMeta": {
66
- "react": {
67
- "optional": true
68
- },
69
- "@xyflow/react": {
70
- "optional": true
71
- }
72
- },
73
- "devDependencies": {
74
- "@testing-library/jest-dom": "^6.9.1",
75
- "@testing-library/react": "^16.3.2",
76
- "@types/node": "^22.15.3",
77
- "@types/react": "^19.1.4",
78
- "@xyflow/react": "^12.10.1",
79
- "clsx": "^2.1.1",
80
- "jsdom": "^28.1.0",
81
- "react": "^19.2.3",
82
- "react-dom": "^19.2.3",
83
- "tailwind-merge": "^3.5.0",
84
- "typescript": "^5.9.3",
85
- "vitest": "^4.0.18"
86
- }
87
- }
1
+ {
2
+ "name": "condukt",
3
+ "version": "0.2.1",
4
+ "description": "Composable AI agent workflow framework — execution, state, orchestration, runtimes, UI",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/animeshkundu/condukt.git"
9
+ },
10
+ "keywords": [
11
+ "pipeline",
12
+ "workflow",
13
+ "agent",
14
+ "ai",
15
+ "flow",
16
+ "orchestration",
17
+ "ui",
18
+ "dashboard"
19
+ ],
20
+ "main": "./dist/src/index.js",
21
+ "types": "./dist/src/index.d.ts",
22
+ "exports": {
23
+ ".": {
24
+ "types": "./dist/src/index.d.ts",
25
+ "default": "./dist/src/index.js"
26
+ },
27
+ "./state": {
28
+ "types": "./dist/state/index.d.ts",
29
+ "default": "./dist/state/index.js"
30
+ },
31
+ "./bridge": {
32
+ "types": "./dist/bridge/index.d.ts",
33
+ "default": "./dist/bridge/index.js"
34
+ },
35
+ "./runtimes/copilot": {
36
+ "types": "./dist/runtimes/copilot/index.d.ts",
37
+ "default": "./dist/runtimes/copilot/index.js"
38
+ },
39
+ "./runtimes/mock": {
40
+ "types": "./dist/runtimes/mock/index.d.ts",
41
+ "default": "./dist/runtimes/mock/index.js"
42
+ },
43
+ "./ui": {
44
+ "types": "./dist/ui/index.d.ts",
45
+ "default": "./dist/ui/index.js"
46
+ },
47
+ "./ui/core": {
48
+ "types": "./dist/ui/core/index.d.ts",
49
+ "default": "./dist/ui/core/index.js"
50
+ },
51
+ "./ui/graph": {
52
+ "types": "./dist/ui/graph/index.d.ts",
53
+ "default": "./dist/ui/graph/index.js"
54
+ },
55
+ "./theme": {
56
+ "types": "./dist/theme/index.d.ts",
57
+ "default": "./dist/theme/index.js"
58
+ },
59
+ "./ui/style.css": "./dist/ui/style.css"
60
+ },
61
+ "files": [
62
+ "dist"
63
+ ],
64
+ "scripts": {
65
+ "build": "tsc -p tsconfig.build.json && node -e \"require('fs').cpSync('node_modules/@xyflow/react/dist/style.css','dist/ui/style.css')\"",
66
+ "test": "vitest run",
67
+ "test:watch": "vitest",
68
+ "typecheck": "tsc --noEmit",
69
+ "clean": "rm -rf dist"
70
+ },
71
+ "peerDependencies": {
72
+ "@xyflow/react": ">=12",
73
+ "react": ">=18"
74
+ },
75
+ "peerDependenciesMeta": {
76
+ "react": {
77
+ "optional": true
78
+ },
79
+ "@xyflow/react": {
80
+ "optional": true
81
+ }
82
+ },
83
+ "devDependencies": {
84
+ "@testing-library/jest-dom": "^6.9.1",
85
+ "@testing-library/react": "^16.3.2",
86
+ "@types/node": "^22.15.3",
87
+ "@types/react": "^19.2.14",
88
+ "@xyflow/react": "^12.10.1",
89
+ "clsx": "^2.1.1",
90
+ "jsdom": "^28.1.0",
91
+ "react": "^19.2.4",
92
+ "react-dom": "^19.2.4",
93
+ "tailwind-merge": "^3.5.0",
94
+ "typescript": "^5.9.3",
95
+ "vitest": "^4.0.18"
96
+ },
97
+ "dependencies": {
98
+ "@testing-library/dom": "^10.4.1"
99
+ }
100
+ }