Skip to content
Open

Merge #473

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0bde180
feat: Introduce new Lit renderer package with build scripts and a uti…
ramprasadre56 Dec 30, 2025
d7255d5
assets
ramprasadre56 Dec 31, 2025
121d6b2
feat: Add initial Botanist sample application with Lit UI and Python …
ramprasadre56 Dec 31, 2025
9b7bb0d
feat: Add Digital Botanist agent with A2UI integration and client-sid…
ramprasadre56 Dec 31, 2025
5d78d0c
feat: Introduce new agent samples, Lit renderer, and Botanist client …
ramprasadre56 Dec 31, 2025
32485f1
feat: Add botanist Lit sample with custom UI components and introduce…
ramprasadre56 Dec 31, 2025
7a3ef41
feat: Add project dependencies and example application files.
ramprasadre56 Jan 2, 2026
0307c66
feat: Introduce Forest Architect ADK agent and Angular client for mic…
ramprasadre56 Jan 2, 2026
631377b
lanscape architect
ramprasadre56 Jan 2, 2026
58dd9d1
genui
ramprasadre56 Jan 2, 2026
462a749
feat: add new `landscape-architect` Angular application and enable SS…
ramprasadre56 Jan 3, 2026
93f4c61
reflex botanist
ramprasadre56 Jan 5, 2026
370b75d
Merge branch 'google:main' into main
ramprasadre56 Jan 5, 2026
1b64ed3
Merge branch 'main' of https://github.com/ramprasadre56/A2UI
ramprasadre56 Jan 5, 2026
4d1a4a5
html rendereres
ramprasadre56 Jan 5, 2026
ceb13b2
feat: Add `heartyculture_plants.json` containing a comprehensive plan…
ramprasadre56 Jan 5, 2026
a05949b
feat: add HeartyCulture Nursery plant catalogue content, new routes, …
ramprasadre56 Jan 5, 2026
472eac6
Merge upstream changes and resolve uv.lock conflict
ramprasadre56 Jan 12, 2026
b541176
a2a client
ramprasadre56 Jan 13, 2026
0fc28bc
Merge upstream/main and resolve conflicts in renderers/lit/package.json
ramprasadre56 Jan 15, 2026
071d719
feat: Add A2UI Playground and fix A2UI Editor renderer build
ramprasadre56 Jan 16, 2026
2aa9dbf
Implement Template Gallery and Skills feature in A2UI Playground
ramprasadre56 Jan 16, 2026
bff5cd2
feat: add Visual Art skill and SVG shape support to A2UI playground
ramprasadre56 Jan 16, 2026
cd59d2c
feat(playground): Add Labs, Agent Registry, Export App, Device Selector
ramprasadre56 Jan 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
39 changes: 34 additions & 5 deletions renderers/angular/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions renderers/lit/copy-spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import fs from 'fs';
import path from 'path';
import { glob } from 'glob';

const srcDir = path.resolve('../../specification/0.8/json/');
const destDir = path.resolve('src/0.8/schemas/');

if (!fs.existsSync(destDir)) {
fs.mkdirSync(destDir, { recursive: true });
}

const files = await glob('*.json', { cwd: srcDir });

for (const file of files) {
fs.copyFileSync(path.join(srcDir, file), path.join(destDir, file));
console.log(`Copied ${file} to ${destDir}`);
}
91 changes: 90 additions & 1 deletion renderers/lit/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading