@sellable/mcp 0.1.138 → 0.1.139
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 +18 -5
- package/package.json +1 -1
- package/skills/interview/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -16,14 +16,20 @@ Each message gets 5+ minutes of Claude attention with deep research - no other t
|
|
|
16
16
|
|
|
17
17
|
### Prompt Source Of Truth
|
|
18
18
|
|
|
19
|
-
There
|
|
19
|
+
There are two public Sellable entrypoints shared across hosts:
|
|
20
20
|
|
|
21
21
|
- `sellable:create-campaign`
|
|
22
|
+
- `sellable:interview`
|
|
22
23
|
|
|
23
|
-
The public wrapper loads the approval-gated workflow from:
|
|
24
|
+
The create-campaign public wrapper loads the approval-gated workflow from:
|
|
24
25
|
|
|
25
26
|
- `mcp/sellable/skills/create-campaign-v2/SKILL.md`
|
|
26
27
|
|
|
28
|
+
The interview public wrapper loads the core identity/company memory workflow
|
|
29
|
+
from:
|
|
30
|
+
|
|
31
|
+
- `mcp/sellable/skills/interview/SKILL.md`
|
|
32
|
+
|
|
27
33
|
The older `mcp/sellable/skills/create-campaign/SKILL.md` prompt is kept as an
|
|
28
34
|
internal legacy prompt for compatibility only. Do not advertise it as a public
|
|
29
35
|
command.
|
|
@@ -120,8 +126,8 @@ The installer does the full local setup:
|
|
|
120
126
|
`mcp__sellable__*` tools into skill sessions
|
|
121
127
|
|
|
122
128
|
After the installer passes, fully quit and reopen Codex Desktop. Start a new
|
|
123
|
-
thread and select `Sellable Create Campaign`, or
|
|
124
|
-
`$sellable:create-campaign`. If the app still says
|
|
129
|
+
thread and select `Sellable Create Campaign` / `Sellable Identity Interview`, or
|
|
130
|
+
invoke `$sellable:create-campaign` / `$sellable:interview`. If the app still says
|
|
125
131
|
`mcp__sellable__*` tools are missing after the installer passes, check that
|
|
126
132
|
`~/.codex/config.toml` contains both `[marketplaces.sellable]` and
|
|
127
133
|
`[plugins."sellable@sellable"]`.
|
|
@@ -133,10 +139,14 @@ the Sellable MCP tools for Codex Desktop.
|
|
|
133
139
|
Use these names consistently:
|
|
134
140
|
|
|
135
141
|
- Claude Code command: `/sellable:create-campaign`
|
|
142
|
+
- Claude Code command: `/sellable:interview`
|
|
136
143
|
- Codex command: `$sellable:create-campaign`
|
|
144
|
+
- Codex command: `$sellable:interview`
|
|
137
145
|
- Codex Desktop plugin: `sellable@sellable`
|
|
138
146
|
- Codex visible skill: `Sellable Create Campaign`
|
|
147
|
+
- Codex visible skill: `Sellable Identity Interview`
|
|
139
148
|
- Codex skill frontmatter name: `create-campaign`
|
|
149
|
+
- Codex skill frontmatter name: `interview`
|
|
140
150
|
- MCP server name: `sellable`
|
|
141
151
|
- Internal workflow prompt: `create-campaign-v2`
|
|
142
152
|
|
|
@@ -332,7 +342,10 @@ Primary public entrypoint for the approval-gated campaign creation flow.
|
|
|
332
342
|
|
|
333
343
|
### interview
|
|
334
344
|
|
|
335
|
-
|
|
345
|
+
Public identity/company memory interview. Builds durable core files under
|
|
346
|
+
`./.sellable/configs/core/**`, raw archives under `./.sellable/interviews/**`,
|
|
347
|
+
and reusable answer/proof/story/transcript/reference memory for downstream
|
|
348
|
+
Sellable writing workflows.
|
|
336
349
|
|
|
337
350
|
## Available Tools
|
|
338
351
|
|
package/package.json
CHANGED