Axiom UI
EN / JA

CLI

CLIはファイルをそのままコピーします。配布されるものはLLMが見たものと同一です。後処理や依存の注入はなく、add 後のコードはあなたのものです。

コマンド

コマンド 効果
axiom-ui list 全コンポーネントと簡単な説明を一覧表示します。
axiom-ui add <name> [--dir <path>] [--force] <name>.tsx をリポジトリにコピーします(デフォルトは ./src/components/)。--force なしでは上書きしません。
axiom-ui mcp MCPサーバーをstdioで起動します。

使用例

# List everything
npx @joinclass/axiom-ui list

# Copy dialog.tsx into ./src/components/
npx @joinclass/axiom-ui add dialog

# Copy into a custom directory
npx @joinclass/axiom-ui add toast --dir ./app/ui

# Overwrite an existing file
npx @joinclass/axiom-ui add button --force