CLI Reference
scitex-io provides a command-line interface via the scitex-io command.
scitex-io --help-recursive # Show all commands and subcommands
Commands
Category |
Command |
Description |
|---|---|---|
Core I/O |
|
Show all registered save/load formats |
Integration |
|
MCP server management (start, doctor, list-tools) |
Integration |
|
List all Python API functions with signatures |
Utility |
|
Show version information |
Utility |
|
Generate shell completion scripts |
Format Inspection
# Show all registered formats
scitex-io info
# Example output:
# Save formats (24 built-in):
# .csv, .json, .npy, .npz, .pkl, .yaml, ...
# Load formats (29 built-in):
# .csv, .json, .npy, .npz, .pkl, .yaml, ...
API Introspection
scitex-io list-python-apis # List all public functions
scitex-io list-python-apis -v # With signatures
scitex-io list-python-apis -vv # With descriptions
scitex-io list-python-apis -vvv # Full details
Shell Completion
Generate tab-completion scripts for your shell:
# Bash
eval "$(scitex-io shell-completion bash)"
# Zsh
eval "$(scitex-io shell-completion zsh)"
# Fish
scitex-io shell-completion fish | source
To make it permanent, add to your shell profile (e.g., ~/.bashrc).