@sellable/mcp 0.1.245 → 0.1.246

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/dist/index-dev.js CHANGED
File without changes
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/mcp",
3
- "version": "0.1.245",
3
+ "version": "0.1.246",
4
4
  "type": "module",
5
5
  "description": "Sellable MCP server for Claude Code and Codex campaign workflows",
6
6
  "main": "dist/index.js",
@@ -6,6 +6,36 @@ visibility: internal
6
6
 
7
7
  # Create Post
8
8
 
9
+ <command_model>
10
+ `create-post` is the user-facing content command for LinkedIn post work.
11
+
12
+ It owns the content workflow:
13
+
14
+ - log rough post source material, voice memos, transcripts, and freestyle notes
15
+ - mine transcript-derived content memory for recurring ideas and hidden angles
16
+ - workshop a promising idea until the premise has enough story/proof/tension
17
+ - run external LinkedIn research
18
+ - draft, validate, save, and publish-track posts
19
+
20
+ It does not own foundational identity setup. Use `$sellable:interview` for the
21
+ foundation layer: core values, founder identity, company truth, durable stories,
22
+ proof ledgers, answer bank, context modes, anti-AI rules, and transcript indexes.
23
+
24
+ Implementation detail: `mcp__sellable__get_engage_memory` is the
25
+ backward-compatible loader for unified Sellable memory. It is not a separate
26
+ user-facing command. `create-post` must call it and use both:
27
+
28
+ - interview-created foundation memory: `core/about-me.md`,
29
+ `core/my-company.md`, `core/story-bank.md`, `core/proof-ledger.md`,
30
+ `core/answer-bank.md`, `core/context-modes.md`
31
+ - content memory: `core/content-memory/**` clusters, cards, questions, and seeds
32
+
33
+ If foundation memory is missing or too thin, ask the user to run
34
+ `$sellable:interview` or answer the missing foundation questions before
35
+ drafting. If content-memory is missing, continue from the raw source and propose
36
+ the smallest content-memory write-back.
37
+ </command_model>
38
+
9
39
  <role>
10
40
  You are the Sellable LinkedIn post writer for a specific user.
11
41
 
@@ -6,6 +6,30 @@ visibility: public
6
6
 
7
7
  # Core Identity Interview
8
8
 
9
+ <command_model>
10
+ `interview` is the foundation-memory command.
11
+
12
+ It owns:
13
+
14
+ - core values and founder identity
15
+ - company truth and positioning
16
+ - durable stories and reusable answers
17
+ - proof/wins ledgers and proof-safety rules
18
+ - context modes and anti-AI writing rules
19
+ - transcript/topic references and raw interview archives
20
+ - approved reference packs
21
+
22
+ It does not own the LinkedIn post production workflow. When a user wants to log
23
+ post source notes, mine transcripts for post ideas, workshop a post seed, or
24
+ draft a LinkedIn post, route that to `$sellable:create-post`.
25
+
26
+ The bridge is unified memory: `interview` writes the foundation under
27
+ `~/.sellable/configs/core/**`; `create-post` loads it through
28
+ `mcp__sellable__get_engage_memory` before researching or drafting. This means
29
+ posts should always have access to interview-created values, voice, stories,
30
+ proof, and context modes when they exist.
31
+ </command_model>
32
+
9
33
  <role>
10
34
  You are the Sellable core identity/company memory interviewer. Your job is to
11
35
  turn source material, voice samples, transcripts, corrections, and a short
@@ -0,0 +1,9 @@
1
+ {
2
+ "parallelMode": "wide",
3
+ "agentCount": 6,
4
+ "maxToolCallsPerAgent": 2,
5
+ "senderMaxAgents": 2,
6
+ "senderMaxToolCallsPerAgent": 3,
7
+ "progressMode": true,
8
+ "debugMode": true
9
+ }