소스 정보
- 저장소
- arm2arm/AstroAgentAssistant
- 최근 소스 활동
- 2026년 8월 26일 12:28
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/arm2arm/AstroAgentAssistant --skill vllm-docker-local-serving명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
S3/MinIO operations: connectivity, transfers, read benchmarks, and matplotlib visualization templates.
Complete guide to the REANA reproducible analytics platform: Dockerized client setup, multi-backend profiles, workflow authoring patterns, S3 dataset workflows, and best practices. Covers dev/prod backends, serial workflows, REANA_WORKSPACE usage, and self-learning from finished workflows.
Complete guide to working with Arepo simulation HDF5 files: structure inspection, unit conversion, radial profiles, slice projections, and dimensionality reduction (UMAP/t-SNE) for clustering analysis.
SKILL.md 표시 중
| name | vllm-docker-local-serving |
| description | Use when running vLLM in Docker on a local GPU host. |
Class: running vllm/vllm-openai containers on a physical GPU box (e.g. AIP ARM64 host, container named per model) and verifying the endpoint is actually usable — including agent use (tool calls). Covers container recreation, port binding, cache persistence, cold-start diagnosis.
docker run -d --name qwen38 --gpus all --ipc host \
-p <host-ip>:8002:8002 \
-v vllm-cache:/root/.cache/vllm \
-v hf-cache:/root/.cache/huggingface \
--entrypoint vllm vllm/vllm-openai:v0.27.1-aarch64 \
serve Qwen/Qwen3.8-27B-FP8 \
--served-model-name qwen3.8-27b \
--host 0.0.0.0 --port 8002 \
--max-model-len 262144 \
--gpu-memory-utilization 0.85 \
--enable-prefix-caching \
--reasoning-parser qwen3 --tool-call-parser qwen3_xml --enable-auto-tool-choice \
--speculative-config '{"method":"dspark","model":"Doopeworld/Qwen3.8-27B-DSpark-vLLM","num_speculative_tokens":7,"draft_sample_method":"probabilistic"}'
Note --entrypoint vllm (image default entrypoint differs) and that DSpark speculative decode needs the separate draft model from HF. The bundled serving-llms-vllm skill is protected from curator patches — keep container-ops lessons here.
-p 127.0.0.1:PORT:PORT = loopback only. External clients get connection refused even though the container is healthy.lo (ip route get <ip> → local ... dev lo), so curl http://<host-ip>:PORT FROM the host tests the loopback bind, not external reachability. An "unreachable" IP may actually be the local host.ss -tln | grep <port>.-p <host-ip>:8002:8002), not 0.0.0.0, to limit exposure.docker rm destroys the container filesystem, including /root/.cache. Consequences:
Fix: mount named volumes for /root/.cache/vllm and /root/.cache/huggingface in the run command. If you must recreate without them, docker cp qwen38:/root/.cache/. /tmp/cache-backup/ before docker rm and restore after.
Loading safetensors checkpoint shards: NN% progress (≈3 min for 27B FP8).Warming up ... Triton kernels, flashinfer.jit: Autotuning process starts, then a long silent stretch (minutes; much longer on cold cache)./health returns 200.Diagnosing the silent stretch (compile vs. hang): docker logs idle + GPU 0% but the EngineCore process at ~100% CPU inside the container = compilation, not deadlock. Poll /health in a background loop (30 s interval, up to ~50 min budget) — foreground 600 s terminals time out mid-warmup and look like failures.
GET /health → 200GET /v1/models → confirm model id + max_model_lenPOST /v1/chat/completions minimal prompt, max_tokens ≥ 50 (reasoning models burn tokens on reasoning content)tools array — confirm the response carries a well-formed tool_calls entry (parser-dependent; e.g. qwen3_xml)