com um clique
scitex-etc
scitex-etc contém 2 skills coletadas de scitex-ai, com cobertura ocupacional por repositório e páginas de detalhe dentro do site.
Skills neste repositório
[WHAT] Media handling for SciTeX — detect file paths in text (render.detect), classify a file by media type (render.classify), and render a file to terminal/chat/markdown (render.show). [WHEN] Scanning tool output for produced figures/data files, deciding how to display a file inline (terminal OSC overlay, AI chat pane, or markdown embed), or mapping a filename extension to a media category. [HOW] `from scitex_etc.media import render` — call `render.detect(text, root_path=...)`, `render.classify(path)`, or `render.show(path, target=...)`.
[WHAT] Miscellaneous SciTeX utilities — wait_key(p) blocks until 'q' pressed (terminates a process), count() prints an incrementing counter forever. [WHEN] Pausing a script until 'q' is typed to cleanly terminate a background process, implementing a simple counter loop with injectable test seams, or needing unbuffered keypress reading. [HOW] `from scitex_etc import wait_key, count` — call `wait_key(p)` to block on a process until 'q', `count(...)` to start an infinite counter.