Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/community_code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ jobs:
- uses: astral-sh/setup-uv@v8.2.0
with:
enable-cache: true
- name: uv sync each agent under agent/adk
- name: uv sync each agent under samples/community
# These samples are runnable apps, not publishable packages (several use a
# flat module layout with no wheel target), so --no-install-project verifies
# that their dependencies resolve and install without building each as a wheel.
run: |
set -euo pipefail
find samples/community/agent/adk -name pyproject.toml -print0 |
find samples/community -name pyproject.toml -not -path "*/.venv/*" -not -path "*/node_modules/*" -print0 |
while IFS= read -r -d '' manifest; do
dir="$(dirname "$manifest")"
echo "::group::uv sync $dir"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ permissions:
env:
RENDERERS_INC: "--include 'renderers/**'"
TOOLS_INC: "--include 'tools/**'"
SAMPLES_INC: "--include 'samples/client/**' --include 'samples/mcp/**'"
SAMPLES_INC: "--include 'samples/client/**'"

jobs:
ci-renderers:
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ samples/client/angular/projects/mcp_calculator/public/mcp_apps_inner_iframe/
.yarn/cache

## Generated files for a2ui-in-mcpapps
samples/mcp/a2ui-in-mcpapps/server/apps/dist
samples/mcp/a2ui-in-mcpapps/server/apps/public
samples/community/mcp/a2ui-in-mcpapps/server/apps/dist
samples/community/mcp/a2ui-in-mcpapps/server/apps/public

# Vite cache
.vite/
Expand Down
4 changes: 0 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
"samples/client/lit/*",
"samples/client/react/*",
"samples/personalized_learning",
"samples/mcp/*",
"samples/mcp/*/client",
"samples/mcp/*/apps/src",
"samples/mcp/a2ui-in-mcpapps/server/apps/*",
"specification/*/eval",
"specification/*/test",
"tools/*",
Expand Down
7 changes: 0 additions & 7 deletions samples/community/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,3 @@ rather than on the monorepo workspace, and the folder carries its own
`orchestrator`) and Lit (`mcp-apps-in-a2ui-sample`, `personalized_learning`)
samples.
- **python** — `uv sync` for each agent under `agent/adk`.

### Not built

`client/angular/projects/mcp_calculator` is excluded from the build: it imports
the renderer's internal v0.8 source (`Renderer` from `@a2ui/angular`'s
`src/v0_8`), which the published package does not expose. Building it standalone
would require vendoring the renderer source.
71 changes: 0 additions & 71 deletions samples/community/client/angular/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,77 +93,6 @@
"defaultConfiguration": "development"
}
}
},
"mcp_calculator": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss",
"skipTests": true
}
},
"root": "projects/mcp_calculator",
"sourceRoot": "projects/mcp_calculator/src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular/build:application",
"options": {
"outputPath": "projects/mcp_calculator/dist",
"browser": "projects/mcp_calculator/src/main.ts",
"tsConfig": "projects/mcp_calculator/tsconfig.app.json",
"preserveSymlinks": true,
"inlineStyleLanguage": "scss",
"assets": [
{
"glob": "**/*",
"input": "projects/mcp_calculator/public"
}
],
"styles": ["projects/mcp_calculator/src/styles.scss"],
"server": "projects/mcp_calculator/src/main.server.ts",
"outputMode": "server",
"ssr": {
"entry": "projects/mcp_calculator/src/server.ts"
}
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "1.5MB",
"maximumError": "2.5MB"
},
{
"type": "anyComponentStyle",
"maximumWarning": "4kB",
"maximumError": "8kB"
}
],
"outputHashing": "all"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular/build:dev-server",
"configurations": {
"production": {
"buildTarget": "mcp_calculator:build:production"
},
"development": {
"buildTarget": "mcp_calculator:build:development"
}
},
"defaultConfiguration": "development"
}
}
}
},
"cli": {
Expand Down
38 changes: 0 additions & 38 deletions samples/community/client/angular/projects/mcp_calculator/README.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading