@sellable/mcp 0.1.7 → 0.1.8
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.8 --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.8 --host codex
|
|
94
94
|
sellable --verify-only --host codex
|
|
95
95
|
```
|
|
96
96
|
|
|
@@ -131,9 +131,11 @@ Never tell users to run `/sellable:create-campaign-v2`,
|
|
|
131
131
|
|
|
132
132
|
Claude Code should ask intake and approval gates with `AskUserQuestion`.
|
|
133
133
|
Codex should ask them with `request_user_input` when it is exposed in an
|
|
134
|
-
interactive
|
|
135
|
-
|
|
136
|
-
|
|
134
|
+
interactive session. The installer enables Default mode support by writing
|
|
135
|
+
`default_mode_request_user_input = true` under `[features]` in
|
|
136
|
+
`~/.codex/config.toml`. `codex exec` is non-interactive and cannot show the
|
|
137
|
+
structured questionnaire UI, so it is only useful for smoke checks that stop
|
|
138
|
+
before human intake/approval.
|
|
137
139
|
|
|
138
140
|
## Usage
|
|
139
141
|
|
package/package.json
CHANGED
|
@@ -76,13 +76,16 @@ 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
|
-
|
|
79
|
+
`request_user_input` (enabled in Default mode by
|
|
80
|
+
`[features].default_mode_request_user_input = true`, not available in
|
|
81
|
+
`codex exec`). Treat them as equivalent approval/intake gates and persist the
|
|
82
|
+
same draft artifacts after the user answers. If an interactive
|
|
82
83
|
Codex session does not expose `request_user_input`, do not silently degrade to
|
|
83
84
|
a plain chat question; stop and tell the user: `Codex has not exposed
|
|
84
|
-
request_user_input in this session.
|
|
85
|
-
|
|
85
|
+
request_user_input in this session. Can I update ~/.codex/config.toml with
|
|
86
|
+
[features].default_mode_request_user_input = true? After that, fully quit and
|
|
87
|
+
reopen Codex, then rerun $sellable:create-campaign.` If they decline, tell them
|
|
88
|
+
to switch to Plan/collaboration mode and rerun `$sellable:create-campaign`. In
|
|
86
89
|
non-interactive `codex exec`, structured user input is unavailable by design;
|
|
87
90
|
ask in chat only when the run is explicitly a non-interactive smoke/rehearsal.
|
|
88
91
|
- Fast Intake Mode is mandatory for hosted/rehearsal net-new runs. Ask the
|
|
@@ -103,11 +103,13 @@ 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
104
|
commit-gate question in a later turn without the approval packet above it. If an
|
|
105
105
|
interactive Codex session does not expose `request_user_input`, do not silently
|
|
106
|
-
fall back to chat. Stop and
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
106
|
+
fall back to chat. Stop and ask permission to update `~/.codex/config.toml`
|
|
107
|
+
with `[features].default_mode_request_user_input = true`, then tell the user to
|
|
108
|
+
fully quit and reopen Codex before rerunning `$sellable:create-campaign`. If the
|
|
109
|
+
user declines the settings update, tell them to switch to Plan/collaboration
|
|
110
|
+
mode and rerun `$sellable:create-campaign`. A normal chat question is acceptable
|
|
111
|
+
only for non-interactive `codex exec` smoke/rehearsal runs because structured
|
|
112
|
+
user input is unavailable by design there.
|
|
111
113
|
|
|
112
114
|
The packet should read like an AI GTM engineer explaining the campaign, not an
|
|
113
115
|
internal validation report. Start with the practical direction in plain
|