What problem does it solve? Standalone services like daily crons, monitors, and multi-model arenas cannot reuse the Hermes OAuth session because Nous access tokens expire in ~15 minutes and refresh tokens are single-use and rotating, so calling the refresh endpoint from your own code revokes the entire shared session. This Skill provides the correct integration path: minting a dedicated long-lived agent key, discovering exact served model names, and handling reasoning-model response quirks. ## Core Features & Use Cases - Auth done right: Explains the single-use rotating refresh-token trap and directs you to mint a static agent key in the Nous Portal instead of borrowing nous_auth.json. - Model discovery and request shape: Includes a script to probe /v1/models with an agent key and filter by family, plus the OpenAI-compatible chat-completions request pattern for ~265 models across anthropic/, openai/, google/, deepseek/, and x-ai/. - Reasoning-model robustness: Handles empty content fields by falling back to the reasoning field and sizing max_tokens generously for thinking models. - Use Case: Build a daily stock-trading arena where four models (Opus, GPT-5, Gemini, DeepSeek) each receive identical prompts through one Nous subscription, decide trades via a two-stage screen-then-decide flow, and persist results to a local DocumentDB store with a JSONL fallback that never loses data. ## Quick Start Ask the agent to help you mint a Nous Portal agent key and write a standalone Python script that calls the Nous inference API with a chosen model on a daily schedule.