@sellable/mcp 0.1.266 → 0.1.267
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/package.json
CHANGED
|
@@ -318,6 +318,8 @@ The approved pack is capped at 20 gold standards. If adding new approved example
|
|
|
318
318
|
|
|
319
319
|
Use when the user names creators, thought leaders, profile URLs, or says to
|
|
320
320
|
write variants using a specific person's recent best content as inspiration.
|
|
321
|
+
Also use this mode when the user says "use my configured thought leaders",
|
|
322
|
+
"use my influencers", "use the tracked people list", or similar.
|
|
321
323
|
|
|
322
324
|
This mode does not clone the person's voice. It extracts public, reusable
|
|
323
325
|
mechanics from their recent posts and adapts those mechanics into the user's
|
|
@@ -326,12 +328,18 @@ voice, proof, story, and product truth.
|
|
|
326
328
|
Default workflow:
|
|
327
329
|
|
|
328
330
|
1. Normalize the requested people into a `thought_leader_list` with name,
|
|
329
|
-
LinkedIn profile URL or handle, reason, and optional lane.
|
|
331
|
+
LinkedIn profile URL or handle, reason, and optional lane. If the user asks
|
|
332
|
+
for the configured list, load it from memory-backed
|
|
333
|
+
`discovery/influencers.md` and include only rows where
|
|
334
|
+
`Include in Discovery` is not `false`. Treat the `Reason` column as the
|
|
335
|
+
person's lane/adaptation brief.
|
|
330
336
|
2. If the user gives only a name and the profile cannot be resolved from
|
|
331
337
|
tracked people or memory, ask for the profile URL or handle before running
|
|
332
338
|
person-specific research.
|
|
333
339
|
3. When the host supports background agents, launch one bounded
|
|
334
340
|
`thought-leader-worker` per person. If not, process each person sequentially.
|
|
341
|
+
Each configured person must receive full person-specific research; do not
|
|
342
|
+
collapse the configured list into generic space research.
|
|
335
343
|
4. Each worker fetches that person's recent posts with
|
|
336
344
|
`mcp__sellable__fetch_linkedin_posts`, and fetches profile/follower context
|
|
337
345
|
with `mcp__sellable__fetch_linkedin_profile` when available.
|
|
@@ -699,8 +699,12 @@ best source" tension. Do not borrow the source's dinner/community proof.
|
|
|
699
699
|
## Thought Leader Inspiration Workers
|
|
700
700
|
|
|
701
701
|
When the user supplies a list of thought leaders, creators, profile URLs, or
|
|
702
|
-
handles, run a separate inspiration analysis per person.
|
|
703
|
-
|
|
702
|
+
handles, run a separate inspiration analysis per person. Also do this when the
|
|
703
|
+
user asks for configured thought leaders, influencers, or tracked people. The
|
|
704
|
+
configured source is memory-backed `discovery/influencers.md`; include only
|
|
705
|
+
rows where `Include in Discovery` is not `false`, and treat each row's `Reason`
|
|
706
|
+
as that person's lane/adaptation brief. This is different from general search:
|
|
707
|
+
the source set is the person's own recent content.
|
|
704
708
|
|
|
705
709
|
Use one bounded background worker per person when the host supports background
|
|
706
710
|
agents. If not, process the list sequentially. Each worker must keep its output
|
|
@@ -709,7 +713,8 @@ compact and must not return a full corpus dump.
|
|
|
709
713
|
Worker steps:
|
|
710
714
|
|
|
711
715
|
1. Resolve the person's profile URL or handle from the user input, tracked
|
|
712
|
-
people, or memory. If
|
|
716
|
+
people, or memory. If the user asked for the configured list, resolve from
|
|
717
|
+
`discovery/influencers.md` first. If unresolved, ask for the URL/handle.
|
|
713
718
|
2. Fetch recent posts with `mcp__sellable__fetch_linkedin_posts`.
|
|
714
719
|
3. Fetch profile/follower context with `mcp__sellable__fetch_linkedin_profile`
|
|
715
720
|
when available.
|
|
@@ -731,6 +736,12 @@ Worker steps:
|
|
|
731
736
|
8. Create one adapted direction for the user's selected premise in
|
|
732
737
|
Christian/Sellable voice.
|
|
733
738
|
|
|
739
|
+
Each configured person must receive a full person-specific packet. Do not
|
|
740
|
+
summarize the group as a single "GTM influencers" research pass. The later
|
|
741
|
+
drafting stage should be able to compare how Alex, Zayd, Tas, Anthony, or any
|
|
742
|
+
other configured person would structurally pressure-test the same Christian
|
|
743
|
+
idea without copying their voice, proof, jokes, or persona.
|
|
744
|
+
|
|
734
745
|
Worker output:
|
|
735
746
|
|
|
736
747
|
```text
|