@polderlabs/bizar 10.7.1 → 10.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. package/.claude/agents/_shared/AGENT_BASELINE.md +266 -0
  2. package/.claude/agents/_shared/CLAUDE_TOOLS.md +412 -0
  3. package/.claude/agents/_shared/SKILLS.md +109 -0
  4. package/.claude/agents/brand-designer.md +55 -0
  5. package/.claude/agents/exec-assistant.md +34 -0
  6. package/.claude/agents/help-desk.md +44 -0
  7. package/.claude/agents/it-lead.md +53 -0
  8. package/.claude/agents/knowledge-manager.md +49 -0
  9. package/.claude/agents/office-coordinator.md +39 -0
  10. package/.claude/agents/office-greeter.md +53 -0
  11. package/.claude/agents/office-manager.md +287 -0
  12. package/.claude/agents/principal-engineer.md +58 -0
  13. package/.claude/agents/qa-reviewer.md +51 -0
  14. package/.claude/agents/research-analyst.md +53 -0
  15. package/.claude/agents/senior-engineer.md +55 -0
  16. package/.claude/agents/support-tech.md +87 -0
  17. package/.claude/agents/vp-engineering.md +54 -0
  18. package/.claude/commands/audit.md +48 -0
  19. package/.claude/commands/bizar.md +22 -0
  20. package/.claude/commands/cron.md +36 -0
  21. package/.claude/commands/explain.md +17 -0
  22. package/.claude/commands/goal.md +99 -0
  23. package/.claude/commands/init.md +15 -0
  24. package/.claude/commands/learn.md +46 -0
  25. package/.claude/commands/plan.md +35 -0
  26. package/.claude/commands/plow-through.md +50 -0
  27. package/.claude/commands/pr-review.md +49 -0
  28. package/.claude/commands/setup-provider.md +96 -0
  29. package/.claude/commands/spec.md +47 -0
  30. package/.claude/commands/sprint.md +43 -0
  31. package/.claude/commands/tailscale-serve.md +100 -0
  32. package/.claude/commands/team.md +132 -0
  33. package/.claude/commands/test.md +62 -0
  34. package/.claude/commands/validate.md +68 -0
  35. package/.claude/commands/visual-plan.md +24 -0
  36. package/.claude/hooks/README.md +108 -0
  37. package/.claude/hooks/__tests__/pretooluse-editwrite.test.mjs +146 -0
  38. package/.claude/hooks/__tests__/sessionend-recall.test.mjs +256 -0
  39. package/.claude/hooks/__tests__/sessionstart-prime.test.mjs +325 -0
  40. package/.claude/hooks/__tests__/thinking-route.test.mjs +319 -0
  41. package/.claude/hooks/auto-instinct.sh +81 -0
  42. package/.claude/hooks/learning-extract.mjs +92 -0
  43. package/.claude/hooks/post-merge-audit.sh +93 -0
  44. package/.claude/hooks/posttooluse-editwrite.mjs +91 -0
  45. package/.claude/hooks/pretooluse-bash.mjs +87 -0
  46. package/.claude/hooks/pretooluse-editwrite.mjs +117 -0
  47. package/.claude/hooks/sessionend-recall.mjs +384 -0
  48. package/.claude/hooks/sessionstart-prime.mjs +278 -0
  49. package/.claude/hooks/thinking-route.mjs +314 -0
  50. package/.claude/hooks/worker-suggest.mjs +110 -0
  51. package/.claude/settings.json +167 -0
  52. package/.claude/skills/9router/SKILL.md +80 -0
  53. package/.claude/skills/9router-chat/SKILL.md +73 -0
  54. package/.claude/skills/9router-embeddings/SKILL.md +69 -0
  55. package/.claude/skills/9router-image/SKILL.md +86 -0
  56. package/.claude/skills/9router-stt/SKILL.md +79 -0
  57. package/.claude/skills/9router-tts/SKILL.md +80 -0
  58. package/.claude/skills/9router-web-fetch/SKILL.md +99 -0
  59. package/.claude/skills/9router-web-search/SKILL.md +91 -0
  60. package/.claude/skills/agent-browser/SKILL.md +64 -0
  61. package/.claude/skills/bizar/README.md +9 -0
  62. package/.claude/skills/bizar/SKILL.md +447 -0
  63. package/.claude/skills/cpp-coding-standards/README.md +28 -0
  64. package/.claude/skills/cpp-coding-standards/SKILL.md +634 -0
  65. package/.claude/skills/cpp-coding-standards/references/concurrency.md +320 -0
  66. package/.claude/skills/cpp-coding-standards/references/error-handling.md +229 -0
  67. package/.claude/skills/cpp-coding-standards/references/memory-safety.md +216 -0
  68. package/.claude/skills/cpp-coding-standards/references/modern-idioms.md +282 -0
  69. package/.claude/skills/cpp-coding-standards/references/review-checklist.md +96 -0
  70. package/.claude/skills/cpp-testing/README.md +28 -0
  71. package/.claude/skills/cpp-testing/SKILL.md +304 -0
  72. package/.claude/skills/cpp-testing/references/coverage.md +370 -0
  73. package/.claude/skills/cpp-testing/references/framework-compare.md +175 -0
  74. package/.claude/skills/cpp-testing/references/host-test-for-embedded.md +499 -0
  75. package/.claude/skills/cpp-testing/references/mocking.md +364 -0
  76. package/.claude/skills/cpp-testing/references/tdd-workflow.md +308 -0
  77. package/.claude/skills/cubesandbox/SKILL.md +148 -0
  78. package/.claude/skills/de-sloppify/SKILL.md +38 -0
  79. package/.claude/skills/de-sloppify/cleanup.mjs +253 -0
  80. package/.claude/skills/de-sloppify/cleanup.test.mjs +189 -0
  81. package/.claude/skills/embedded-esp-idf/README.md +41 -0
  82. package/.claude/skills/embedded-esp-idf/SKILL.md +439 -0
  83. package/.claude/skills/embedded-esp-idf/references/freertos-patterns.md +214 -0
  84. package/.claude/skills/embedded-esp-idf/references/host-tests.md +164 -0
  85. package/.claude/skills/embedded-esp-idf/references/idf-py-commands.md +157 -0
  86. package/.claude/skills/embedded-esp-idf/references/kconfig.md +159 -0
  87. package/.claude/skills/embedded-esp-idf/references/logging-discipline.md +118 -0
  88. package/.claude/skills/embedded-esp-idf/references/memory-and-iram.md +137 -0
  89. package/.claude/skills/embedded-esp-idf/references/nvs.md +121 -0
  90. package/.claude/skills/embedded-esp-idf/references/packed-structs.md +192 -0
  91. package/.claude/skills/embedded-esp-idf/scripts/idf_env.sh +47 -0
  92. package/.claude/skills/embedded-esp-idf/scripts/size_check.sh +77 -0
  93. package/.claude/skills/glyph/SKILL.md +163 -0
  94. package/.claude/skills/harness-engineering/SKILL.md +142 -0
  95. package/.claude/skills/lightrag/SKILL.md +81 -0
  96. package/.claude/skills/memory-protocol/SKILL.md +105 -0
  97. package/.claude/skills/obsidian/SKILL.md +306 -0
  98. package/.claude/skills/read-the-damn-docs/SKILL.md +113 -0
  99. package/.claude/skills/self-improvement/SKILL.md +64 -0
  100. package/.claude/skills/skillopt/SKILL.md +129 -0
  101. package/.claude/skills/thinking-archetypes/SKILL.md +90 -0
  102. package/.claude/skills/thinking-bayesian/SKILL.md +267 -0
  103. package/.claude/skills/thinking-bounded-rationality/SKILL.md +406 -0
  104. package/.claude/skills/thinking-circle-of-competence/SKILL.md +216 -0
  105. package/.claude/skills/thinking-cynefin/SKILL.md +70 -0
  106. package/.claude/skills/thinking-debiasing/SKILL.md +192 -0
  107. package/.claude/skills/thinking-dual-process/SKILL.md +282 -0
  108. package/.claude/skills/thinking-effectuation/SKILL.md +366 -0
  109. package/.claude/skills/thinking-feedback-loops/SKILL.md +464 -0
  110. package/.claude/skills/thinking-fermi-estimation/SKILL.md +263 -0
  111. package/.claude/skills/thinking-first-principles/SKILL.md +167 -0
  112. package/.claude/skills/thinking-five-whys-plus/SKILL.md +139 -0
  113. package/.claude/skills/thinking-inversion/SKILL.md +195 -0
  114. package/.claude/skills/thinking-jobs-to-be-done/SKILL.md +363 -0
  115. package/.claude/skills/thinking-kepner-tregoe/SKILL.md +154 -0
  116. package/.claude/skills/thinking-leverage-points/SKILL.md +390 -0
  117. package/.claude/skills/thinking-lindy-effect/SKILL.md +331 -0
  118. package/.claude/skills/thinking-map-territory/SKILL.md +111 -0
  119. package/.claude/skills/thinking-margin-of-safety/SKILL.md +330 -0
  120. package/.claude/skills/thinking-model-combination/SKILL.md +406 -0
  121. package/.claude/skills/thinking-model-router/SKILL.md +360 -0
  122. package/.claude/skills/thinking-model-selection/SKILL.md +341 -0
  123. package/.claude/skills/thinking-occams-razor/SKILL.md +129 -0
  124. package/.claude/skills/thinking-ooda/SKILL.md +127 -0
  125. package/.claude/skills/thinking-opportunity-cost/SKILL.md +360 -0
  126. package/.claude/skills/thinking-pre-mortem/SKILL.md +170 -0
  127. package/.claude/skills/thinking-probabilistic/SKILL.md +324 -0
  128. package/.claude/skills/thinking-red-team/SKILL.md +142 -0
  129. package/.claude/skills/thinking-regret-minimization/SKILL.md +335 -0
  130. package/.claude/skills/thinking-reversibility/SKILL.md +326 -0
  131. package/.claude/skills/thinking-scientific-method/SKILL.md +162 -0
  132. package/.claude/skills/thinking-second-order/SKILL.md +184 -0
  133. package/.claude/skills/thinking-socratic/SKILL.md +198 -0
  134. package/.claude/skills/thinking-steel-manning/SKILL.md +332 -0
  135. package/.claude/skills/thinking-systems/SKILL.md +238 -0
  136. package/.claude/skills/thinking-theory-of-constraints/SKILL.md +338 -0
  137. package/.claude/skills/thinking-thought-experiment/SKILL.md +354 -0
  138. package/.claude/skills/thinking-triz/SKILL.md +171 -0
  139. package/.claude/skills/thinking-via-negativa/SKILL.md +358 -0
  140. package/cli/install/postinstall.mjs +54 -28
  141. package/cli/install/postinstall.test.mjs +98 -0
  142. package/package.json +7 -2
