- Resolve decisions.md merge conflict (keep both Codex boundary + Ezra/Bezalel entries) - Update .gitignore: protect bare secret files, exclude venvs and nexus-localhost - Add uniwizard tools (mention watcher, adaptive prompt router, self-grader, classifiers) - Add briefings, good-morning reports, production reports - Add evennia world scaffold and training data - Add angband and morrowind MCP servers - Add diagrams, specs, test results, overnight loop scripts - Add twitter archive insights and media metadata - Add wizard workspaces (allegro, nahshon)
1 line
413 B
JavaScript
1 line
413 B
JavaScript
// Test script to demonstrate the usage of the adaptive prompt router function\nconst { adaptivePromptRouter } = require('./AdaptivePromptRouter');\n\nconst task = { complexity: 5 };\nconst identity = 'Timmy';\nconst tools = [{ name: 'Tool 1', description: 'This is tool 1' }, { name: 'Tool 2', description: 'This is tool 2' }];\n\nconst prompt = adaptivePromptRouter(task, identity, tools);\nconsole.log(prompt);
|