@sellable/mcp 0.1.6 → 0.1.7
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
|
@@ -83,14 +83,14 @@ The token is provided when you generate it. Use `list_workspaces` +
|
|
|
83
83
|
For customer/package installs, use the public installer:
|
|
84
84
|
|
|
85
85
|
```bash
|
|
86
|
-
npx -y @sellable/install@0.1.
|
|
86
|
+
npx -y @sellable/install@0.1.7 --host codex --token skt_live_your_token_here --workspace-id your_workspace_id
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
If you already have `~/.sellable/config.json`, rerun/verify without rewriting
|
|
90
90
|
auth:
|
|
91
91
|
|
|
92
92
|
```bash
|
|
93
|
-
npx -y @sellable/install@0.1.
|
|
93
|
+
npx -y @sellable/install@0.1.7 --host codex
|
|
94
94
|
sellable --verify-only --host codex
|
|
95
95
|
```
|
|
96
96
|
|
|
@@ -110,6 +110,31 @@ thread and select `Sellable Create Campaign`, or invoke
|
|
|
110
110
|
The skill being visible only proves skill discovery; the plugin is what mounts
|
|
111
111
|
the Sellable MCP tools for Codex Desktop.
|
|
112
112
|
|
|
113
|
+
## Public Names And Host Commands
|
|
114
|
+
|
|
115
|
+
Use these names consistently:
|
|
116
|
+
|
|
117
|
+
- Claude Code command: `/sellable:create-campaign`
|
|
118
|
+
- Codex command: `$sellable:create-campaign`
|
|
119
|
+
- Codex Desktop plugin: `sellable@sellable`
|
|
120
|
+
- Codex visible skill: `Sellable Create Campaign`
|
|
121
|
+
- Codex skill frontmatter name: `create-campaign`
|
|
122
|
+
- MCP server name: `sellable`
|
|
123
|
+
- Internal workflow prompt: `create-campaign-v2`
|
|
124
|
+
|
|
125
|
+
Never tell users to run `/sellable:create-campaign-v2`,
|
|
126
|
+
`$sellable:create-campaign-v2`, or `$sellable:sellable:create-campaign`.
|
|
127
|
+
`create-campaign-v2` is an internal MCP subskill loaded by
|
|
128
|
+
`get_subskill_prompt({ subskillName: "create-campaign-v2" })`.
|
|
129
|
+
|
|
130
|
+
## Structured Question Parity
|
|
131
|
+
|
|
132
|
+
Claude Code should ask intake and approval gates with `AskUserQuestion`.
|
|
133
|
+
Codex should ask them with `request_user_input` when it is exposed in an
|
|
134
|
+
interactive Plan/collaboration-mode session. `codex exec` is non-interactive
|
|
135
|
+
and cannot show the structured questionnaire UI, so it is only useful for smoke
|
|
136
|
+
checks that stop before human intake/approval.
|
|
137
|
+
|
|
113
138
|
## Usage
|
|
114
139
|
|
|
115
140
|
### From Sellable UI
|
package/package.json
CHANGED
|
@@ -76,11 +76,15 @@ Validated draft directory:
|
|
|
76
76
|
compatibility run where all upstream artifacts already exist.
|
|
77
77
|
- Use the host-native structured question gate whenever it is exposed. In
|
|
78
78
|
Claude Code, this is `AskUserQuestion`. In Codex, this is
|
|
79
|
-
`request_user_input
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
79
|
+
`request_user_input` (usually exposed in Plan/collaboration-mode interactive
|
|
80
|
+
sessions, not `codex exec`). Treat them as equivalent approval/intake gates and
|
|
81
|
+
persist the same draft artifacts after the user answers. If an interactive
|
|
82
|
+
Codex session does not expose `request_user_input`, do not silently degrade to
|
|
83
|
+
a plain chat question; stop and tell the user: `Codex has not exposed
|
|
84
|
+
request_user_input in this session. Switch to Plan mode / collaboration mode
|
|
85
|
+
for the structured questionnaire, then rerun $sellable:create-campaign.` In
|
|
86
|
+
non-interactive `codex exec`, structured user input is unavailable by design;
|
|
87
|
+
ask in chat only when the run is explicitly a non-interactive smoke/rehearsal.
|
|
84
88
|
- Fast Intake Mode is mandatory for hosted/rehearsal net-new runs. Ask the
|
|
85
89
|
first founder strategy/source question packet in under 60 seconds. Before
|
|
86
90
|
that first packet, the first assistant turn may only call
|
|
@@ -101,10 +101,13 @@ Status: approval-packet
|
|
|
101
101
|
The same assistant turn must then use the host-native structured question gate
|
|
102
102
|
with the six commit choices. In Claude Code, call `AskUserQuestion`. In Codex,
|
|
103
103
|
call `request_user_input` when that tool is available. Do not show a standalone
|
|
104
|
-
commit-gate question in a later turn without the approval packet above it. If
|
|
105
|
-
|
|
106
|
-
fall back to
|
|
107
|
-
|
|
104
|
+
commit-gate question in a later turn without the approval packet above it. If an
|
|
105
|
+
interactive Codex session does not expose `request_user_input`, do not silently
|
|
106
|
+
fall back to chat. Stop and tell the user to switch to Plan mode /
|
|
107
|
+
collaboration mode so Codex exposes the structured questionnaire tool, then
|
|
108
|
+
rerun `$sellable:create-campaign`. A normal chat question is acceptable only for
|
|
109
|
+
non-interactive `codex exec` smoke/rehearsal runs because structured user input
|
|
110
|
+
is unavailable by design there.
|
|
108
111
|
|
|
109
112
|
The packet should read like an AI GTM engineer explaining the campaign, not an
|
|
110
113
|
internal validation report. Start with the practical direction in plain
|