Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
$ git log --oneline --stat
stars:217
forks:29
updated:2026년 4월 23일 12:26
SKILL.md
Sync local changes (tar + upload) and execute build/test/run on remote servers (appmesh Python SDK).
Complete CLI reference for the appc command
Execute AI-generated Python/Bash/Node.js on remote servers via the appmesh Python SDK.
| name | appmesh-install |
| description | Installation guide for App Mesh — package, Docker, and systemd |
# Ubuntu/Debian
sudo -E apt install appmesh_*.deb
# CentOS/RHEL (CentOS 8: also install libnsl)
sudo yum install appmesh_*.rpm
# SUSE
sudo zypper install appmesh_*.rpm
Use sudo -E to pass environment variables during install.
# Basic
docker run -d --name appmesh laoshanxi/appmesh
# With root (for pip/apt inside container)
docker run -d --name appmesh -e APPMESH_RUN_AS_ROOT=true laoshanxi/appmesh
# Production: persistent data + Docker-in-Docker
docker run -d --name appmesh \
-v /var/run/docker.sock:/var/run/docker.sock \
-v appmesh-work:/opt/appmesh/work \
-p 6060:6060 \
laoshanxi/appmesh
sudo systemctl enable appmesh # auto-start on boot
sudo systemctl start appmesh
sudo systemctl status appmesh
service appmesh start # WSL
Override config at install time. Saved in /opt/appmesh/appmesh.default.
APPMESH_FRESH_INSTALL=Y # ignore existing SSL/config
APPMESH_SECURE_INSTALLATION=Y # generate secure admin password
PROMPT_INSTALL_PATH=/opt # custom install path
APPMESH_DAEMON_EXEC_USER=appmesh # daemon process user
APPMESH_BaseConfig_PosixTimezone="+08"
APPMESH_REST_RestListenPort=6060
Runtime config overrides use the same APPMESH_<Section>_<Key>=VALUE format.
| Path | Description |
|---|---|
/opt/appmesh/config/ | Read-only config (config.yaml, security.yaml) |
/opt/appmesh/work/config/ | Writable config overrides |
/opt/appmesh/work/ | Working data (mount for persistence) |
/opt/appmesh/ssl/ | SSL certificates |
sudo systemctl status appmesh
appc logon -U admin
appc ls
Each GitHub release ships <artifact>.bundle (Sigstore cosign keyless bundle — Rekor inclusion proof included, verifiable offline).
# One-time, on a networked machine — copy ~/.sigstore to the offline host:
cosign initialize
# Offline verification:
cosign verify-blob \
--bundle appmesh_2.2.1_gcc_9_glibc_2.31_x86_64.rpm.bundle \
--certificate-identity-regexp "^https://github.com/<org>/<repo>/.github/workflows/release-linux.yml@refs/.*" \
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
--offline \
appmesh_2.2.1_gcc_9_glibc_2.31_x86_64.rpm