Initial state: - ia_dev was historically referenced as ./ia_dev in docs and integrations, while the vendored module lives under services/ia_dev. - AnythingLLM sync and hook installation had error masking / weak exit signaling. - Proxy layers did not validate proxy path segments, allowing path normalization tricks. Motivation: - Make the IDE-oriented workflow usable (sync -> act -> deploy/preview) with explicit errors. - Reduce security footguns in proxying and script automation. Resolution: - Standardize IA_DEV_ROOT usage and documentation to services/ia_dev. - Add SSH remote data mirroring + optional AnythingLLM ingestion. - Extend AnythingLLM pull sync to support upload-all/prefix and fail on upload errors. - Harden smart-ide-sso-gateway and smart-ide-global-api proxying with safe-path checks and non-leaking error responses. - Improve ia-dev-gateway runner validation and reduce sensitive path leakage. - Add site scaffold tool (Vite/React) with OIDC + chat via sso-gateway -> orchestrator. Root cause: - Historical layout changes (submodule -> vendored tree) and missing central contracts for path resolution. - Missing validation for proxy path traversal patterns. - Overuse of silent fallbacks (|| true, exit 0 on partial failures) in automation scripts. Impacted features: - Project sync: git pull + AnythingLLM sync + remote data mirror ingestion. - Site frontends: SSO gateway proxy and orchestrator intents (rag.query, chat.local). - Agent execution: ia-dev-gateway script runner and SSE output. Code modified: - scripts/remote-data-ssh-sync.sh - scripts/anythingllm-pull-sync/sync.mjs - scripts/install-anythingllm-post-merge-hook.sh - cron/git-pull-project-clones.sh - services/smart-ide-sso-gateway/src/server.ts - services/smart-ide-global-api/src/server.ts - services/smart-ide-orchestrator/src/server.ts - services/ia-dev-gateway/src/server.ts - services/ia_dev/tools/site-generate.sh Documentation modified: - docs/** (architecture, API docs, ia_dev module + integration, scripts) Configurations modified: - config/services.local.env.example - services/*/.env.example Files in deploy modified: - services/ia_dev/deploy/* Files in logs impacted: - logs/ia_dev.log (runtime only) - .logs/* (runtime only) Databases and other sources modified: - None Off-project modifications: - None Files in .smartIde modified: - .smartIde/agents/*.md - services/ia_dev/.smartIde/** Files in .secrets modified: - None New patch version in VERSION: - 0.0.5 CHANGELOG.md updated: - yes
66 lines
3.9 KiB
Markdown
66 lines
3.9 KiB
Markdown
# Schéma `projects/<id>/conf.json` (ia_dev)
|
||
|
||
Ce document est la **copie canonique** dans **smart_ide** du schéma de configuration ia_dev. Le fichier amont peut exister sous **`IA_DEV_ROOT/projects/README.md`** (ex. `services/ia_dev/projects/README.md`) dans un checkout qui suit le dépôt ia_dev seul.
|
||
|
||
Le dépôt **ia_dev** est un **dépôt autonome**. Les paramètres par projet sont dans `projects/<id>/conf.json`. Le **`<id>`** est le nom du répertoire sous `projects/`.
|
||
|
||
**Chemins dans conf.json**
|
||
Les scripts dans `deploy/` déploient les **projets configurés** dans leurs répertoires ; ils ne déploient pas ia_dev.
|
||
|
||
- **Chemins projet / deploy** (`project_path`, `deploy.repository_root`, etc.) : **absolus** ou **relatifs à la racine du monorepo smart_ide**. Résolution : `IA_DEV_ROOT/lib/conf_path_resolve.sh` (ex. `services/ia_dev/lib/conf_path_resolve.sh`) lorsque la conf vit sous `…/projects/<id>/conf.json` ou `…/IA_DEV_ROOT/projects/<id>/conf.json`.
|
||
- **`build_dirs`** : **absolu** ; **relatif au monorepo** si la valeur commence par `../` ; sinon **relatif à la racine Git du projet** (`repository_root`).
|
||
- **`version.package_json_paths`** : **relatif à la racine du dépôt projet** sauf absolu.
|
||
- **Relatif à la racine ia_dev** : `mail.imap_bridge_env`, `git.token_file` → fichiers sous `.secrets/` de ia_dev.
|
||
|
||
## Résolution du projet courant
|
||
|
||
L’**id** est déterminé par (premier match) :
|
||
|
||
1. **Paramètre explicite** : premier argument ou `--project <id>` (`pousse.sh`, etc.) ; variable **`IA_PROJECT_ID`** lorsque les scripts l’exportent.
|
||
2. **MAIL_TO** : adresse « To » du mail comparée à `tickets.authorized_emails.to` dans chaque `conf.json`.
|
||
3. **AI_AGENT_TOKEN** : comparaison avec `projects/<id>/.secrets/<env>/ia_token`.
|
||
|
||
Pas d’autres sources (`IA_PROJECT`, `.ia_project`, etc.).
|
||
|
||
## Règle : `conf.json` en lecture seule pour les agents
|
||
|
||
Les agents ne modifient pas `projects/<id>/conf.json` sans validation humaine explicite (décrire la modification, demander accord).
|
||
|
||
## Table des champs (extrait)
|
||
|
||
| Field | Required | Description |
|
||
|-------|----------|-------------|
|
||
| `id` | no | Identifiant (défaut : nom du répertoire). |
|
||
| `name` | no | Nom lisible. |
|
||
| `project_path` | no | Racine Git du clone pour cron / outillage. |
|
||
| `build_dirs` | no | Répertoires `npm run build` (règles de relatif / absolu ci-dessus). |
|
||
| `deploy.*` | no | Chemins scripts, secrets, orchestrateur — voir tableau complet dans l’historique Git de ce fichier ou `IA_DEV_ROOT/projects/README.md` amont. |
|
||
| `deploy.host_stays_on_test` | no | Comportement `deploy-by-script-to.sh` (branche test vs pprod/prod). |
|
||
| `tickets` | no | URL issues, `authorized_emails` ; le **to** sert à résoudre le projet. |
|
||
| `cron` | no | Extension **smart_ide** : `{ "git_pull": false }` pour désactiver le pull planifié. |
|
||
| `smart_ide` | no | Extension **smart_ide** : `remote_data_access`, `anythingllm_workspace_slug`, `workspace` (`folders` + `settings`, équivalent `.code-workspace` ; y placer `smartIde.activeProjectId`), `preview_urls` (`test`, … URLs pour prévisualisation ex. Carbonyl), etc. |
|
||
|
||
Détail ticketing : `IA_DEV_ROOT/projects/ia_dev/docs/TICKETS_SPOOL_FORMAT.md`.
|
||
|
||
**.secrets à la racine ia_dev** : `token`, `git-issues/agent-loop.env`, `git-issues/imap-bridge.env`.
|
||
|
||
## Exemple minimal
|
||
|
||
```json
|
||
{
|
||
"name": "My App",
|
||
"project_path": "/path/to/project/deploy",
|
||
"build_dirs": ["/path/to/project/deploy/backend", "/path/to/project/deploy/frontend"]
|
||
}
|
||
```
|
||
|
||
## Exemple complet
|
||
|
||
Référence dans un dépôt qui versionne ce projet : `projects/lecoffreio/conf.json` (checkout ia_dev avec projet lecoffreio).
|
||
|
||
## Voir aussi
|
||
|
||
- [projects-directory.md](./projects-directory.md) — rôle de `./projects/` dans **smart_ide**
|
||
- [ia-dev-repository-overview.md](./ia-dev-repository-overview.md) — vue d’ensemble ia_dev
|
||
- [ia-dev-shared-lib.md](./ia-dev-shared-lib.md) — `project_config.sh`
|