vibespot 1.6.3 → 1.6.5

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibespot",
3
- "version": "1.6.3",
3
+ "version": "1.6.5",
4
4
  "description": "AI-powered HubSpot CMS landing page builder — vibe coding & React converter",
5
5
  "type": "module",
6
6
  "bin": {
@@ -17,9 +17,11 @@
17
17
  "scripts": {
18
18
  "dev": "tsx src/index.ts",
19
19
  "build": "tsup",
20
+ "typecheck": "tsc --noEmit",
20
21
  "test": "vitest run",
21
22
  "test:watch": "vitest",
22
23
  "eval": "tsx test/eval/run-eval.ts",
24
+ "eval:calibrate": "tsx test/eval/calibrate-judge.ts",
23
25
  "benchmark": "tsx test/eval/benchmark.ts",
24
26
  "prompts:pull": "tsx scripts/sync-prompts.ts",
25
27
  "prompts:seed": "tsx scripts/sync-prompts.ts --from-local",
@@ -1208,7 +1208,7 @@ testimonial carousel, and a minimal footer with social links.</code></pre>
1208
1208
  <li><strong>Span</strong> &mdash; one pipeline stage: intent analysis, design system, module planning, and module development.</li>
1209
1209
  <li><strong>Generation</strong> &mdash; one model call. The N parallel module calls (plus any retries) nest under the single module-development span.</li>
1210
1210
  </ul>
1211
- <p>A full page reads as <code>trace &rarr; stage spans &rarr; generations</code>, with token cost summing up the tree.</p>
1211
+ <p>A full page reads as <code>trace &rarr; stage spans &rarr; generations &rarr; output</code>, with token cost summing up the tree. The trace carries a compact <em>output</em> summary (the modules it produced), so the Traces list shows a result preview at a glance, and each generation links to the managed <em>prompt</em> version that produced it &mdash; so you can break cost, latency, and quality down per prompt version in Langfuse.</p>
1212
1212
 
1213
1213
  <h4 id="langfuse-instance">Get a Langfuse instance</h4>
1214
1214
  <p>You need somewhere to send the traces. Pick one: Langfuse's hosted cloud (fastest to start) or your own self-hosted install (your data stays on your infrastructure). Either way you end up with a <strong>public key</strong>, a <strong>secret key</strong>, and a <strong>host URL</strong> &mdash; the three things vibeSpot needs in the next step.</p>
package/ui/settings.js CHANGED
@@ -1725,6 +1725,7 @@ function getModelsForEngine(engine) {
1725
1725
  switch (engine) {
1726
1726
  case "claude-code":
1727
1727
  return [
1728
+ { id: "claude-opus-4-8", label: "Claude Opus 4.8" },
1728
1729
  { id: "claude-opus-4-7", label: "Claude Opus 4.7" },
1729
1730
  { id: "claude-opus-4-6", label: "Claude Opus 4.6" },
1730
1731
  { id: "claude-sonnet-4-6", label: "Claude Sonnet 4.6 (default)" },
@@ -1734,6 +1735,7 @@ function getModelsForEngine(engine) {
1734
1735
  case "anthropic-api":
1735
1736
  case "claude-oauth":
1736
1737
  return [
1738
+ { id: "claude-opus-4-8", label: "Claude Opus 4.8" },
1737
1739
  { id: "claude-opus-4-7", label: "Claude Opus 4.7" },
1738
1740
  { id: "claude-opus-4-6", label: "Claude Opus 4.6" },
1739
1741
  { id: "claude-sonnet-4-6", label: "Claude Sonnet 4.6 (default)" },
@@ -1772,6 +1774,7 @@ function getModelsForEngine(engine) {
1772
1774
  const ldModels = {
1773
1775
  anthropic: [
1774
1776
  { id: "claude-sonnet-4-6", label: "Claude Sonnet 4.6 (default)" },
1777
+ { id: "claude-opus-4-8", label: "Claude Opus 4.8" },
1775
1778
  { id: "claude-opus-4-7", label: "Claude Opus 4.7" },
1776
1779
  { id: "claude-opus-4-6", label: "Claude Opus 4.6" },
1777
1780
  { id: "claude-sonnet-4-5", label: "Claude Sonnet 4.5" },
Binary file