Install
openclaw skills install @plagtech/pordl-creative-writerRoute fiction drafting and long-form creative writing through PORDL's cost-optimized creative mode. Use this skill when the user is writing a novel, short story, screenplay, or game narrative and wants to draft chapters, develop characters, write dialogue, build scenes, or do worldbuilding through an affordable API — or when the user mentions PORDL for writing. Do not trigger for business copywriting, marketing copy, or general chat.
openclaw skills install @plagtech/pordl-creative-writerDraft fiction, develop characters, and build worlds using PORDL's creative routing mode — models selected for prose quality at a fraction of frontier-model cost.
PORDL's creative routing mode selects models optimized for narrative writing rather than reasoning benchmarks, prioritizing:
Built for novelists, short-fiction writers, screenwriters, and game-narrative designers who draft at volume and don't want frontier-model prices on every iteration.
Sign up at https://api.pordl.dev (free tier: 100K credits/month, no card required), then set your key as an environment variable — never paste API keys into chat:
export PORDL_API_KEY="pd_live_your-key-here"
curl -X POST https://api.pordl.dev/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $PORDL_API_KEY" \
-d '{
"model": "auto",
"routing_mode": "creative",
"messages": [
{"role": "system", "content": "You are a skilled fiction writer. Write vivid, immersive prose with strong character voices and sensory detail."},
{"role": "user", "content": "Write the opening scene..."}
],
"temperature": 0.9,
"max_tokens": 2000,
"stream": true
}'
Query https://api.pordl.dev/v1/models for available models; auto with routing_mode: "creative" picks the best prose model for each request.
Flat monthly tiers with a hard cap — draft as much as your allowance covers with no surprise bills. Current tiers at https://api.pordl.dev/pricing.
All requests pass an automated content-safety check; prohibited content is refused. See https://api.pordl.dev/aup.