agentui-wc 0.1.60 → 0.1.62

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/AGENTS.md CHANGED
@@ -1954,7 +1954,7 @@ dist/
1954
1954
  ├── agentui.css # Combined CSS (90 KB)
1955
1955
  ├── agentui.d.ts # TypeScript definitions
1956
1956
  ├── routes/ # Route Bundles (Modern)
1957
- │ ├── shell.js # App Shell (Navbar, Theme, Bus) - 5 KB
1957
+ │ ├── shell.js # App Shell (Navbar, Theme, Bus) - 13 KB raw / 5 KB gzip
1958
1958
  │ ├── home.js # Home route components
1959
1959
  │ ├── chunk-*.js # Shared dependencies (deduplicated)
1960
1960
  │ ├── route-deps.json # Auto-generated page dependencies
@@ -2080,7 +2080,7 @@ For Modern performance, use the **App Shell** pattern. Load the critical shell f
2080
2080
 
2081
2081
  | Bundle | Content | Size (gzip) |
2082
2082
  |--------|---------|-------------|
2083
- | `shell.js` | Navbar, Theme, EventBus, Toasts | ~5 KB |
2083
+ | `shell.js` | Navbar, Theme, EventBus, Toasts | ~5 KB gzip |
2084
2084
  | `home.js` | Landing page components | ~2 KB |
2085
2085
  | `forms.js` | (Example) Input, Button, Checkbox | ~7 KB |
2086
2086
 
@@ -2092,7 +2092,7 @@ For Modern performance, use the **App Shell** pattern. Load the critical shell f
2092
2092
  ---
2093
2093
 
2094
2094
  ## Performance Metrics
2095
- - **Bundle size:** 173 KB full / ~20 KB initial shell (gzipped: 60 KB / ~20 KB)
2095
+ - **Bundle size:** 173 KB full / ~20 KB initial shell (gzipped: 60 KB total / ~20 KB initial)
2096
2096
  - **Lighthouse:** 100% Performance, 100% Accessibility, 100% SEO, 100% Best Practices
2097
2097
  - **EventBus:** 111M ops/sec (LightBus emitSync)
2098
2098
  - **Virtual List:** Handles 10K+ items at 60fps
package/README.md CHANGED
@@ -75,7 +75,7 @@ AgentUI is built on four ideas:
75
75
  | **Bundle** | 60KB gzipped (JS+CSS), all 50 components | Tree-shake to ~20KB, then add deps |
