@whisperr/wizard 0.1.14 → 0.1.15

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 (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +7 -2
package/dist/index.js CHANGED
@@ -11,7 +11,7 @@ import * as p from "@clack/prompts";
11
11
 
12
12
  // src/core/config.ts
13
13
  var DEFAULT_API_BASE = "https://api.whisperr.net";
14
- var DEFAULT_MODEL = "claude-sonnet-4-6";
14
+ var DEFAULT_MODEL = "claude-sonnet-5";
15
15
  var DEFAULT_EFFORT = "high";
16
16
  var EFFORT_LEVELS = ["low", "medium", "high", "xhigh", "max"];
17
17
  function resolveEffort() {
@@ -1331,7 +1331,7 @@ async function runPass(opts) {
1331
1331
  cwd: repoPath,
1332
1332
  systemPrompt: systemPrompt9,
1333
1333
  // Adaptive thinking (Claude decides depth per step) + an explicit effort
1334
- // level. Sonnet 4.6 supports both; we set them rather than rely on SDK
1334
+ // level. Sonnet 5 supports both; we set them rather than rely on SDK
1335
1335
  // defaults so the behavior is pinned regardless of SDK version.
1336
1336
  thinking: { type: "adaptive" },
1337
1337
  effort,
package/package.json CHANGED
@@ -1,12 +1,17 @@
1
1
  {
2
2
  "name": "@whisperr/wizard",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "Whisperr Wizard — one command to integrate the Whisperr SDK into your app. Authenticates with your onboarded account and uses an AI coding agent to wire up identify() and your business events automatically.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/WhisperrAI/whisperr-wizard.git"
8
+ },
9
+ "homepage": "https://github.com/WhisperrAI/whisperr-wizard#readme",
5
10
  "license": "UNLICENSED",
6
11
  "private": false,
7
12
  "type": "module",
8
13
  "bin": {
9
- "whisperr": "./dist/index.js"
14
+ "whisperr": "dist/index.js"
10
15
  },
11
16
  "files": [
12
17
  "dist"