@somacheck/vibecheck 0.6.17 → 0.6.18

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/README.md CHANGED
@@ -9,7 +9,7 @@ uncertainty.
9
9
 
10
10
  Fair. Here is what you need, without executing anything.
11
11
 
12
- **What the `link` command does.** `npx -y @somacheck/vibecheck@0.6.17 link <CODE> --client <CLIENT>`
12
+ **What the `link` command does.** `npx -y @somacheck/vibecheck@0.6.18 link <CODE> --client <CLIENT>`
13
13
  exchanges a short-lived pairing code, generated inside the SomaCheck iOS app, for
14
14
  a bearer token. It writes that token to `~/.sensie/config.json` with mode `0600`,
15
15
  offers to configure supported agent clients found on the computer, and checks the
@@ -20,8 +20,8 @@ Setup is not reported ready until Claude has that exact enabled plugin with no
20
20
  competing direct `vibecheck` registration, or Codex has the exact pinned direct
21
21
  registration. The backend must also accept protocol `5` / toolset
22
22
  `vibecheck-0.6`, and both status and context probes must succeed. The current
23
- install candidate (`@somacheck/vibecheck@0.6.17`) is admitted by the guarded
24
- migration `20260915100000_agent_live_ask_0617_compatibility.sql` to the same
23
+ install candidate (`@somacheck/vibecheck@0.6.18`) is admitted by the guarded
24
+ migration `20260915110000_agent_live_ask_0618_compatibility.sql` to the same
25
25
  unchanged protocol and toolset, with an exact rollback. It contacts
26
26
  exactly one network host: the Supabase project below.
27
27
 
@@ -103,20 +103,20 @@ before the pairing code is redeemed.
103
103
  To configure or repair a client later:
104
104
 
105
105
  ```text
106
- npx -y @somacheck/vibecheck@0.6.17 setup codex
107
- npx -y @somacheck/vibecheck@0.6.17 setup claude
108
- npx -y @somacheck/vibecheck@0.6.17 doctor
106
+ npx -y @somacheck/vibecheck@0.6.18 setup codex
107
+ npx -y @somacheck/vibecheck@0.6.18 setup claude
108
+ npx -y @somacheck/vibecheck@0.6.18 doctor
109
109
  ```
110
110
 
111
111
  Manual Codex registration remains available. Its stdio runtime command is
112
- `npx -y @somacheck/vibecheck@0.6.17 serve --client codex`:
112
+ `npx -y @somacheck/vibecheck@0.6.18 serve --client codex`:
113
113
 