@@ -0,0 +1,110 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * .claude/hooks/worker-suggest.mjs
4
+ *
5
+ * Bizar Background Workers — UserPromptSubmit hook.
6
+ *
7
+ * Runs on every user prompt. Calls `dispatch()` from cli/worker-dispatcher.mjs
8
+ * to find Bizar skills/agents that should be suggested for the prompt text.
9
+ * Emits suggestions to stderr (stdout is reserved for Claude Code's hook
10
+ * protocol). Always exits 0 — this is a suggestion, not a gate.
11
+ *
12
+ * Claude Code stdin shape (UserPromptSubmit):
13
+ * {
14
+ * "session_id": "...",
15
+ * "transcript_path": "...",
16
+ * "cwd": "...",
17
+ * "hook_event_name": "UserPromptSubmit",
18
+ * "user_prompt": "raw prompt text"
19
+ * }
20
+ *
21
+ * Claude Code stdout shape (hookSpecificOutput.additionalContext):
22
+ * { "hookSpecificOutput": {
23
+ * "hookEventName": "UserPromptSubmit",
24
+ * "additionalContext": "Bizar workers suggest: …"
25
+ * }}
26
+ *
27
+ * On any unexpected error: log to stderr, write a no-op hook output,
28
+ * exit 0. Never block the user.
29
+ */
30
+ 'use strict';
31
+
32
+ import { dispatch } from '../../cli/worker-dispatcher.mjs';
33
+
34
+ let raw = '';
35
+ process.stdin.setEncoding('utf8');
36
+ process.stdin.on('data', (chunk) => { raw += chunk; });
37
+ process.stdin.on('end', () => {
38
+ let input = {};
39
+ try {
40
+ input = JSON.parse(raw || '{}');
41
+ } catch {
42
+ input = {};
43
+ }
44
+
45
+ const prompt = String(input.user_prompt || '').trim();
46
+
47
+ // Empty prompts get the silent treatment — the user has not yet
48
+ // committed any intent.
49
+ if (prompt.length === 0) {
50
+ process.stdout.write(JSON.stringify({
51
+ hookSpecificOutput: {
52
+ hookEventName: 'UserPromptSubmit',
53
+ additionalContext: '',
54
+ },
55
+ }) + '\n');
56
+ process.exit(0);
57
+ return;
58
+ }
59
+
60
+ let suggestions;
61
+ try {
62
+ suggestions = dispatch(prompt, { maxSuggestions: 3 });
63
+ } catch (err) {
64
+ process.stderr.write(
65
+ `[bizar.workers] WARN: dispatch failed: ${
66
+ err && err.message ? err.message : String(err)
67
+ }\n`,
68
+ );
69
+ process.stdout.write(JSON.stringify({
70
+ hookSpecificOutput: {
71
+ hookEventName: 'UserPromptSubmit',
72
+ additionalContext: '',
73
+ },
74
+ }) + '\n');
75
+ process.exit(0);
76
+ return;
77
+ }
78
+
79
+ // Emit one stderr line per suggestion (for operator visibility in logs).
80
+ for (const s of suggestions) {
81
+ const skill = s.skill ? `skill: ${s.skill}` : 'skill: (none)';
82
+ const agent = s.agent ? `, agent: ${s.agent}` : '';
83
+ process.stderr.write(
84
+ `[bizar.workers] suggested: ${s.workerId} (${skill}${agent}) via pattern "${s.matchedPattern}"\n`,
85
+ );
86
+ }
87
+
88
+ // Build additionalContext for the model so the next turn is primed.
89
+ let note;
90
+ if (suggestions.length === 0) {
91
+ note = '';
92
+ } else {
93
+ const lines = suggestions.map((s) => {
94
+ const skillPart = s.skill ? `, skill=${s.skill}` : '';
95
+ const agentPart = s.agent ? `, agent=${s.agent}` : '';
96
+ return `- ${s.workerId} (weight=${s.weight}${skillPart}${agentPart}) matched "${s.matchedPattern}"`;
97
+ });
98
+ note =
99
+ 'Bizar workers suggest the following skills/agents for this prompt:\n' +
100
+ lines.join('\n');
101
+ }
102
+
103
+ process.stdout.write(JSON.stringify({
104
+ hookSpecificOutput: {
105
+ hookEventName: 'UserPromptSubmit',
106
+ additionalContext: note,
107
+ },
108
+ }) + '\n');
109
+ process.exit(0);
110
+ });
@@ -0,0 +1,167 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/claude-code-settings.json",
3
+ "mcpServers": {
4
+ "bizar": {
5
+ "command": "npx",
6
+ "args": ["-y", "@polderlabs/bizar-sdk", "mcp"],
7
+ "env": {
8
+ "BIZAR_HOME": "${HOME}/.bizar_home",
9
+ "BIZAR_MEMORY_VAULT": "${HOME}/.bizar_home/memory"
10
+ }
11
+ },
12
+ "semble": {
13
+ "command": "semble",
14
+ "args": ["mcp"]
15
+ },
16
+ "kevin": {
17
+ "command": "kevin",
18
+ "args": ["mcp"]
19
+ }
20
+ },
21
+ "permissions": {
22
+ "allow": [
23
+ "mcp__bizar__memory_read",
24
+ "mcp__bizar__memory_list",
25
+ "mcp__bizar__memory_search",
26
+ "mcp__bizar__memory_write",
27
+ "mcp__bizar__plan_action",
28
+ "mcp__bizar__open_kb",
29
+ "mcp__bizar__loop_list",
30
+ "mcp__bizar__loop_status",
31
+ "mcp__bizar__loop_start",
32
+ "mcp__bizar__loop_stop",
33
+ "mcp__bizar__graph_query",
34
+ "mcp__bizar__graph_path",
35
+ "mcp__bizar__danger_check",
36
+ "Read(~/.bizar_memory/**)",
37
+ "mcp__semble__*",
38
+ "mcp__agent-browser__*"
39
+ ],
40
+ "deny": [
41
+ "Read(./.env)",
42
+ "Read(./secrets/**)",
43
+ "Bash(rm -rf /)",
44
+ "Bash(sudo *)"
45
+ ]
46
+ },
47
+ "env": {
48
+ "BIZAR_HOME": "${HOME}/.bizar_home",
49
+ "BIZAR_MEMORY_VAULT": "${HOME}/.bizar_home/memory",
50
+ "BIZAR_LOOPS_DIR": "${HOME}/.bizar_loops",
51
+ "ANTHROPIC_BASE_URL": "http://localhost:20128/v1",
52
+ "BIZAR_MODEL_ROUTER_URL": "http://localhost:20128/v1"
53
+ },
54
+ "hooks": {
55
+ "PreToolUse": [
56
+ {
57
+ "matcher": "Write|Edit|MultiEdit",
58
+ "hooks": [
59
+ {
60
+ "type": "command",
61
+ "command": "node /home/drb0rk/projects/BizarHarness/.claude/hooks/pretooluse-editwrite.mjs",
62
+ "timeout": 30
63
+ }
64
+ ]
65
+ },
66
+ {
67
+ "matcher": "Bash",
68
+ "hooks": [
69
+ {
70
+ "type": "command",
71
+ "command": "node /home/drb0rk/projects/BizarHarness/.claude/hooks/pretooluse-bash.mjs",
72
+ "timeout": 30
73
+ }
74
+ ]
75
+ }
76
+ ],
77
+ "PostToolUse": [
78
+ {
79
+ "matcher": "Edit|Write|MultiEdit",
80
+ "hooks": [
81
+ {
82
+ "type": "command",
83
+ "command": "node /home/drb0rk/projects/BizarHarness/.claude/hooks/posttooluse-editwrite.mjs",
84
+ "timeout": 30
85
+ }
86
+ ]
87
+ },
88
+ {
89
+ "matcher": "Bash",
90
+ "hooks": [
91
+ {
92
+ "type": "command",
93
+ "command": "bash /home/drb0rk/projects/BizarHarness/.claude/hooks/auto-instinct.sh",
94
+ "timeout": 15
95
+ }
96
+ ]
97
+ },
98
+ {
99
+ "matcher": "Bash(git push*)",
100
+ "hooks": [
101
+ {
102
+ "type": "command",
103
+ "command": "bash /home/drb0rk/projects/BizarHarness/.claude/hooks/post-merge-audit.sh",
104
+ "timeout": 60
105
+ }
106
+ ]
107
+ },
108
+ {
109
+ "matcher": "EnterWorktree",
110
+ "hooks": [
111
+ {
112
+ "type": "command",
113
+ "command": "bash /home/drb0rk/projects/BizarHarness/scripts/worktree-setup.sh",
114
+ "timeout": 60
115
+ }
116
+ ]
117
+ }
118
+ ],
119
+ "UserPromptSubmit": [
120
+ {
121
+ "hooks": [
122
+ {
123
+ "type": "command",
124
+ "command": "node /home/drb0rk/projects/BizarHarness/.claude/hooks/worker-suggest.mjs",
125
+ "timeout": 10
126
+ }
127
+ ]
128
+ },
129
+ {
130
+ "hooks": [
131
+ {
132
+ "type": "command",
133
+ "command": "node /home/drb0rk/projects/BizarHarness/.claude/hooks/thinking-route.mjs",
134
+ "timeout": 10
135
+ }
136
+ ]
137
+ }
138
+ ],
139
+ "SessionStart": [
140
+ {
141
+ "hooks": [
142
+ {
143
+ "type": "command",
144
+ "command": "node /home/drb0rk/projects/BizarHarness/.claude/hooks/sessionstart-prime.mjs",
145
+ "timeout": 15
146
+ }
147
+ ]
148
+ }
149
+ ],
150
+ "SessionEnd": [
151
+ {
152
+ "hooks": [
153
+ {
154
+ "type": "command",
155
+ "command": "node /home/drb0rk/projects/BizarHarness/.claude/hooks/sessionend-recall.mjs",
156
+ "timeout": 15
157
+ },
158
+ {
159
+ "type": "command",
160
+ "command": "node /home/drb0rk/projects/BizarHarness/.claude/hooks/learning-extract.mjs",
161
+ "timeout": 15
162
+ }
163
+ ]
164
+ }
165
+ ]
166
+ }
167
+ }
@@ -0,0 +1,80 @@
1
+ ---
2
+ name: 9router
3
+ description: Entry point for 9Router — local/remote AI gateway with OpenAI-compatible REST for chat, image, TTS, STT, embeddings, web search, web fetch. Use when the user mentions 9Router, NINEROUTER_URL, or wants AI without writing provider boilerplate. This skill covers setup + indexes capability skills; fetch the relevant capability SKILL.md from the URLs below when needed.
4
+ ---
5
+
6
+ # 9Router
7
+
8
+ Local/remote AI gateway exposing OpenAI-compatible REST. One key, many providers, auto-fallback.
9
+
10
+ ## Setup
11
+
12
+ The Bizar harness expects 9Router at `http://localhost:20128` by default. Override with:
13
+
14
+ ```bash
15
+ export NINEROUTER_URL="http://localhost:20128" # or VPS / tunnel URL
16
+ export NINEROUTER_KEY="sk-..." # from Dashboard → Keys (only if requireApiKey=true)
17
+ ```
18
+
19
+ All requests: `${NINEROUTER_URL}/v1/...` with header `Authorization: Bearer ${NINEROUTER_KEY}` (omit if auth disabled).
20
+
21
+ Verify: `curl $NINEROUTER_URL/api/health` → `{"ok":true}`
22
+
23
+ ## Discover models
24
+
25
+ ```bash
26
+ curl $NINEROUTER_URL/v1/models # chat/LLM (default)
27
+ curl $NINEROUTER_URL/v1/models/image # image-gen
28
+ curl $NINEROUTER_URL/v1/models/tts # text-to-speech
29
+ curl $NINEROUTER_URL/v1/models/embedding # embeddings
30
+ curl $NINEROUTER_URL/v1/models/web # web search + fetch (entries have `kind` field)
31
+ curl $NINEROUTER_URL/v1/models/stt # speech-to-text
32
+ curl $NINEROUTER_URL/v1/models/image-to-text # vision
33
+ ```
34
+
35
+ Use `data[].id` as `model` field in requests. Combos appear with `owned_by:"combo"`.
36
+
37
+ Response shape:
38
+ ```json
39
+ { "object": "list", "data": [
40
+ { "id": "openai/gpt-5", "object": "model", "owned_by": "openai", "created": 1735000000 },
41
+ { "id": "tavily/search", "object": "model", "kind": "webSearch", "owned_by": "tavily", "created": 1735000000 }
42
+ ]}
43
+ ```
44
+
45
+ ## Capability skills
46
+
47
+ When the user needs a specific capability, fetch that skill's `SKILL.md` from its raw URL:
48
+
49
+ | Capability | Raw URL |
50
+ |---|---|
51
+ | Chat / code-gen | https://raw.githubusercontent.com/decolua/9router/refs/heads/master/skills/9router-chat/SKILL.md |
52
+ | Image generation | https://raw.githubusercontent.com/decolua/9router/refs/heads/master/skills/9router-image/SKILL.md |
53
+ | Text-to-speech | https://raw.githubusercontent.com/decolua/9router/refs/heads/master/skills/9router-tts/SKILL.md |
54
+ | Speech-to-text | https://raw.githubusercontent.com/decolua/9router/refs/heads/master/skills/9router-stt/SKILL.md |
55
+ | Embeddings | https://raw.githubusercontent.com/decolua/9router/refs/heads/master/skills/9router-embeddings/SKILL.md |
56
+ | Web search | https://raw.githubusercontent.com/decolua/9router/refs/heads/master/skills/9router-web-search/SKILL.md |
57
+ | Web fetch (URL → markdown) | https://raw.githubusercontent.com/decolua/9router/refs/heads/master/skills/9router-web-fetch/SKILL.md |
58
+
59
+ ## Bizar harness integration
60
+
61
+ This skill is auto-installed by `bizar install` into `~/.claude/skills/9router/`. All
62
+ Bizar agents that need chat or web capabilities should read these skill files
63
+ before starting a task.
64
+
65
+ **Quick-check command** (run from anywhere in a Bizar session):
66
+
67
+ ```bash
68
+ curl -sS http://localhost:20128/api/health
69
+ ```
70
+
71
+ If the response is not `{"ok":true}`, ask the user whether 9Router is running
72
+ or whether `NINEROUTER_URL` should be re-pointed. Do NOT fall back to a
73
+ non-routed provider silently — the whole point of 9Router is auto-fallback +
74
+ single key rotation + observability.
75
+
76
+ ## Errors
77
+
78
+ - 401 → set/refresh `NINEROUTER_KEY` (Dashboard → Keys)
79
+ - 400 `Invalid model format` → check `model` exists in `/v1/models/<kind>`
80
+ - 503 `All accounts unavailable` → wait `retry-after` or add another provider account
@@ -0,0 +1,73 @@
1
+ ---
2
+ name: 9router-chat
3
+ description: Chat / code generation via 9Router using OpenAI /v1/chat/completions or Anthropic /v1/messages format with streaming + auto-fallback combos. Use when the user wants to ask an LLM, generate code, summarize text, or run prompts through 9Router.
4
+ ---
5
+
6
+ # 9Router — Chat
7
+
8
+ Requires `NINEROUTER_URL` (and `NINEROUTER_KEY` if auth enabled). See https://raw.githubusercontent.com/decolua/9router/refs/heads/master/skills/9router/SKILL.md for setup.
9
+
10
+ ## Endpoints
11
+
12
+ - `POST $NINEROUTER_URL/v1/chat/completions` — OpenAI format
13
+ - `POST $NINEROUTER_URL/v1/messages` — Anthropic format
14
+
15
+ ## Discover
16
+
17
+ ```bash
18
+ curl $NINEROUTER_URL/v1/models | jq '.data[].id'
19
+ # Per-model metadata (contextWindow, params)
20
+ curl "$NINEROUTER_URL/v1/models/info?id=openai/gpt-4o"
21
+ ```
22
+
23
+ Combos (e.g. `vip`, `mycodex`) auto-fallback through multiple providers.
24
+
25
+ ## OpenAI format
26
+
27
+ ```bash
28
+ curl -X POST $NINEROUTER_URL/v1/chat/completions \
29
+ -H "Authorization: Bearer $NINEROUTER_KEY" \
30
+ -H "Content-Type: application/json" \
31
+ -d '{"model":"openai/gpt-5","messages":[{"role":"user","content":"Hi"}],"stream":false}'
32
+ ```
33
+
34
+ JS (OpenAI SDK):
35
+
36
+ ```js
37
+ import OpenAI from "openai";
38
+ const client = new OpenAI({ baseURL: `${process.env.NINEROUTER_URL}/v1`, apiKey: process.env.NINEROUTER_KEY });
39
+ const res = await client.chat.completions.create({
40
+ model: "openai/gpt-5",
41
+ messages: [{ role: "user", content: "Hi" }],
42
+ stream: true,
43
+ });
44
+ for await (const chunk of res) process.stdout.write(chunk.choices[0]?.delta?.content || "");
45
+ ```
46
+
47
+ ## Anthropic format
48
+
49
+ ```bash
50
+ curl -X POST $NINEROUTER_URL/v1/messages \
51
+ -H "Authorization: Bearer $NINEROUTER_KEY" \
52
+ -H "anthropic-version: 2023-06-01" \
53
+ -H "Content-Type: application/json" \
54
+ -d '{"model":"cc/claude-opus-4-7","max_tokens":1024,"messages":[{"role":"user","content":"Hi"}]}'
55
+ ```
56
+
57
+ ## Response shape
58
+
59
+ OpenAI (`/v1/chat/completions`):
60
+ ```json
61
+ { "id": "chatcmpl-...", "object": "chat.completion", "model": "openai/gpt-5",
62
+ "choices": [{ "index": 0, "message": { "role": "assistant", "content": "Hello!" }, "finish_reason": "stop" }],
63
+ "usage": { "prompt_tokens": 8, "completion_tokens": 2, "total_tokens": 10 } }
64
+ ```
65
+
66
+ Streaming (`stream:true`) emits SSE: `data: {choices:[{delta:{content:"..."}}]}\n\n` ... `data: [DONE]\n\n`.
67
+
68
+ Anthropic (`/v1/messages`):
69
+ ```json
70
+ { "id": "msg_...", "type": "message", "role": "assistant", "model": "cc/claude-opus-4-7",
71
+ "content": [{ "type": "text", "text": "Hello!" }],
72
+ "stop_reason": "end_turn", "usage": { "input_tokens": 8, "output_tokens": 2 } }
73
+ ```
@@ -0,0 +1,69 @@
1
+ ---
2
+ name: 9router-embeddings
3
+ description: Generate vector embeddings via 9Router /v1/embeddings using OpenAI / Gemini / Mistral / Voyage / Nvidia / GitHub embedding models for RAG, semantic search, similarity. Use when the user wants embeddings, vectors, RAG, semantic search, or to embed text.
4
+ ---
5
+
6
+ # 9Router — Embeddings
7
+
8
+ Requires `NINEROUTER_URL` (and `NINEROUTER_KEY` if auth enabled). See https://raw.githubusercontent.com/decolua/9router/refs/heads/master/skills/9router/SKILL.md for setup.
9
+
10
+ ## Discover
11
+
12
+ ```bash
13
+ curl $NINEROUTER_URL/v1/models/embedding | jq '.data[].id'
14
+ # Per-model dimensions
15
+ curl "$NINEROUTER_URL/v1/models/info?id=openai/text-embedding-3-small"
16
+ ```
17
+
18
+ ## Endpoint
19
+
20
+ `POST $NINEROUTER_URL/v1/embeddings`
21
+
22
+ | Field | Required | Notes |
23
+ |---|---|---|
24
+ | `model` | yes | from `/v1/models/embedding` |
25
+ | `input` | yes | string OR array of strings |
26
+ | `encoding_format` | no | `float` (default) / `base64` |
27
+ | `dimensions` | no | OpenAI v3 only |
28
+
29
+ ## Examples
30
+
31
+ ```bash
32
+ curl -X POST $NINEROUTER_URL/v1/embeddings \
33
+ -H "Authorization: Bearer $NINEROUTER_KEY" \
34
+ -H "Content-Type: application/json" \
35
+ -d '{"model":"openai/text-embedding-3-small","input":["hello","world"]}'
36
+ ```
37
+
38
+ JS:
39
+
40
+ ```js
41
+ const r = await fetch(`${process.env.NINEROUTER_URL}/v1/embeddings`, {
42
+ method: "POST",
43
+ headers: { "Authorization": `Bearer ${process.env.NINEROUTER_KEY}`, "Content-Type": "application/json" },
44
+ body: JSON.stringify({ model: "gemini/text-embedding-004", input: "RAG chunk text" }),
45
+ });
46
+ const { data } = await r.json();
47
+ console.log(data[0].embedding.length); // dimension
48
+ ```
49
+
50
+ ## Response shape
51
+
52
+ ```json
53
+ { "object": "list", "model": "openai/text-embedding-3-small",
54
+ "data": [
55
+ { "object": "embedding", "index": 0, "embedding": [0.0123, -0.045, ...] },
56
+ { "object": "embedding", "index": 1, "embedding": [...] }
57
+ ],
58
+ "usage": { "prompt_tokens": 5, "total_tokens": 5 } }
59
+ ```
60
+
61
+ ## Provider quirks
62
+
63
+ | Provider | Notes |
64
+ |---|---|
65
+ | `openai`, `openrouter`, `mistral`, `voyage-ai`, `fireworks`, `together`, `nebius`, `github`, `nvidia`, `jina-ai` | Native OpenAI shape — `dimensions` works only on OpenAI v3 (`text-embedding-3-*`) |
66
+ | `gemini`, `google_ai_studio` | Server auto-converts to `embedContent`/`batchEmbedContents` — send OpenAI shape |
67
+ | `openai-compatible-*`, `custom-embedding-*` | Custom `baseUrl` from credentials |
68
+
69
+ Batch (`input` as array) is faster; some providers cap batch size.
@@ -0,0 +1,86 @@
1
+ ---
2
+ name: 9router-image
3
+ description: Generate images via 9Router /v1/images/generations using OpenAI / Gemini Imagen / DALL-E / FLUX / MiniMax / SDWebUI / ComfyUI / Codex models. Use when the user wants to create, generate, draw, or render an image, picture, or text-to-image (txt2img).
4
+ ---
5
+
6
+ # 9Router — Image Generation
7
+
8
+ Requires `NINEROUTER_URL` (and `NINEROUTER_KEY` if auth enabled). See https://raw.githubusercontent.com/decolua/9router/refs/heads/master/skills/9router/SKILL.md for setup.
9
+
10
+ ## Discover
11
+
12
+ ```bash
13
+ curl $NINEROUTER_URL/v1/models/image | jq '.data[].id'
14
+ # Per-model params/options (size enum, quality enum, capabilities like edit)
15
+ curl "$NINEROUTER_URL/v1/models/info?id=openai/dall-e-3"
16
+ ```
17
+
18
+ ## Endpoint
19
+
20
+ `POST $NINEROUTER_URL/v1/images/generations`
21
+
22
+ | Field | Required | Notes |
23
+ |---|---|---|
24
+ | `model` | yes | from `/v1/models/image` |
25
+ | `prompt` | yes | image description |
26
+ | `n` | no | count (provider-dependent) |
27
+ | `size` | no | `1024x1024`, `1792x1024`, ... |
28
+ | `quality` | no | `standard` / `hd` (OpenAI) |
29
+ | `response_format` | no | `url` (default) or `b64_json` |
30
+
31
+ Add query `?response_format=binary` to receive raw image bytes (handy for saving file).
32
+
33
+ ## Examples
34
+
35
+ Save to file (binary):
36
+
37
+ ```bash
38
+ curl -X POST "$NINEROUTER_URL/v1/images/generations?response_format=binary" \
39
+ -H "Authorization: Bearer $NINEROUTER_KEY" \
40
+ -H "Content-Type: application/json" \
41
+ -d '{"model":"gemini/gemini-3-pro-image-preview","prompt":"watercolor mountains at sunrise","size":"1024x1024"}' \
42
+ --output out.png
43
+ ```
44
+
45
+ JS (URL response):
46
+
47
+ ```js
48
+ const r = await fetch(`${process.env.NINEROUTER_URL}/v1/images/generations`, {
49
+ method: "POST",
50
+ headers: { "Authorization": `Bearer ${process.env.NINEROUTER_KEY}`, "Content-Type": "application/json" },
51
+ body: JSON.stringify({ model: "gemini/gemini-3-pro-image-preview", prompt: "neon city", size: "1024x1024" }),
52
+ });
53
+ const { data } = await r.json();
54
+ console.log(data[0].url || data[0].b64_json.slice(0, 40));
55
+ ```
56
+
57
+ ## Response shape
58
+
59
+ JSON (default `response_format=url`):
60
+ ```json
61
+ { "created": 1735000000, "data": [{ "url": "https://..." }] }
62
+ ```
63
+
64
+ `response_format=b64_json`:
65
+ ```json
66
+ { "created": 1735000000, "data": [{ "b64_json": "iVBORw0KGgo..." }] }
67
+ ```
68
+
69
+ Query `?response_format=binary` returns raw image bytes (Content-Type `image/png` or `image/jpeg`).
70
+
71
+ ## Provider quirks
72
+
73
+ Common fields above work everywhere. These add/override:
74
+
75
+ | Provider | Extra/changed fields | Notes |
76
+ |---|---|---|
77
+ | `openai`, `minimax`, `openrouter`, `recraft` | `quality`, `style`, `response_format` | Standard OpenAI shape |
78
+ | `gemini` (nano-banana) | — | Only `prompt`; ignores `size`/`n` |
79
+ | `codex` (gpt-5.4-image) | `image`, `images[]`, `image_detail`, `output_format`, `background` | SSE stream; **ChatGPT Plus/Pro required** |
80
+ | `huggingface` | — | Only `prompt`; returns single image |
81
+ | `nanobanana` | `image`, `images[]` (edit mode) | `size` → aspect ratio; async polling |
82
+ | `fal-ai` | `image` (img2img) | `n` → `num_images`; `size` → ratio; async |
83
+ | `stability-ai` | `style` (preset), `output_format` | `size` → `aspect_ratio` |
84
+ | `black-forest-labs` (FLUX) | `image` (ref) | `size` → exact `width`/`height`; async |
85
+ | `runwayml` | `image` (ref) | `size` → ratio; async; video models exist |
86
+ | `sdwebui`, `comfyui` | — | Localhost noAuth (`:7860` / `:8188`) |
@@ -0,0 +1,79 @@
1
+ ---
2
+ name: 9router-stt
3
+ description: Speech-to-text via 9Router /v1/audio/transcriptions using OpenAI Whisper / Groq / Gemini / Deepgram / AssemblyAI / NVIDIA / HuggingFace models. Use when the user wants to transcribe audio, convert speech to text, or get subtitles from audio files.
4
+ ---
5
+
6
+ # 9Router — Speech-to-Text
7
+
8
+ Requires `NINEROUTER_URL` (and `NINEROUTER_KEY` if auth enabled). See https://raw.githubusercontent.com/decolua/9router/refs/heads/master/skills/9router/SKILL.md for setup.
9
+
10
+ ## Discover
11
+
12
+ ```bash
13
+ curl $NINEROUTER_URL/v1/models/stt | jq '.data[].id'
14
+ # Per-model params (language, response_format, prompt, temperature support)
15
+ curl "$NINEROUTER_URL/v1/models/info?id=openai/whisper-1"
16
+ ```
17
+
18
+ `model` = STT model ID (e.g. `openai/whisper-1`, `groq/whisper-large-v3`, `deepgram/nova-3`, `gemini/gemini-2.5-flash`).
19
+
20
+ ## Endpoint
21
+
22
+ `POST $NINEROUTER_URL/v1/audio/transcriptions` (OpenAI Whisper compatible, `multipart/form-data`)
23
+
24
+ | Field | Required | Notes |
25
+ |---|---|---|
26
+ | `model` | yes | from `/v1/models/stt` |
27
+ | `file` | yes | audio file (mp3, wav, m4a, webm, ogg, flac) |
28
+ | `language` | no | ISO-639-1 (e.g. `en`, `vi`) |
29
+ | `prompt` | no | hint text to guide transcription |
30
+ | `response_format` | no | `json` (default) / `text` / `verbose_json` / `srt` / `vtt` |
31
+ | `temperature` | no | 0–1 |
32
+
33
+ ## Examples
34
+
35
+ ```bash
36
+ curl -X POST "$NINEROUTER_URL/v1/audio/transcriptions" \
37
+ -H "Authorization: Bearer $NINEROUTER_KEY" \
38
+ -F "model=openai/whisper-1" \
39
+ -F "file=@audio.mp3" \
40
+ -F "language=vi"
41
+ ```
42
+
43
+ JS (Node):
44
+
45
+ ```js
46
+ import { createReadStream } from "node:fs";
47
+ const form = new FormData();
48
+ form.append("model", "groq/whisper-large-v3-turbo");
49
+ form.append("file", new Blob([await (await import("node:fs/promises")).readFile("audio.mp3")]), "audio.mp3");
50
+ const r = await fetch(`${process.env.NINEROUTER_URL}/v1/audio/transcriptions`, {
51
+ method: "POST",
52
+ headers: { "Authorization": `Bearer ${process.env.NINEROUTER_KEY}` },
53
+ body: form,
54
+ });
55
+ const { text } = await r.json();
56
+ console.log(text);
57
+ ```
58
+
59
+ ## Response shape
60
+
61
+ Default (`response_format=json`):
62
+ ```json
63
+ { "text": "Xin chào, đây là bản ghi âm." }
64
+ ```
65
+
66
+ `verbose_json` adds `language`, `duration`, `segments[]` with timestamps.
67
+ `srt` / `vtt` return subtitle text.
68
+
69
+ ## Provider quirks
70
+
71
+ | Provider | `model` format | Notes |
72
+ |---|---|---|
73
+ | `openai` | `whisper-1`, `gpt-4o-transcribe`, `gpt-4o-mini-transcribe` | Native OpenAI shape |
74
+ | `groq` | `whisper-large-v3`, `whisper-large-v3-turbo`, `distil-whisper-large-v3-en` | Fastest; OpenAI shape |
75
+ | `gemini` | `gemini-2.5-flash`, `gemini-2.5-pro`, `gemini-2.5-flash-lite` | Server converts to `generateContent` with audio inline |
76
+ | `deepgram` | `nova-3`, `nova-2`, `whisper-large` | Token auth; server adapts response |
77
+ | `assemblyai` | `universal-3-pro`, `universal-2` | Async upload+poll handled server-side |
78
+ | `nvidia` | `nvidia/parakeet-ctc-1.1b-asr` | NIM endpoint |
79
+ | `huggingface` | `openai/whisper-large-v3`, `openai/whisper-small` | HF Inference API |