АДРЕСНЫЙ РЕЖИМ - Batch-2 (Phase A/B): стабилизация LLM-маршрутизации жизненного цикла контрагентов и договоров + актуализация документации

This commit is contained in:
2026-04-08 12:42:02 +03:00
parent eec5ef4fc0
commit 1f9bb886ee
28 changed files with 2281 additions and 128 deletions
+26
View File
@@ -0,0 +1,26 @@
param(
[switch]$SkipPipInstall,
[switch]$InstallGitHooks
)
$ErrorActionPreference = "Stop"
$repoRoot = (Resolve-Path (Join-Path $PSScriptRoot "..")).Path
Set-Location $repoRoot
if (-not $SkipPipInstall) {
py -m pip install --user graphifyy
}
py -m graphify install --platform codex
py -m graphify codex install
if ($InstallGitHooks) {
py -m graphify hook install
}
Write-Host ""
Write-Host "Graphify configured for Codex in $repoRoot"
Write-Host "Use these commands inside Codex:"
Write-Host " `$graphify ."
Write-Host " `$graphify . --update"