76
76
  | **Performance** | Lighthouse 100/100/100/100 ([verify](https://pagespeed.web.dev/analysis?url=https://giuseppescottolavina.github.io/AgentUI/demo/)) | Varies |
77
77
  | **Dependencies** | Zero. Forever. | npm audit anxiety |
78
- | **Tests** | 1300+ tests, 0 failures, isolated runner | Coverage varies |
78
+ | **Tests** | 1300+ tests (unit + E2E), 0 unit failures | Coverage varies |
79
79
  | **Memory** | Managed listeners (AbortController), zero leaks verified | Framework-dependent |
80
80
  | **Security** | Every component XSS-audited, CSP-compatible, no `eval()` | Trust your deps |
81
81
  | **Stability** | W3C Web Components — no migration treadmill | React 16→17→18→19... |
@@ -117,13 +117,13 @@ AgentUI is in **alpha** (v0.1.x). Here's an honest look at where we are:
117
117
  - ARIA roles, keyboard navigation, and 48px minimum touch targets
118
118
 
119
119
  **Performance**
120
- - 60KB total gzipped (48KB JS + 13KB CSS) — includes all 50 components
120
+ - 60KB total gzipped (47KB JS + 13KB CSS) — includes all 50 components
121
121
  - Route-based lazy loading with Speculation Rules API prefetching
122
122
  - Lighthouse 100/100/100/100 on demo site ([verify it yourself](https://pagespeed.web.dev/analysis?url=https://giuseppescottolavina.github.io/AgentUI/demo/))
123
123
  - 500 component DOM instantiation in <8ms, 500 updates in <3ms
124
124
 
125
125
  **Engineering**
126
- - 1300+ isolated tests, zero failures, across 99 test files
126
+ - 1300+ tests (868 unit + E2E), zero unit failures, across 99 test files
127
127
  - Every component XSS-audited — `escapeHTML()` on all user-facing content
128
128
  - Zero runtime dependencies — zero supply chain risk
129
129
  - Managed event listeners via AbortController — verified zero memory leaks
@@ -137,15 +137,33 @@ AgentUI is in **alpha** (v0.1.x). Here's an honest look at where we are:
137
137
 
138
138
  > 💡 **Long-term maintainability by design** — AgentUI is built on W3C Web Components, a browser standard — not a framework. There's no migration from v16 to v17. No breaking Hooks rewrite. No Composition API pivot. `querySelector` has worked the same since 1998 and will work the same in 2030. Zero dependencies means zero `npm audit` surprises, zero abandoned transitive packages, and zero "waiting for library X to support framework Y."
139
139
 
140
- ### What's missing (and we know it)
141
- - Larger community testing and feedback
142
- - More complex data patterns (autocomplete, tree view, rich text)
143
- - Accessibility audit by a11y experts
144
- - Agent workflow benchmarks vs. other frameworks
145
- - Formal agent feedback studies
140
+ ### Roadmap Designed, Ready to Build
146
141
 
147
- **This list is not a roadmap it's an invitation.**
148
- These are problems we'd love to solve *together*.
142
+ The foundation (50 components, agent API, build system) is solid. Here's what's next — each feature is architecturally planned and waiting for hands to build it:
143
+
144
+ **Phase 1 — Enterprise Essentials**
145
+
146
+ | Feature | What & Why |
147
+ |---------|------------|
148
+ | 🚦 **Router v2** | History API, `/users/:id` params, nested layouts, route guards. The current hash router works for docs sites — enterprise PWAs need real URLs and auth middleware. |
149
+ | 🧠 **Data Query Layer** (`au-query`) | Declarative data fetching with automatic caching, request deduplication, and global interceptors (JWT). Think TanStack Query, but as a web component with `describe()`. |
150
+ | 🌍 **i18n** | Native `<au-t key="...">` with reactive language switching. LightBus already provides the event backbone — the wiring is straightforward. |
151
+
152
+ **Phase 2 — Scale & Power**
153
+
154
+ | Feature | What & Why |
155
+ |---------|------------|
156
+ | ⚡ **Virtual DataTable** | `au-datatable` already handles sorting/filtering. Adding a `virtual` mode (leveraging the existing `au-virtual-list` engine) enables 10K+ row datasets. |
157
+ | 🏗️ **App Shell wrapper** | `au-layout` + `au-drawer` + `au-bottom-nav` already compose into a full app shell (the demo uses this). A convenience `<au-app-shell>` would make this one-liner instead of manual composition. |
158
+ | ⌨️ **Command Palette & Hotkeys** | Global `Ctrl+K` search, configurable shortcuts with conflict resolution. Essential for power-user PWAs competing with native apps. |
159
+
160
+ **Phase 3 — Agent Intelligence**
161
+
162
+ | Feature | What & Why |
163
+ |---------|------------|
164
+ | 🧪 **Auto-Test Generator** | `describe()` already tells agents what every component can do. A CLI that reads schemas and generates baseline tests would eliminate boilerplate and let teams focus on business logic. |
165
+
166
+ > 💡 **Want to accelerate this?** Every feature above has a clear spec and fits the existing architecture. [Start a discussion](https://github.com/GiuseppeScottoLavina/AgentUI/discussions) or open a PR — contributions move the needle fast on a project this focused.
149
167
 
150
168
 
151
169
  ---
package/dist/AGENTS.md CHANGED
@@ -1954,7 +1954,7 @@ dist/
1954
1954
  ├── agentui.css # Combined CSS (90 KB)
1955
1955
  ├── agentui.d.ts # TypeScript definitions
1956
1956
  ├── routes/ # Route Bundles (Modern)
1957
- │ ├── shell.js # App Shell (Navbar, Theme, Bus) - 5 KB
1957
+ │ ├── shell.js # App Shell (Navbar, Theme, Bus) - 13 KB raw / 5 KB gzip
1958
1958
  │ ├── home.js # Home route components
1959
1959
  │ ├── chunk-*.js # Shared dependencies (deduplicated)
1960
1960
  │ ├── route-deps.json # Auto-generated page dependencies
@@ -2080,7 +2080,7 @@ For Modern performance, use the **App Shell** pattern. Load the critical shell f
2080
2080
 
2081
2081
  | Bundle | Content | Size (gzip) |
2082
2082
  |--------|---------|-------------|
2083
- | `shell.js` | Navbar, Theme, EventBus, Toasts | ~5 KB |
2083
+ | `shell.js` | Navbar, Theme, EventBus, Toasts | ~5 KB gzip |
2084
2084
  | `home.js` | Landing page components | ~2 KB |
2085
2085
  | `forms.js` | (Example) Input, Button, Checkbox | ~7 KB |
2086
2086
 
@@ -2092,7 +2092,7 @@ For Modern performance, use the **App Shell** pattern. Load the critical shell f
2092
2092
  ---
2093
2093
 
2094
2094
  ## Performance Metrics
2095
- - **Bundle size:** 173 KB full / ~20 KB initial shell (gzipped: 60 KB / ~20 KB)
2095
+ - **Bundle size:** 173 KB full / ~20 KB initial shell (gzipped: 60 KB total / ~20 KB initial)
2096
2096
  - **Lighthouse:** 100% Performance, 100% Accessibility, 100% SEO, 100% Best Practices
2097
2097
  - **EventBus:** 111M ops/sec (LightBus emitSync)
2098
2098
  - **Virtual List:** Handles 10K+ items at 60fps
package/dist/README.md CHANGED
@@ -75,7 +75,7 @@ AgentUI is built on four ideas:
75
75
  | **Bundle** | 60KB gzipped (JS+CSS), all 50 components | Tree-shake to ~20KB, then add deps |
76
76
  | **Performance** | Lighthouse 100/100/100/100 ([verify](https://pagespeed.web.dev/analysis?url=https://giuseppescottolavina.github.io/AgentUI/demo/)) | Varies |
77
77
  | **Dependencies** | Zero. Forever. | npm audit anxiety |
78
- | **Tests** | 1300+ tests, 0 failures, isolated runner | Coverage varies |
78
+ | **Tests** | 1300+ tests (unit + E2E), 0 unit failures | Coverage varies |
79
79
  | **Memory** | Managed listeners (AbortController), zero leaks verified | Framework-dependent |
80
80
  | **Security** | Every component XSS-audited, CSP-compatible, no `eval()` | Trust your deps |
81
81
  | **Stability** | W3C Web Components — no migration treadmill | React 16→17→18→19... |
@@ -117,13 +117,13 @@ AgentUI is in **alpha** (v0.1.x). Here's an honest look at where we are:
117
117
  - ARIA roles, keyboard navigation, and 48px minimum touch targets
118
118
 
119
119
  **Performance**
120
- - 60KB total gzipped (48KB JS + 13KB CSS) — includes all 50 components
120
+ - 60KB total gzipped (47KB JS + 13KB CSS) — includes all 50 components
121
121
  - Route-based lazy loading with Speculation Rules API prefetching
122
122
  - Lighthouse 100/100/100/100 on demo site ([verify it yourself](https://pagespeed.web.dev/analysis?url=https://giuseppescottolavina.github.io/AgentUI/demo/))
123
123
  - 500 component DOM instantiation in <8ms, 500 updates in <3ms
124
124
 
125
125
  **Engineering**
126
- - 1300+ isolated tests, zero failures, across 99 test files
126
+ - 1300+ tests (868 unit + E2E), zero unit failures, across 99 test files
127
127
  - Every component XSS-audited — `escapeHTML()` on all user-facing content
128
128
  - Zero runtime dependencies — zero supply chain risk
129
129
  - Managed event listeners via AbortController — verified zero memory leaks
@@ -137,15 +137,33 @@ AgentUI is in **alpha** (v0.1.x). Here's an honest look at where we are:
137
137
 
138
138
  > 💡 **Long-term maintainability by design** — AgentUI is built on W3C Web Components, a browser standard — not a framework. There's no migration from v16 to v17. No breaking Hooks rewrite. No Composition API pivot. `querySelector` has worked the same since 1998 and will work the same in 2030. Zero dependencies means zero `npm audit` surprises, zero abandoned transitive packages, and zero "waiting for library X to support framework Y."
139
139
 
140
- ### What's missing (and we know it)
141
- - Larger community testing and feedback
142
- - More complex data patterns (autocomplete, tree view, rich text)
143
- - Accessibility audit by a11y experts
144
- - Agent workflow benchmarks vs. other frameworks
145
- - Formal agent feedback studies
140
+ ### Roadmap Designed, Ready to Build
146
141
 
147
- **This list is not a roadmap it's an invitation.**
148
- These are problems we'd love to solve *together*.
142
+ The foundation (50 components, agent API, build system) is solid. Here's what's next — each feature is architecturally planned and waiting for hands to build it:
143
+
144
+ **Phase 1 — Enterprise Essentials**
145
+
146
+ | Feature | What & Why |
147
+ |---------|------------|
148
+ | 🚦 **Router v2** | History API, `/users/:id` params, nested layouts, route guards. The current hash router works for docs sites — enterprise PWAs need real URLs and auth middleware. |
149
+ | 🧠 **Data Query Layer** (`au-query`) | Declarative data fetching with automatic caching, request deduplication, and global interceptors (JWT). Think TanStack Query, but as a web component with `describe()`. |
150
+ | 🌍 **i18n** | Native `<au-t key="...">` with reactive language switching. LightBus already provides the event backbone — the wiring is straightforward. |
151
+
152
+ **Phase 2 — Scale & Power**
153
+
154
+ | Feature | What & Why |
155
+ |---------|------------|
156
+ | ⚡ **Virtual DataTable** | `au-datatable` already handles sorting/filtering. Adding a `virtual` mode (leveraging the existing `au-virtual-list` engine) enables 10K+ row datasets. |
157
+ | 🏗️ **App Shell wrapper** | `au-layout` + `au-drawer` + `au-bottom-nav` already compose into a full app shell (the demo uses this). A convenience `<au-app-shell>` would make this one-liner instead of manual composition. |
158
+ | ⌨️ **Command Palette & Hotkeys** | Global `Ctrl+K` search, configurable shortcuts with conflict resolution. Essential for power-user PWAs competing with native apps. |
159
+
160
+ **Phase 3 — Agent Intelligence**
161
+
162
+ | Feature | What & Why |
163
+ |---------|------------|
164
+ | 🧪 **Auto-Test Generator** | `describe()` already tells agents what every component can do. A CLI that reads schemas and generates baseline tests would eliminate boilerplate and let teams focus on business logic. |
165
+
166
+ > 💡 **Want to accelerate this?** Every feature above has a clear spec and fits the existing architecture. [Start a discussion](https://github.com/GiuseppeScottoLavina/AgentUI/discussions) or open a PR — contributions move the needle fast on a project this focused.
149
167
 
150
168
 
151
169
  ---
@@ -4,7 +4,7 @@
4
4
  "title": "AgentUI Component Schema",
5
5
  "description": "Machine-readable schema for AI agent component discovery",
6
6
  "version": "0.1.4",
7
- "generatedAt": "2026-02-08T07:13:24.377Z",
7
+ "generatedAt": "2026-02-08T12:16:37.048Z",
8
8
  "componentCount": 50,
9
9
  "components": {
10
10
  "au-card": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentui-wc",
3
- "version": "0.1.60",
3
+ "version": "0.1.62",
4
4
  "type": "module",
5
5
  "description": "AI-First Web Components Framework - 50 Material Design 3 components optimized for AI agents",
6
6
  "main": "dist/agentui.esm.js",