소스 정보
- 저장소
- Szantoi/nexus-dev
- 최근 소스 활동
- 2026년 7월 21일 21:25
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Szantoi/nexus-dev --skill verify명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | verify |
| description | Launch and drive the knowledge-service (DEV, port 3466) to verify changes live. |
From the repo root (NOT knowledge-service/ — the script lives at root scripts/):
cd /c/Users/szant/Documents/Development/nexus-dev
node scripts/dev-start.mjs # DEV server on port 3466
curl http://localhost:3466/health → {"status":"ok",...}.AUTH_MODE=open|required, MCP_AUTH_TOKEN=<master>, MCP_TOKEN_<NAME>=<token> (e.g. MCP_TOKEN_BACKEND).MCP endpoint is JSON-RPC over HTTP POST:
curl -s -X POST http://localhost:3466/mcp -H 'Content-Type: application/json' \
-H 'Authorization: Bearer <token>' \
-d '{"jsonrpc":"2.0","method":"tools/list","id":1}'
# tools/call: {"jsonrpc":"2.0","method":"tools/call","params":{"name":"<tool>","arguments":{...}},"id":2}
REST surface: /api/* (projects, mailbox, epic-router, ...), public: /health, /ready.
cd /c/Users/szant/Documents/Development/nexus-dev
RUNNER_CONFIG_PATH='<path to runner.yaml>' RUNNER_TOKEN=<token> node scripts/runner-start.mjs
/api/mailbox/<terminal>/inbox?status=UNREAD and spawns Codex --model <m> -p per task.claude_bin in runner.yaml at a
stub .cmd that echoes stdin (see scratchpad fake-Codex pattern) — full chain runs, no real session.SPACEOS_ROOT explicitly when starting the server, otherwise mailbox writes land under
a /opt/spaceos-derived path (and note: even with it set, POST inbox has been observed writing
to Development\terminals\ instead of the repo — pre-existing quirk, in backlog).identity.ts/terminalConfig still falls back to /opt/spaceos paths for terminal workdirs on this Windows machine (get_identity returns /opt/spaceos/terminals/<t> with null claudeMd) — pre-existing, don't mistake it for your change's bug.