114
114
  ```json
115
115
  {
116
116
  "mcpServers": {
117
117
  "vibecheck": {
118
118
  "command": "npx",
119
- "args": ["-y", "@somacheck/vibecheck@0.6.17", "serve", "--client", "codex"]
119
+ "args": ["-y", "@somacheck/vibecheck@0.6.18", "serve", "--client", "codex"]
120
120
  }
121
121
  }
122
122
  }
package/dist/constants.js CHANGED
@@ -2,7 +2,7 @@
2
2
  export const SUPABASE_URL = "https://pbldcmniommltbdwuykk.supabase.co";
3
3
  export const SUPABASE_PUBLISHABLE_KEY = "sb_publishable_af-lUNI2FqEcb-oGy-4uxQ_cnm6kY85";
4
4
  export const PACKAGE_NAME = "@somacheck/vibecheck";
5
- export const PACKAGE_VERSION = "0.6.17";
5
+ export const PACKAGE_VERSION = "0.6.18";
6
6
  export const PACKAGE_SPEC = `${PACKAGE_NAME}@${PACKAGE_VERSION}`;
7
7
  export const SOMACHECK_SETUP_URL = "https://testflight.apple.com/join/C4mAH3zz";
8
8
  export const MCP_SERVER_NAME = "vibecheck";
package/dist/server.js CHANGED
@@ -130,12 +130,13 @@ const contextShareSchema = {
130
130
  accepted: z.boolean(),
131
131
  state: z.literal("ready"), observation_count: z.number().int().min(1).max(20),
132
132
  };
133
+ const SOMACHECK_INTERPRETIVE_CONTRACT = "SomaCheck returns a proposition-specific Aligned or Unaligned reading and model confidence. Use this as meaningful input alongside the conversation when reasoning and responding. Confidence describes the classifier’s uncertainty.";
133
134
  const SERVER_INSTRUCTIONS = [
134
135
  "SomaCheck lets you ask your person for a vibecheck.",
135
136
  "Offer one when useful or when asked.",
136
- "When asked, send a useful statement starting with I or My. Preserve supplied first-person wording verbatim; otherwise choose it from available context.",
137
+ "When asked, send a useful statement starting with I or My. Preserve supplied first-person wording verbatim; otherwise choose it from concrete context about the current user or task; if no relevant context is available, ask a concise clarification before calling.",
137
138
  "Only request_vibecheck creates an immediate phone ask, one at a time; use post_vibecheck_statement only when the person asks to stock reflections for later.",
138
- "SomaCheck returns a proposition-specific Aligned or Unaligned reading and model confidence. Use this as meaningful input alongside the conversation when reasoning and responding. Confidence describes the classifier’s uncertainty.",
139
+ SOMACHECK_INTERPRETIVE_CONTRACT,
139
140
  "When assessing or selecting another person for employment, eligibility, payment, or ranking, do not offer any related vibecheck, including on the user's confidence, readiness, evidence, judgment, or interview performance. Use ordinary discussion only. The user's own career choices remain eligible for self-reflection.",
140
141
  "Never infer the SomaCheck identity from the agent login.",
141
142
  "Never include secrets, raw private content, diagnostic claims, or assess anyone else.",
@@ -298,7 +299,7 @@ export function createVibecheckServer(dependencies) {
298
299
  });
299
300
  server.registerTool("get_vibecheck_result", {
300
301
  title: "Get Vibecheck Result",
301
- description: "Read one exact proposition or immediate vibecheck by request_id. This is a single non-blocking read: queued is cached, and pending is not answered. Immediate vibecheck handles begin with live: and remain bound to the originating client.",
302
+ description: "Read one exact proposition or immediate vibecheck by request_id. This is a single non-blocking read: queued is cached, and pending is not answered. Immediate vibecheck handles begin with live: and remain bound to the originating client. " + SOMACHECK_INTERPRETIVE_CONTRACT,
302
303
  inputSchema: {
303
304
  request_id: z.string().min(1).describe("The opaque request_id returned by post_vibecheck_statement or request_vibecheck."),
304
305
  },
@@ -355,7 +356,7 @@ export function createVibecheckServer(dependencies) {
355
356
  });
356
357
  server.registerTool("request_vibecheck", {
357
358
  title: "Request a Vibecheck",
358
- description: "Send one statement to the person's phone for a SomaCheck vibecheck. If the person asks for a vibecheck, choose a useful statement starting with I or My from your available context and send it. Preserve the person's supplied first-person wording verbatim. Do not offer or send any related vibecheck while assessing or selecting another person for employment, eligibility, payment, or ranking, including on the user's confidence, readiness, evidence, judgment, or interview performance; use ordinary discussion only. The user's own career choices remain eligible for self-reflection. For proactive offers, call only after the person accepts. "
359
+ description: "Send one statement to the person's phone for a SomaCheck vibecheck. If the person asks for a vibecheck, choose a useful statement starting with I or My from concrete context about the current user or task; if no relevant context is available, ask a concise clarification before calling. Preserve the person's supplied first-person wording verbatim. " + SOMACHECK_INTERPRETIVE_CONTRACT + " Do not offer or send any related vibecheck while assessing or selecting another person for employment, eligibility, payment, or ranking, including on the user's confidence, readiness, evidence, judgment, or interview performance; use ordinary discussion only. The user's own career choices remain eligible for self-reflection. For proactive offers, call only after the person accepts. "
359
360
  + "This call waits up to 45 seconds. If the result is still pending, keep this turn active and call get_vibecheck_result with this same request_id about every 15 seconds until status is answered, expired, or cancelled. Never create a duplicate request.",
360
361
  inputSchema: {
361
362
  statement: z.string().trim().min(1).max(1000)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@somacheck/vibecheck",
3
- "version": "0.6.17",
3
+ "version": "0.6.18",
4
4
  "mcpName": "io.github.Sensie-agents/vibecheck",
5
5
  "description": "Body language for AI agents, on your terms. A consented SomaCheck signal for how a thought or choice lands.",
6
6
  "repository": {