소스 정보
- 저장소
- smallnest/imclaw
- 최근 소스 활동
- 2026년 3월 31일 07:01
- 감지된 SKILL.md 언어
- 영어
- 스타
- 51
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/smallnest/imclaw --skill acp-remote명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | acp-remote |
| description | Connect to remote ACP server and execute commands via imclaw-cli. |
| homepage | https://github.com/smallnest/imclaw |
| metadata | {"clawdbot":{"emoji":"🤖","requires":{"bins":"[Truncated]"}}} |
Connect to a remote ACP (Agent Client Protocol) server and execute commands using imclaw-cli.
Before using this skill, ensure both imclaw-cli and acpx are installed. Run these commands to install them automatically:
# Install acpx (ACP protocol support)
if ! command -v acpx &> /dev/null; then
npm install -g acpx@latest
fi
# Install imclaw-cli
if ! command -v imclaw-cli &> /dev/null; then
curl -fsSL https://raw.githubusercontent.com/smallnest/imclaw/main/scripts/install.sh | bash
fi
npm install -g acpx@latest
From GitHub Releases:
# 1. Detect your platform
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m)
[ "$ARCH" = "x86_64" ] && ARCH="amd64"
[ "$ARCH" = "aarch64" ] && ARCH="arm64"
# 2. Get latest release version
LATEST=$(curl -s https://api.github.com/repos/smallnest/imclaw/releases/latest | grep '"tag_name"' | sed -E 's/.*"([^"]+)".*/\1/')
# 3. Download and extract
curl -sL "https://github.com/smallnest/imclaw/releases/download/${LATEST}/imclaw_${OS}_${ARCH}.tar.gz" | tar xz -C /tmp
# 4. Install to PATH
mkdir -p ~/bin
mv /tmp/imclaw-cli ~/bin/
chmod +x ~/bin/imclaw-cli
# 5. Ensure ~/bin is in PATH
echo 'export PATH="$HOME/bin:$PATH"' >> ~/.bashrc # or ~/.zshrc
imclaw-cli --help
acpx --version
Set the remote server URL and optional auth token:
# Default server (can be omitted if using default)
export IMCLAW_SERVER="ws://your-server:8080/ws"
# Auth token (if server requires authentication)
export IMCLAW_TOKEN="your-secret-token"
Or pass directly via command line.
IMClaw server uses command line flags (no config file needed):
# Start server with default settings
imclaw
# Custom port and auth token
imclaw --port 9000 --token my-secret-token
# Show help
imclaw --help
| Flag | Default | Description |
|---|---|---|
-H, --host | 0.0.0.0 | Server host address |
-p, --port | 8080 | Server port |
--timeout | 30 | Default timeout in seconds |
--token | "" | Authentication token (empty = no auth) |
# Basic usage
imclaw-cli --server ws://your-server:8080/ws -p "Hello"
# With auth token
imclaw-cli --server ws://your-server:8080/ws --token your-token -p "Hello"
# Use specific agent
imclaw-cli --server ws://your-server:8080/ws --agent codex -p "Analyze this code"
# JSON output
imclaw-cli --server ws://your-server:8080/ws --format json -p "List files"
# First message creates session, returns session ID
imclaw-cli --server ws://your-server:8080/ws -p "Read the README.md"
# Continue with same session
imclaw-cli --server ws://your-server:8080/ws --session <session-id> -p "Summarize it"
| Parameter | Description |
|---|---|
--server | WebSocket URL of ACP server (default: ws://localhost:8080/ws) |
--token | Authentication token (if required) |
-p, --prompt | Prompt message (one-shot mode) |
--session | Session ID to continue |
--agent | Agent type: claude, codex, etc. (default: claude) |
--format | Output format: text, json, quiet (default: text) |
--approve-all | Auto-approve all permission requests |
--approve-reads | Auto-approve reads, prompt for writes (default) |
--deny-all | Deny all permission requests |
--allowed-tools | Comma-separated tool names (default: Bash,Read,Write) |
--cwd | Working directory |
--timeout | Max wait time in seconds |
--model | Agent model ID |
imclaw-cli --server ws://remote-server:8080/ws \
--agent claude \
--approve-all \
-p "Run 'df -h' and show disk usage"
imclaw-cli --server ws://remote-server:8080/ws \
--cwd /path/to/project \
-p "Review the main.go file and suggest improvements"
# Create SSH tunnel first
ssh -L 8080:localhost:8080 user@remote-server -N &
# Connect via localhost
imclaw-cli --server ws://localhost:8080/ws -p "Hello from remote"
# Server configured with auth_token
imclaw-cli \
--server wss://secure-server:8080/ws \
--token "your-secret-token" \
-p "Execute analysis task"
For convenience, you can set these environment variables:
# In ~/.bashrc or ~/.zshrc
export IMCLAW_SERVER="ws://your-server:8080/ws"
export IMCLAW_TOKEN="your-token"
Then simply run:
imclaw-cli --server $IMCLAW_SERVER --token $IMCLAW_TOKEN -p "Hello"
--approve-all for non-interactive automation--format json for programmatic consumption--allowed-tools to limit what the agent can do--cwd for file operationsSOC 직업 분류 기준