chore: auto-commit (799 archivos)

- .claude/CLAUDE.md
- .claude/commands/subagentes.md
- .claude/rules/INDEX.md
- .mcp.json
- bash/functions/cybersecurity/analyze_dns.md
- bash/functions/cybersecurity/audit_http_headers.md
- bash/functions/cybersecurity/audit_ssh_config.md
- bash/functions/cybersecurity/check_firewall.md
- bash/functions/cybersecurity/detect_suspicious_users.md
- bash/functions/cybersecurity/encrypt_file.md
- ...

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-14 00:28:20 +02:00
parent 20f72edb5a
commit 47fac22230
805 changed files with 5515 additions and 810 deletions
@@ -7,7 +7,7 @@ version: "1.0.0"
purity: impure
signature: "func ExtractScriptDescription(scriptPath string) string"
description: "Parsea un archivo de script y extrae la primera linea de comentario util como descripcion. Salta shebangs y lineas vacias. Si no encuentra descripcion, usa el nombre del archivo."
tags: [shell, script, description, parse, comment, metadata]
tags: [shell, script, description, parse, comment, metadata, pendiente-usar]
uses_functions: []
uses_types: []
returns: []
+1 -1
View File
@@ -7,7 +7,7 @@ version: "1.0.0"
purity: impure
signature: "func Run(name string, args ...string) core.Result[CmdResult]"
description: "Ejecuta un comando del sistema con timeout de 30 segundos y devuelve el resultado."
tags: [shell, command, process, exec]
tags: [shell, command, process, exec, pendiente-usar]
uses_functions: []
uses_types: [cmd_result_go_shell, result_go_core]
returns: [result_go_core]
+1 -1
View File
@@ -7,7 +7,7 @@ version: "1.0.0"
purity: impure
signature: "func RunPipe(commands ...string) core.Result[CmdResult]"
description: "Encadena multiples comandos con pipe y devuelve el resultado final."
tags: [shell, command, process, pipe]
tags: [shell, command, process, pipe, pendiente-usar]
uses_functions: []
uses_types: [cmd_result_go_shell, result_go_core]
returns: [result_go_core]
+1 -1
View File
@@ -7,7 +7,7 @@ version: "1.0.0"
purity: impure
signature: "func RunShell(command string) core.Result[CmdResult]"
description: "Ejecuta un comando shell interpretado por /bin/sh."
tags: [shell, command, process, exec]
tags: [shell, command, process, exec, pendiente-usar]
uses_functions: []
uses_types: [cmd_result_go_shell, result_go_core]
returns: [result_go_core]
+1 -1
View File
@@ -7,7 +7,7 @@ version: "1.0.0"
purity: impure
signature: "func RunShellTimeout(command string, timeout time.Duration) core.Result[CmdResult]"
description: "Ejecuta un comando shell con timeout configurable."
tags: [shell, command, process, exec, timeout]
tags: [shell, command, process, exec, timeout, pendiente-usar]
uses_functions: []
uses_types: [cmd_result_go_shell, result_go_core]
returns: [result_go_core]
+1 -1
View File
@@ -7,7 +7,7 @@ version: "1.0.0"
purity: pure
signature: "func Which(name string) core.Option[string]"
description: "Busca la ruta de un ejecutable en el PATH del sistema. Devuelve None si no existe."
tags: [shell, path, lookup]
tags: [shell, path, lookup, pendiente-usar]
uses_functions: []
uses_types: [option_go_core]
returns: [option_go_core]