ワンクリックで
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