forkfeed-mcp 1.3.6 → 1.3.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/dist/guide-content.js +3 -3
- package/dist/index.js +6 -6
- package/package.json +1 -1
package/dist/guide-content.js
CHANGED
|
@@ -50,7 +50,7 @@ Only 5 fields + cards. Everything else is auto-populated.
|
|
|
50
50
|
|------------|---------|-------|
|
|
51
51
|
| \`{ "img": "img47" }\` | CONTENT_IMAGE | sizing defaults to "wide". Options: automatic, wide, portrait, square, small_portrait |
|
|
52
52
|
| \`{ "img": "img47", "sizing": "square" }\` | CONTENT_IMAGE | With explicit sizing |
|
|
53
|
-
| \`{ "title": "Heading" }\` | CONTENT_TITLE |
|
|
53
|
+
| \`{ "title": "Heading" }\` | CONTENT_TITLE | Cards 0-4 detail variants, sentence case |
|
|
54
54
|
| \`{ "text": "Paragraph..." }\` | CONTENT_TEXT | 50-200 words, use \\\\n\\\\n for breaks |
|
|
55
55
|
| \`{ "code": "const x = 1", "lang": "typescript" }\` | CONTENT_CODE | Real code from diff, 5-20 lines, strip +/- prefixes |
|
|
56
56
|
| \`{ "subtext": "Pro tip..." }\` | CONTENT_SUBTEXT | Aside or protip |
|
|
@@ -88,7 +88,7 @@ Each card = array of detail variants (cover is auto-generated). Provide 1+ varia
|
|
|
88
88
|
| 2 | The LinkedIn post | 2-3 | social -> title -> text | Peak LinkedIn parody |
|
|
89
89
|
| 3 | Learning moment | 2-3 | img -> title -> text -> optional code -> button(last) | Teach with personality |
|
|
90
90
|
| 4 | Alternatives | 2-3 | img -> title -> text -> optional code | Constructive snark |
|
|
91
|
-
| 5 | Quiz | 4-6 |
|
|
91
|
+
| 5 | Quiz | 4-6 | quiz only (no img or title blocks) | Quiz show energy |
|
|
92
92
|
|
|
93
93
|
### Card 2 personas (LinkedIn)
|
|
94
94
|
- Chad Gitpush: "10x Engineer | Building in Public | DMs Open"
|
|
@@ -104,7 +104,7 @@ Each card = array of detail variants (cover is auto-generated). Provide 1+ varia
|
|
|
104
104
|
- 8-12 unique scene images (img*) across the feed, no duplicate within same card
|
|
105
105
|
- Cards 0-3: code must be REAL from the diff (never fabricated)
|
|
106
106
|
- Card 4: synthesized code IS allowed
|
|
107
|
-
- Card 5: no img blocks, quiz blocks only (
|
|
107
|
+
- Card 5: no img blocks, quiz blocks only (question serves as heading)
|
|
108
108
|
- Card 3: every detail variant MUST end with a button block
|
|
109
109
|
- Card 2: first block should be social (not img), no engagement metrics subtext (reactions, comments, reposts)
|
|
110
110
|
- CONTENT_QUIZ: 4 options recommended (min 2), exactly one correct, always include explanation
|
package/dist/index.js
CHANGED
|
@@ -282,12 +282,12 @@ async function fetchStatusData() {
|
|
|
282
282
|
}
|
|
283
283
|
// ── Cover titles (fixed per card index) ──────────────────────────────
|
|
284
284
|
const COVERS = [
|
|
285
|
-
{ title: "Explain Like I'm 5", subtitle: "Hopefully now you'll understand what you pushed" },
|
|
286
|
-
{ title: "The Roast", subtitle: "Your code had it coming" },
|
|
287
|
-
{ title: "The LinkedIn Post", subtitle: "Mass cringe, freshly generated" },
|
|
288
|
-
{ title: "Learning Moment", subtitle: "Something useful buried in your chaos" },
|
|
289
|
-
{ title: "Alternatives", subtitle: "What you could have done instead" },
|
|
290
|
-
{ title: "Quiz", subtitle: "Let's see if you even understand your own code" },
|
|
285
|
+
{ title: "🧒 Explain Like I'm 5", subtitle: "Hopefully now you'll understand what you pushed" },
|
|
286
|
+
{ title: "🔥 The Roast", subtitle: "Your code had it coming" },
|
|
287
|
+
{ title: "💼 The LinkedIn Post", subtitle: "Mass cringe, freshly generated" },
|
|
288
|
+
{ title: "💡 Learning Moment", subtitle: "Something useful buried in your chaos" },
|
|
289
|
+
{ title: "🔀 Alternatives", subtitle: "What you could have done instead" },
|
|
290
|
+
{ title: "🧠 Quiz", subtitle: "Let's see if you even understand your own code" },
|
|
291
291
|
];
|
|
292
292
|
// ── Simplified block inference ───────────────────────────────────────
|
|
293
293
|
function inferBlock(block) {
|