Install
openclaw skills install @plagtech/pordl-app-setupConnect any OpenAI-compatible application to PORDL as its model backend by setting a custom base URL. Use this skill when the user wants to point a chat UI, coding assistant, or writing tool (Open WebUI, LibreChat, Continue, Cline, Aider, Obsidian AI plugins, or anything built on the OpenAI SDK) at a custom OpenAI-compatible endpoint, or asks how to use PORDL inside an existing app.
openclaw skills install @plagtech/pordl-app-setupPoint any OpenAI-compatible app at PORDL in under five minutes. One key, flat monthly pricing, automatic model routing.
Walk the user through one step at a time and confirm each step succeeded before continuing. Never ask the user to paste their API key into chat — have them enter it directly in the app's settings or set it as an environment variable. If the connection fails, work through the Troubleshooting section in order.
Any app that supports a custom OpenAI endpoint works with PORDL:
https://api.pordl.dev/v1pd_live_ key from https://api.pordl.dev (free tier: 100K credits/month, no card required)auto (PORDL picks the best model per request), or any model from https://api.pordl.dev/v1/modelsSettings → Connections → OpenAI API → set the base URL and key above. Models populate automatically.
Add a custom endpoint in librechat.yaml with baseURL: https://api.pordl.dev/v1 and apiKey: ${PORDL_API_KEY}.
Configure an OpenAI-compatible provider with the base URL above. For coding, routing_mode: "balanced" (the default) sends simple completions to budget models and complex refactors to stronger ones.
from openai import OpenAI
client = OpenAI(api_key="pd_live_...", base_url="https://api.pordl.dev/v1")
/v1/models); 8K–32K is practical for most chat sessions.pd_live_https://api.pordl.dev/v1 (with /v1)auto or a budget model; reduce context size if set very highAll requests pass an automated content-safety check; prohibited content is refused. See https://api.pordl.dev/aup.