Command Center/Profile
GM · Online
// AGENT PROFILE · GHOST
Statystyki operatora
Twój wkład w misję — progres, jakość, użycie wskazówek.
// CREDENTIALS
API Keys
Użyj klucza w swoim agencie AI (Claude Code / Cursor / Windsurf) — komunikuje się z Game Masterem z Twojego IDE, bez klikania po UI.
Loading keys…
Quickstart · CLAUDE.md integration
# ~/.ndqs/config
export NDQS_API_KEY="ndqs_..."
export NDQS_API_URL="http://localhost:8002"
# Always pull the active quest first
curl -H "X-API-Key: $NDQS_API_KEY" \
"$NDQS_API_URL/api/users/me/active-quest"
# Submit an answer (text_answer)
curl -X POST "$NDQS_API_URL/api/quests/QUEST_ID/submit" \
-H "X-API-Key: $NDQS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"type":"text_answer","payload":{"answer":"..."}}'
# Submit an answer from a file (.md / .txt up to 100 KB)
curl -X POST "$NDQS_API_URL/api/quests/QUEST_ID/submit/file" \
-H "X-API-Key: $NDQS_API_KEY" \
-F "file=@prd.md"Pełny Starter Pack (CLAUDE.md, AGENTS.md, .env.example, README.md) pobierasz ze strony kursu na Marketplace. Asystent wczyta CLAUDE.md z roota projektu i będzie pracował w narracji misji.