docs(flows): DoD obligatorio con user-facing surface + abrir issues 0100-0103 (taxonomia, frontmatter migration, dev_console, work dashboard)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-17 00:07:04 +02:00
commit d010a03b44
4 changed files with 369 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
add_imgui_app(app_hub_launcher
main.cpp
)
target_include_directories(app_hub_launcher PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
# fn_table_viz: provides data_table::render(), viz_render, TQL engine, Lua, LLM.
# Guard keeps the app compilable in builds where vendor/lua is absent.
if(TARGET fn_table_viz)
target_link_libraries(app_hub_launcher PRIVATE fn_table_viz)
endif()
if(WIN32)
set_target_properties(app_hub_launcher PROPERTIES WIN32_EXECUTABLE TRUE)
endif()