@pgege/kaboo-react 0.1.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/llms.txt ADDED
@@ -0,0 +1,31 @@
1
+ # kaboo-react
2
+
3
+ > React components + hooks for rendering kaboo multi-agent activity in a CopilotKit app, with batteries-included CopilotKit integrations.
4
+
5
+ kaboo-react renders a live, hierarchical view of agent activity — sub-agent cards, tool calls, streamed tokens, structured outputs, drill-down, and human-in-the-loop interrupts — inside a CopilotKit chat. Activity rides the AG-UI run stream (as `ACTIVITY_SNAPSHOT` events); there is no separate endpoint. It ships two barrels (`kaboo-react`, `@pgege/kaboo-react/copilotkit`) and a `@pgege/kaboo-react/styles.css` stylesheet.
6
+
7
+ ## Docs
8
+
9
+ - [Home](https://gl-pgege.github.io/kaboo-react/)
10
+ - [Getting started](https://gl-pgege.github.io/kaboo-react/getting-started/)
11
+ - [Theming](https://gl-pgege.github.io/kaboo-react/theming/)
12
+ - [Structured renderers](https://gl-pgege.github.io/kaboo-react/structured-renderers/)
13
+ - [Human-in-the-loop](https://gl-pgege.github.io/kaboo-react/hitl/)
14
+ - [Activity panel](https://gl-pgege.github.io/kaboo-react/activity-panel/)
15
+ - [CopilotKit subpath](https://gl-pgege.github.io/kaboo-react/copilotkit-subpath/)
16
+ - [API inventory](https://gl-pgege.github.io/kaboo-react/api-inventory/)
17
+
18
+ ## API
19
+
20
+ - [API reference](https://gl-pgege.github.io/kaboo-react/api/): auto-generated TypeDoc for both barrels.
21
+ - [API inventory](https://gl-pgege.github.io/kaboo-react/api-inventory/): every public export.
22
+
23
+ ## Examples
24
+
25
+ - [examples/minimal](https://github.com/gl-pgege/kaboo-react/tree/main/examples/minimal): smallest end-to-end wiring.
26
+ - [kaboo-workflows-demo](https://github.com/gl-pgege/kaboo-docs/tree/main/examples/kaboo-workflows-demo): full demo app.
27
+
28
+ ## Related
29
+
30
+ - [kaboo-workflows](https://github.com/gl-pgege/kaboo-workflows): Python multi-agent orchestration.
31
+ - [kaboo-runtime](https://github.com/gl-pgege/kaboo-runtime): CopilotKit runtime persistence/orchestration plugin.
package/package.json ADDED
@@ -0,0 +1,96 @@
1
+ {
2
+ "name": "@pgege/kaboo-react",
3
+ "version": "0.1.0",
4
+ "description": "React components + hooks for rendering kaboo multi-agent activity in a CopilotKit app, with batteries-included CopilotKit integrations.",
5
+ "author": "gl-pgege",
6
+ "license": "MIT",
7
+ "packageManager": "yarn@4.12.0",
8
+ "type": "module",
9
+ "sideEffects": [
10
+ "*.css"
11
+ ],
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/gl-pgege/kaboo-react.git"
15
+ },
16
+ "homepage": "https://gl-pgege.github.io/kaboo-react/",
17
+ "bugs": {
18
+ "url": "https://github.com/gl-pgege/kaboo-react/issues"
19
+ },
20
+ "engines": {
21
+ "node": ">=18"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "keywords": [
27
+ "react",
28
+ "copilotkit",
29
+ "ag-ui",
30
+ "agents",
31
+ "kaboo",
32
+ "strands"
33
+ ],
34
+ "main": "./dist/index.cjs",
35
+ "module": "./dist/index.js",
36
+ "types": "./dist/index.d.ts",
37
+ "exports": {
38
+ ".": {
39
+ "types": "./dist/index.d.ts",
40
+ "import": "./dist/index.js",
41
+ "require": "./dist/index.cjs"
42
+ },
43
+ "./copilotkit": {
44
+ "types": "./dist/copilotkit.d.ts",
45
+ "import": "./dist/copilotkit.js",
46
+ "require": "./dist/copilotkit.cjs"
47
+ },
48
+ "./styles.css": "./dist/styles.css"
49
+ },
50
+ "files": [
51
+ "dist",
52
+ "README.md",
53
+ "LICENSE",
54
+ "CHANGELOG.md",
55
+ "AGENTS.md",
56
+ "llms.txt",
57
+ "llms-full.txt",
58
+ "!docs/**",
59
+ "!examples/**"
60
+ ],
61
+ "scripts": {
62
+ "build": "tsup",
63
+ "dev": "tsup --watch",
64
+ "test": "vitest run",
65
+ "test:watch": "vitest",
66
+ "typecheck": "tsc --noEmit",
67
+ "docs:api": "typedoc && node scripts/generate-inventory.mjs",
68
+ "docs:llms": "node scripts/generate-llms.mjs",
69
+ "docs:verify": "node scripts/verify-docs.mjs",
70
+ "docs": "yarn docs:api && yarn docs:llms",
71
+ "examples:typecheck": "node scripts/typecheck-examples.mjs",
72
+ "prepack": "yarn build && yarn docs:api && yarn docs:llms && yarn docs:verify && yarn examples:typecheck && yarn test"
73
+ },
74
+ "peerDependencies": {
75
+ "@copilotkit/react-core": ">=1.62.0",
76
+ "react": ">=18.0.0",
77
+ "react-dom": ">=18.0.0"
78
+ },
79
+ "devDependencies": {
80
+ "@copilotkit/react-core": "^1.62.0",
81
+ "@testing-library/dom": "^10.4.1",
82
+ "@testing-library/jest-dom": "^6.9.1",
83
+ "@testing-library/react": "^16.3.2",
84
+ "@testing-library/user-event": "^14.6.1",
85
+ "@types/react": "^19.1.8",
86
+ "@types/react-dom": "^19.1.6",
87
+ "jsdom": "^29.1.1",
88
+ "react": "^19.1.0",
89
+ "react-dom": "^19.1.0",
90
+ "tsup": "^8.5.0",
91
+ "typedoc": "^0.28.20",
92
+ "typedoc-plugin-markdown": "^4.12.0",
93
+ "typescript": "^5.8.3",
94
+ "vitest": "^2"
95
+ }
96
+ }