소스 정보
- 저장소
- 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 coding-agent-troubleshooting명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | coding-agent-troubleshooting |
| description | Use when Claude Code, Codex, or OpenCode fail to connect. |
| version | 1.0.0 |
| author | Hermes Agent |
| license | MIT |
| platforms | ["linux","macos","windows"] |
Diagnose issues when connecting external coding agents to API endpoints. Covers format mismatches, vLLM quirks, smoke testing, and installation problems.
Claude Code requires Anthropic's API format (POST /v1/messages). OpenAI-compatible endpoints (OpenAI API, vLLM, LiteLLM) use POST /v1/chat/completions. They are NOT interchangeable.
Signs: claude commands fail with connection/auth errors even though the endpoint works for other clients.
Fix: Run a proxy like LiteLLM that translates between formats:
pip install litellm
litellm --model openai/<model_name> --host <vllm-endpoint> --port 4000
# Point claude at: ANTHROPIC_BASE_URL=http://127.0.0.1:4000
When vLLM serves a reasoning-capable model, output may go to the reasoning field instead of content:
{
"message": {
"content": null, // ← Claude Code reads this — EMPTY
"reasoning": "Here's a thinking process..." // ← Output goes here
}
}
Signs: Agent connects, responds, but returns empty/no output. The content field is null while reasoning contains text.
Diagnose:
curl -s http://ENDPOINT/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{"model":"MODEL","messages":[{"role":"user","content":"Reply with: TEST_OK"}],"max_tokens":20}' \
| python3 -c "import json,sys; d=json.load(sys.stdin); print(repr(d['choices'][0]['message'].get('content')))"
If output is None, the server misroutes output.
Fix on vLLM:
# Add to vLLM startup args
--disable-reasoning
Global npm install often fails in restricted environments.
Fallback:
npm install -g @anthropic-ai/claude-code --prefix ~/.local
# Binary at: ~/.local/bin/claude
OpenCode requires providers to be configured. opencode models lists available providers:
opencode auth list # check configured providers
opencode providers # manage providers
For custom OpenAI-compatible endpoints:
# Usually via OPENAI_API_BASE / OPENAI_API_KEY env vars
# Or add provider: opencode providers add <name> --url <endpoint> --key <key>
Before deploying any coding agent, run these checks:
# 1. Models endpoint responds
curl -s http://ENDPOINT/v1/models | python3 -c "import json,sys; d=json.load(sys.stdin); print('Models:', [m['id'] for m in d.get('data',[])])"
# 2. Chat completions works AND content field is populated
curl -s http://ENDPOINT/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{"model":"MODEL","messages":[{"role":"user","content":"Reply with: SMOKE_OK"}],"max_tokens":20}' \
| python3 -c "
import json,sys
d=json.load(sys.stdin)
content = d['choices'][0]['message'].get('content','')
if content == 'SMOKE_OK':
print('PASS: endpoint working correctly')
elif content == '' or content is None:
print('FAIL: content field empty — check vLLM reasoning config')
else:
print(f'GOT: {repr(content)}')
"
claude --version # Claude Code
opencode --version # OpenCode
codex --version # Codex (if installed)
| Agent | Best For | Format Needed | Sandbox |
|---|---|---|---|
| Claude Code | Complex refactoring, multi-turn, PR review | Anthropic (/v1/messages) | --dangerously-skip-permissions |
| Codex | One-shot fixes, clean git repos | OpenAI (/v1/chat/completions) | --sandbox workspace-write |
| OpenCode | Provider-agnostic, TUI sessions | OpenAI (/v1/chat/completions) | Manual |
content field.--prefix ~/.local fallback ready.opencode providers to add.