소스 정보
- 저장소
- 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 workstation-security-audit명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | workstation-security-audit |
| title | Linux workstation security audit for AI/GPU infra |
| description | Read-only audit and hardening for GPU research workstations. |
| author | Arman Khalatyan & Hermi |
| date | 2026-08-06T00:00:00.000Z |
| tags | ["security","audit","ssh","firewall","docker","gpu","hermes-infrastructure"] |
Use when auditing a Linux workstation (DGX, research VM, personal server) running AI agent infrastructure. Enforces two-phase discipline: collect evidence first, harden only after approval.
Golden rule: No writes, no service restarts, no config changes during this phase. All commands are read-only probes.
cat /etc/ssh/sshd_config # main config (note Includes)
for f in /etc/ssh/sshd_config.d/*.conf; do cat "$f"; done # drop-in overrides
ls -la ~/.ssh/authorized_keys && wc -l ~/.ssh/authorized_keys # key count + perms
Focus on: PermitRootLogin, PasswordAuthentication (commented = default yes), UsePAM, KbdInteractiveAuthentication
ss -tlnp # all TCP listeners with PIDs
systemctl list-units --type=service --state=running --no-pager # active daemons
Audit each listener on 0.0.0.0: should it be external? Is it auth'd?
groups $USER # sudo, docker, etc.
ls -la /var/run/docker.sock # docker group = root equiv
cat /etc/sudoers 2>/dev/null; ls /etc/sudoers.d/ # sudo policies
iptables -L -n 2>/dev/null && iptables-save 2>/dev/null # netfilter rules
ufw status 2>/dev/null # UFW state
ss -tlnp | grep 'LISTEN' # confirm all exposed ports
find / -type f \( -perm /6000 \) 2>/dev/null | grep -v '/proc/' | head -50 # setuid/sgid
getcap -r /usr/bin/ /usr/sbin/ 2>/dev/null # file caps
Flag any setuid binary outside /usr or that isn't standard distro.
docker ps --format '{{.Names}} {{.Image}} {{.Status}}' # running containers
docker inspect --format='P={{.HostConfig.Privileged}} CapAdd={{println .HostConfig.CapAdd}} NetMode={{.HostConfig.NetworkMode}} ReadonlyRoot={{.HostConfig.ReadonlyRootfs}}' <container> per container
docker images # image list + tag discipline (:latest = risk)
grep -rn 'api_key\|API_KEY\|password\|secret\|token' ~/.hermes/config.yaml ~/.hermes/.env | grep -v '^#\|^$'
ls -la ~/.hermes/.env # file permissions
find ~ -name '*.env' -o -name '*secret*' -o -name '*token*' 2>/dev/null # surface-level secret files
df -hT /lustre 2>/dev/null # shared mounts
crontab -l 2>/dev/null # user cron jobs
1. Executive risk summary (3-5 sentences)
2. Findings table: Severity | Finding ID | Evidence | Impact
3. Safe remediation order (by breakage risk, ascending)
4. Exact commands/diffs per fix + rollback steps for each
Severity rubric:
| Service | Typical port | Common exposure | Fix |
|---|---|---|---|
| Ollama | 11434 | No auth, exposed on 0.0.0.0 | OLLAMA_HOST=127.0.0.1:11434 systemd override |
| Memory API | custom (8420+) | Network-mapped containers | -p 127.0.0.1:PORT:PORT in docker run |
| Agent gateway | varies | Unauthenticated terminal access | Firewall deny + verify auth before re-opening |
| SSH root login | 22 | PermitRootLogin yes | Drop-in config with PermitRootLogin no |
| Docker socket | N/A (Unix sock) | User in docker group = root equiv | Accept risk or move to rootless-docker |
--force flag so it doesn't prompt mid-enable, test connectivity immediately after..conf files in sshd_config.d/ override main config. Check both before declaring findings.sk-p...qg) but the full value is on disk in plaintext. Check file perms and if other users can read them.