Install
$ agentstack add skill-kumaran-is-claude-code-onboarding-a2ui-angular Open-source listing — not yet scanned by AgentStack. Follow the source repository for install instructions.
Security review
⚠ Flagged1 finding(s); flagged for manual review. · v0.1.0 How review works →
- • Prompt-injection patterns
- • Secret / credential exfiltration
- • Dangerous shell & filesystem operations
- • Untrusted network calls
- • Known-malicious package signatures
- high Dangerous shell/eval execution.
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ● Dynamic code execution Used
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
A2UI Angular Renderer Development Skill
> Tech Stack: Angular 21+, A2UI Protocol v0.8+, TailwindCSS 4.x, daisyUI 5.5.5
What is A2UI?
A2UI (Agent-to-User Interface) is a declarative protocol by Google that lets AI agents describe rich, interactive UIs as structured JSON data instead of generating executable code. The agent sends a JSON blueprint; the client app renders it using its own native components.
Key principle: UI-as-data, not UI-as-code. Agents never generate HTML/JS — they describe intent via a flat component adjacency list. The client validates against an approved component catalog and renders with native framework components.
Iron Law
A2UI PAYLOADS ARE UNTRUSTED. VALIDATE COMPONENT TYPES AGAINST THE CATALOG ALLOWLIST BEFORE RENDERING. NEVER EXECUTE AGENT-PROVIDED CODE.
Every component from an agent must be validated against the client's approved catalog. Rendering any component type the agent sends, or executing agent-provided scripts, exposes the application to XSS, code injection, and data theft. The catalog allowlist is the security boundary.
Conventions & Structure
> For Angular coding conventions, read the angular-spa skill's reference/angular-conventions.md > For A2UI-specific patterns, read reference/a2ui-protocol.md
Documentation Sources
| Source | URL / Tool | Purpose | |--------|-----------|---------| | A2UI Spec | https://a2ui.org/ | Protocol specification, component format | | A2UI GitHub | https://github.com/google/A2UI | Reference implementations, samples | | A2A Extension | https://a2ui.org/a2a-extension/a2ui/v0.8 | A2A protocol integration (Python ADK) | | A2UI Composer | https://a2ui.org/composer/ | Visual widget builder — prototype before wiring | | @a2ui/angular | npm install @a2ui/angular | Official Angular renderer SDK | | Angular v21 | angular-cli MCP | Workspace-aware help, schematics | | daisyUI v5 | https://daisyui.com/llms.txt | Component reference for rendering | | TailwindCSS | Context7 MCP | Utility classes for layout |
Before Writing Any A2UI Code
- Read
reference/a2ui-protocol.md— protocol structure, JSON format, adjacency list, action model - Read
reference/a2ui-renderer-patterns.md— Angular renderer architecture, catalog service, recursive rendering - Read
reference/a2ui-security.md— allowlist enforcement, injection prevention, input sanitization - Read
reference/a2ui-component-catalog.md— standard component types, property schemas, action definitions - Verify Angular APIs — Use
angular-cliMCP or Context7 MCP before using any Angular API
Process
- Understand Requirements — Clarify which A2UI component types to support, agent transport (REST/WebSocket/SSE), and action handling needs
- Define Component Catalog — Create the allowlist of approved A2UI component types with their property schemas
- Build Renderer — Create the recursive
A2UIRendererComponentthat maps A2UI types to Angular/daisyUI components - Implement Agent Service — Create the service that communicates with the AI agent and receives A2UI payloads
- Add Action Handling — Wire user interactions (clicks, form submits) back to the agent as A2UI actions
- Enable Streaming — Support progressive rendering via SSE or WebSocket for real-time UI updates
- Write Tests — Unit tests for catalog validation, renderer component, and action dispatch
- Verify Build — Run
ng buildto ensure no compilation errors
Reference Files
Detailed patterns are in reference/:
A2UI Protocol
a2ui-protocol.md— Protocol specification, JSON format, adjacency list structure, message types, userActiona2ui-protocol-advanced.md— Action model, streaming (JSONL/SSE/WebSocket/REST/A2A), A2A integration, versioninga2ui-security.md— Allowlist enforcement, injection prevention, untrusted payload handlinga2ui-component-catalog.md— Layout (Row, Column) + Display (Text, Image, Icon, Divider) + Interactive (Button, TextField, Checkbox, DateTimeInput) component schemasa2ui-component-containers.md— Container types (Card, Modal, Tabs, List), extended catalog (ChoicePicker, Slider, AudioPlayer, Video), how to add new typesa2ui-functions.md— Full functions reference: validation (required, regex, email), formatting (formatCurrency, formatDate, pluralize), logical (and, or, not), navigation (openUrl) —A2UIFunctionServiceimplementation
Angular Implementation
a2ui-renderer-patterns.md— Architecture overview, file structure, TypeScript models, catalog service, sanitizer service, renderer key patternsa2ui-renderer-template.md— Full A2UIRendererComponent implementation (all 12 @case branches, computed signals, action dispatch)a2ui-chat-template.md— Chat page component, streaming variant (SSE + JSONL), wire format reference with JSON examplesa2ui-renderer-services.md— Official@a2ui/angularSDK setup (A2uiRendererService, SurfaceComponent, A2UIRENDERERCONFIG), A2UIAgentService (REST + SSE), unit test templatea2ui-production-architecture.md— Production stack, Domain DSL, Custom Catalog patterns (BoundProperty, BasicCatalogBase, FunctionImplementation), Charts/Dashboard, Testing patterns, Observability metricsa2ui-client-integration.md—agUiResourceservice pattern,registerHandlers, widget template, demo-only vs production action handler warning, rate limits (surfaces/session, actions/sec, payload size)
Anti-Patterns — What to Avoid
// ❌ FORBIDDEN: Rendering arbitrary component types from agent
@switch (comp.type) {
@default {
// XSS vector!
}
}
// ✅ REQUIRED: Validate against catalog, skip unknown types
@switch (comp.type) {
@default {
}
}
// ❌ FORBIDDEN: Executing agent-provided code
eval(comp.properties['script']);
new Function(comp.properties['handler'])();
// ✅ REQUIRED: Declarative action dispatch (v0.8 format)
onAction(comp: A2UIComponent): void {
const action = comp['action'] as { name: string; context?: Array };
if (!action?.name) return;
this.actionTriggered.emit({ name: action.name, context: action.context ?? [] });
}
// ❌ FORBIDDEN: Deeply nested JSON tree from agent
{ "children": [{ "children": [{ "children": [...] }] }] }
// ✅ REQUIRED: surfaceUpdate with components as array, root field (A2UI v0.8 protocol)
{
"surfaceUpdate": {
"surfaceId": "main",
"components": [
{ "id": "root", "component": { "type": "Column", "children": {"explicitList": ["btn-1"]} } },
{ "id": "btn-1", "component": { "type": "Button", "primary": true, "action": {"name": "submit"} } }
],
"root": "root"
}
}
// ✅ REQUIRED: userAction — 5th message type, client → agent
{
"userAction": {
"name": "book_hotel",
"surfaceId": "main",
"sourceComponentId": "btn-book",
"timestamp": "2026-03-10T12:00:00Z",
"context": { "hotelId": "H-456" }
}
}
Error Handling
- If agent returns an unknown component type → skip it silently (log warning), render remaining components
- If agent payload is malformed JSON → show error state to user, log full error
- If agent connection drops mid-stream → render what was received so far, show reconnect option
- If action dispatch fails → show error toast, do NOT silently swallow
Common Commands
# Generate A2UI feature module
mkdir -p src/app/features/a2ui-chat/{components,services,models}
# Run tests
npx ng test --watch=false
# Build
npx ng build
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: kumaran-is
- Source: kumaran-is/claude-code-onboarding
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.