src/sdk/claude-plugin/skills/appmesh-remote/SKILL.md
Sync local changes (tar + upload) and execute build/test/run on remote servers (appmesh Python SDK).
npx skillsauth add laoshanxi/app-mesh appmesh-remoteInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Local development + remote execution. All file operations (Read/Edit/Write/Grep/Glob) and Git happen locally using Claude's native tools. Only build/test/run goes remote via tar-based sync + appmesh Python SDK.
pip install appmesh (Python SDK)export APPMESH_HOST=https://192.168.1.100:6060 # App Mesh server URL
export APPMESH_WORKSPACE=/home/dev/myproject # Remote working directory
# Optional:
export APPMESH_PASSWORD=admin123 # Default: admin123
export APPMESH_SSL_VERIFY=false # Default: false
export APPMESH_SYNC_EXCLUDE="*.o,dist/" # Extra sync excludes
python3 .claude/skills/appmesh-remote/remote.py sync-exec "<command>" --timeout <seconds>
Examples:
python3 .claude/skills/appmesh-remote/remote.py sync-exec "cd build && make -j\$(nproc)" --timeout 600
python3 .claude/skills/appmesh-remote/remote.py sync-exec "cd build && make test ARGS=-V" --timeout 600
python3 .claude/skills/appmesh-remote/remote.py sync-exec "python3 -m pytest tests/" --timeout 300
python3 .claude/skills/appmesh-remote/remote.py exec "<command>" --timeout <seconds>
Examples:
python3 .claude/skills/appmesh-remote/remote.py exec "apt-get install -y libboost-dev" --timeout 300
python3 .claude/skills/appmesh-remote/remote.py exec "uname -a && python3 --version"
python3 .claude/skills/appmesh-remote/remote.py exec "mkdir -p build && cd build && cmake .."
python3 .claude/skills/appmesh-remote/remote.py sync
python3 .claude/skills/appmesh-remote/remote.py run-script /tmp/my_script.sh --timeout 300
python3 .claude/skills/appmesh-remote/remote.py deploy <name> "<command>"
python3 .claude/skills/appmesh-remote/remote.py output <app_name>
python3 .claude/skills/appmesh-remote/remote.py cleanup <app_name>
sync-exec (tar sync + remote execute)exec (remote execute, no sync)deploy (tar sync + register service)tools
../../../src/sdk/claude-plugin/skills/appmesh-remote/SKILL.md
devops
Installation guide for App Mesh — package, Docker, and systemd
tools
Complete CLI reference for the appc command
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.