--- name: discover_git_repos kind: function lang: bash domain: infra version: "1.0.0" purity: impure signature: "discover_git_repos(root_dir: string) -> stdout: newline-separated paths" description: "Encuentra todos los repos git dentro de root_dir. Devuelve paths absolutos (sin /.git) en stdout, uno por linea, ordenados. Incluye el propio root_dir si tiene .git. Excluye node_modules, .venv, cpp/vendor, cpp/build, sources, temp, subrepos e interior de .git." tags: [git, repo, discover, find, infra] uses_functions: [] uses_types: [] returns: [] returns_optional: false error_type: "error_go_core" imports: [] params: - name: root_dir desc: "directorio raiz a escanear (absoluto o relativo); default '.'" output: "paths absolutos newline-separated por stdout, uno por linea, ordenados alfabeticamente; el propio root_dir aparece primero si tiene .git" tested: false tests: [] test_file_path: "" file_path: "bash/functions/infra/discover_git_repos.sh" --- ## Ejemplo ```bash source bash/functions/infra/discover_git_repos.sh # Listar todos los repos bajo fn_registry discover_git_repos $HOME/fn_registry # Contar repos discover_git_repos $HOME/fn_registry | wc -l # Iterar while IFS= read -r repo; do echo "Repo: $repo" done < <(discover_git_repos $HOME/fn_registry) ``` ## Notas Usa `find` con `-mindepth 2` para subdirectorios (el root se comprueba por separado). Los resultados se emiten ordenados alfabeticamente. La funcion es impura porque lee el sistema de archivos. Sale con exit code 1 si `root_dir` no existe.