{ "schema_version": "1.0", "name": "mp-silma-ai-aide", "description": "A Vite and TypeScript Chrome extension popup for Gitea-backed Silma AI aide workflows.", "project_type": "chrome-extension", "language": "typescript", "package_manager": "npm", "entrypoints": { "popup_html": "index.html", "popup_script": "src/main.ts", "state_store": "src/store.ts", "api_client": "src/api.ts", "vite_config": "vite.config.ts", "generated_manifest": "dist/manifest.json" }, "commands": { "install": "npm install", "dev": "npm run dev", "build": "npm run build", "preview": "npm run preview" }, "environment": { "example_file": ".env.example", "local_file": ".env.local", "variables": [ { "name": "VITE_GITEA_BASE_URL", "required": true, "secret": false, "description": "Base URL for the Gitea instance." }, { "name": "VITE_GITEA_TOKEN", "required": true, "secret": true, "description": "Gitea API token used by the popup client." }, { "name": "VITE_GITEA_REPO_OWNER", "required": true, "secret": false, "description": "Owner for the target Gitea repository." }, { "name": "VITE_GITEA_REPO_NAME", "required": true, "secret": false, "description": "Name of the target Gitea repository." } ] }, "generated_paths": [ "dist/", "node_modules/" ], "agent_guidance": "See AGENTS.md for coding and build instructions. Do not edit dist/ directly; rebuild from source instead." }