ARCHITECT 0327df5277 TZZR CLI v0.1.0 - Herramienta de gestión sistema TZZR
- Comandos: search, list, tree, copy, info, add, grupos, stats
- Conexión SSH a HST (72.62.2.84)
- Estructura autoreferenciada (sin cat/subcat)
- Grupos válidos: hst, spe, vsn, vue, flg

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 15:07:26 +00:00

TZZR CLI

Herramienta de línea de comandos para gestionar el sistema TZZR.

Instalación

cd /home/architect/captain-claude/apps/tzzr-cli
pip install -e .

Uso

Buscar hashtags

tzzr search "tecnología"
tzzr search "HST" --limit=100

Listar hashtags

tzzr list                          # Lista todos
tzzr list --grupo=hst              # Filtrar por grupo
tzzr list -g hst -l 50             # Con límite
tzzr list --offset=20 --limit=20   # Paginación

Ver árbol jerárquico

tzzr tree --root=HST001
tzzr tree -r HST001

Copiar h_maestro al clipboard

tzzr copy HST001

Ver información de un hashtag

tzzr info HST001
tzzr info HST001 --children    # Incluir hijos directos

Crear nuevo hashtag

tzzr add --ref=HST100 --nombre="Nuevo Tag" --grupo=hst
tzzr add -r HST100 -n "Nuevo Tag" -g hst -p HST001  # Con padre

Ver grupos disponibles

tzzr grupos

Ver estadísticas

tzzr stats

Configuración

Variables de entorno para la conexión a la base de datos:

export TZZR_DB_HOST=72.62.2.84
export TZZR_DB_PORT=5432
export TZZR_DB_NAME=hst_images
export TZZR_DB_USER=directus
export TZZR_DB_PASSWORD=directus_hst_2024

Desarrollo

# Instalar en modo desarrollo
pip install -e .

# Ejecutar directamente
python -m tzzr.cli search "test"
Description
CLI para gestión del sistema TZZR - búsqueda y gestión de hashtags
Readme 35 KiB
Languages
Python 100%