@sellable/install 0.1.303 → 0.1.304

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.
@@ -188,6 +188,10 @@ function summarizeToolResult(name, result) {
188
188
  return {
189
189
  ...summary,
190
190
  authOk: parsed.ok === true,
191
+ configPath: parsed.configPath || null,
192
+ configExists: parsed.configExists === true,
193
+ configsDir: parsed.configsDir || null,
194
+ tokenPresent: parsed.tokenPresent === true,
191
195
  errorType: parsed.error?.type || null,
192
196
  activeWorkspaceId: parsed.activeWorkspaceId || null,
193
197
  activeWorkspaceName: parsed.activeWorkspaceName || null,
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@sellable/install",
3
- "version": "0.1.303",
3
+ "version": "0.1.304",
4
4
  "type": "module",
5
- "description": "One-command installer for Sellable MCP in Claude Code and Codex",
5
+ "description": "One-command installer for Sellable MCP in Claude Code, Codex, and Hermes",
6
6
  "bin": {
7
7
  "sellable": "bin/sellable-install.mjs"
8
8
  },
@@ -18,13 +18,15 @@
18
18
  "README.md"
19
19
  ],
20
20
  "dependencies": {
21
- "@modelcontextprotocol/sdk": "^1.25.2"
21
+ "@modelcontextprotocol/sdk": "^1.25.2",
22
+ "yaml": "^2.8.1"
22
23
  },
23
24
  "keywords": [
24
25
  "sellable",
25
26
  "mcp",
26
27
  "claude-code",
27
28
  "codex",
29
+ "hermes",
28
30
  "linkedin",
29
31
  "outbound"
30
32
  ],