원클릭으로
stx-cli
Command-line interface for SciTeX platform operations — 30+ subcommands with lazy loading. Specialization of scitex-cli-convention.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Command-line interface for SciTeX platform operations — 30+ subcommands with lazy loading. Specialization of scitex-cli-convention.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | stx.cli |
| description | Command-line interface for SciTeX platform operations — 30+ subcommands with lazy loading. Specialization of scitex-cli-convention. |
This skill is a specialization of the canonical SciTeX CLI convention. See:
src/scitex/_skills/general/03_interface_02_cli.md(same repo) for the canonical rules. This file only coversscitex(scitex-python) specific nouns, the 30+ module-CLI layout, and Click lazy-loading.
The stx.cli module provides the unified scitex command-line interface for interacting with SciTeX platform services. It uses lazy loading so startup is instant regardless of how many subcommands exist.
print_help_recursive, group_to_json, format_python_signature# Entry point
scitex --help
scitex --help-recursive # all subcommands
scitex --json # structured JSON output
# Core workflows
scitex config list
scitex cloud clone user/project
scitex scholar bibtex papers.bib
scitex mcp start
scitex audit run ./src
scitex completion install # tab-completion setup
# Programmatic access
from scitex.cli import cli, print_help_recursive, group_to_json
import click
ctx = click.Context(cli)
group_to_json(ctx, cli) # JSON summary of all subcommands