chore: add patches, new project skills, and utility scripts

This commit is contained in:
2026-04-08 10:14:34 -04:00
parent d28eb0d765
commit bdcca5c376
12 changed files with 259 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
(in-package :org-agent)
(defun economist-route-task (context)
(declare (ignore context))
'(:openrouter))
(defun economist-get-model-for-provider (provider &optional context)
"Returns 100% Free/Subsidized model IDs from OpenRouter. Updated April 2026."
(let ((complexity (ignore-errors (uiop:symbol-call :org-agent.skills.org-skill-router :router-classify-complexity context))))
(case provider
(:openrouter
(case complexity
(:REASONING "meta-llama/llama-3.3-70b-instruct:free") ; High fidelity, zero cost
(:COGNITION "qwen/qwen3.6-plus:free") ; Latest interaction, zero cost
(t "meta-llama/llama-3.2-3b-instruct:free"))) ; Ultra-fast reflex, zero cost
(t nil))))