chore: auto-commit (11 archivos)

- CMakeLists.txt
- app.md
- main.cpp
- panels.cpp
- appicon.ico
- autoextract_panel.cpp
- picker_state.cpp
- picker_state.h
- py_subprocess.cpp
- py_subprocess.h
- ...

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-16 16:33:25 +02:00
parent fdd607b570
commit 8357774b86
11 changed files with 1626 additions and 20 deletions
+15 -1
View File
@@ -3,7 +3,7 @@ name: navegator_dashboard
lang: cpp
domain: tools
description: "Cuadro de mandos para gestionar instancias Chrome con remote debugging. Lista navegadores corriendo (visibles + headless), permite lanzar/matar perfiles, inspeccionar pestañas, ejecutar JS, ver peticiones de red. Puente WSL→Windows que centraliza el control que hoy hacemos por scripts dispersos."
tags: [imgui, browser, cdp, dashboard, windows, navegator]
tags: [imgui, browser, cdp, dashboard, windows, navegator, auto-extract, recipes, picker]
uses_functions:
- data_table_cpp_viz
- viz_render_cpp_viz
@@ -17,6 +17,14 @@ uses_functions:
- compute_column_stats_cpp_core
- llm_anthropic_cpp_core
- tql_to_sql_cpp_core
- claude_cli_prompt_py_infra
- cdp_get_ax_tree_py_pipelines
- llm_propose_scraping_schema_py_infra
- cdp_extract_recipe_py_pipelines
- cdp_open_url_and_wait_py_pipelines
- validate_recipe_yaml_py_core
- infer_json_rows_schema_py_core
- cdp_pick_element_js_js_browser
uses_types: []
framework: "imgui"
entry_point: "main.cpp"
@@ -37,6 +45,12 @@ e2e_checks:
cmd: "curl -sf http://127.0.0.1:19333/browsers"
timeout_s: 5
severity: warning
- id: claude_cli_available
cmd: "command -v claude"
severity: warning
- id: python_pipelines_importable
cmd: "python3 -c 'import sys, os; sys.path.insert(0, os.path.join(os.environ[\"FN_REGISTRY_ROOT\"], \"python\", \"functions\", \"pipelines\")); from cdp_extract_recipe import cdp_extract_recipe'"
severity: warning
---
## Proposito