5f4f1f7508
Añade campos params y output al frontmatter YAML de las 506 funciones del registry. Cada parámetro tiene descripción semántica (qué representa, unidades, rango típico) y cada función describe qué produce su output. Permite a agentes razonar sobre cadenas de composición (ej: prices → log_return → sharpe_ratio) sin leer código.
735 B
735 B
name, kind, lang, domain, version, purity, signature, description, tags, uses_functions, uses_types, returns, returns_optional, error_type, imports, params, output, tested, tests, test_file_path, file_path
| name | kind | lang | domain | version | purity | signature | description | tags | uses_functions | uses_types | returns | returns_optional | error_type | imports | params | output | tested | tests | test_file_path | file_path | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| docker_remove_network | function | go | infra | 1.0.0 | impure | func DockerRemoveNetwork(nameOrID string) error | Elimina una red Docker por nombre o ID. |
|
false | error_go_core |
|
|
nil si se elimino exitosamente, error en caso contrario | false | functions/infra/docker_remove_network.go |
Ejemplo
err := DockerRemoveNetwork("my-app-net")
if err != nil {
log.Fatal(err)
}