feat: tabla apps en registry — modelo, parser, indexer y CLI

Agrega soporte completo para indexar aplicaciones del directorio apps/.
Cada app tiene un descriptor app.md con frontmatter YAML que el indexer
recoge automaticamente. Incluye migracion 004, modelo App, ParseAppMD,
ValidateApp, store CRUD con FTS5, y soporte en fn list/search/show.
Crea descriptores app.md para docker_tui, pipeline_launcher y metabase_registry.
This commit is contained in:
2026-03-29 00:13:57 +01:00
parent 95959f713c
commit f570e783fe
11 changed files with 465 additions and 6 deletions
+28
View File
@@ -0,0 +1,28 @@
---
name: docker_tui
lang: go
domain: infra
description: "TUI interactiva para gestion de contenedores, imagenes, volumenes y redes Docker."
tags: [docker, tui, bubbletea, containers]
uses_functions:
- docker_pull_image_go_infra
- docker_list_containers_go_infra
- docker_remove_container_go_infra
- docker_stop_container_go_infra
- docker_start_container_go_infra
- docker_list_images_go_infra
- docker_remove_image_go_infra
- docker_remove_network_go_infra
- docker_create_network_go_infra
- docker_inspect_container_go_infra
- docker_run_container_go_infra
- docker_container_logs_go_infra
uses_types: []
framework: bubbletea
entry_point: "main.go"
dir_path: "apps/docker_tui"
---
## Notas
Aplicacion TUI con pestanas para contenedores, imagenes, volumenes, redes y compose. Construida con Bubble Tea (Charmbracelet).