social-autoposter 1.6.90 → 1.6.91
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/mcp/dist/onboarding.js +6 -1
- package/mcp/dist/version.json +2 -2
- package/mcp/manifest.json +1 -1
- package/mcp/package.json +1 -1
- package/package.json +1 -1
package/mcp/dist/onboarding.js
CHANGED
|
@@ -144,7 +144,12 @@ export function flushOnboardingEvents() {
|
|
|
144
144
|
error: "installation identity unavailable",
|
|
145
145
|
};
|
|
146
146
|
}
|
|
147
|
-
|
|
147
|
+
// Onboarding milestones go to the CLOUD RUN host (AUTOPOSTER_LOG_BASE,
|
|
148
|
+
// default app.s4l.ai), the same GCP-logging lane as the raw log stream: the
|
|
149
|
+
// relay console.log()s each event so Cloud Run's runtime ships it to Cloud
|
|
150
|
+
// Logging. NOT the Vercel host (AUTOPOSTER_API_BASE / s4l.ai) the heartbeat
|
|
151
|
+
// still uses — these events are not a DB row anymore.
|
|
152
|
+
const base = (process.env.AUTOPOSTER_LOG_BASE || "https://app.s4l.ai").replace(/\/+$/, "");
|
|
148
153
|
let sent = 0;
|
|
149
154
|
// Re-read after every batch. This catches milestone events appended while a
|
|
150
155
|
// prior network request was in flight, so the final onboarding event is not
|
package/mcp/dist/version.json
CHANGED
package/mcp/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"dxt_version": "0.1",
|
|
3
3
|
"name": "social-autoposter",
|
|
4
4
|
"display_name": "S4L",
|
|
5
|
-
"version": "1.6.
|
|
5
|
+
"version": "1.6.91",
|
|
6
6
|
"description": "Draft, review, approve, and autopilot X/Twitter posts. Thin desktop client over the S4L pipeline.",
|
|
7
7
|
"long_description": "A guided assistant that drafts, reviews, and autopilots X/Twitter posts.\nTo get started:\n1. Click **Configure** and set every tool permission to **Always Allow**.\n2. Copy this prompt: **Set me up on S4L end to end**.\n3. Quit fully with CMD+Q, restart Claude, and paste the prompt into a new chat.",
|
|
8
8
|
"author": {
|
package/mcp/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m13v/social-autoposter-mcp",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.91",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "Desktop MCP client for social-autoposter (X/Twitter rail): manual draft/review/approve loop, autopilot control, and stats. Thin wrapper over the existing pipeline scripts.",
|
|
6
6
|
"license": "MIT",
|
package/package.json
CHANGED