social-autoposter 1.6.87 → 1.6.88

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/bin/cli.js CHANGED
@@ -591,10 +591,9 @@ function generatePlists() {
591
591
  stderrLog: `${DEST}/skill/logs/launchd-self-update-stderr.log`,
592
592
  },
593
593
  {
594
- // On-screen overlay watcher supervisor. The overlay (harness status banner;
595
- // the interactive draft sidebar is OFF by default as of 2026-06-23, opt back
596
- // in with SAPS_SIDEBAR=1) only renders WHILE harness_overlay.py watch runs.
597
- // The supervisor is idempotent (pgrep guard), so a 60s StartInterval
594
+ // On-screen overlay watcher supervisor. The overlay (harness status banner)
595
+ // only renders WHILE harness_overlay.py watch runs. The supervisor is
596
+ // idempotent (pgrep guard), so a 60s StartInterval
598
597
  // is a no-op while the watcher is up and re-spawns it within a minute if it
599
598
  // ever dies. RunAtLoad starts it right after install. This is what makes the
600
599
  // overlay appear on headless / remote installs (Lane A); the MCP covers the
package/mcp/dist/index.js CHANGED
@@ -346,9 +346,8 @@ function cycleProgressMessage(line) {
346
346
  return null;
347
347
  }
348
348
  // Start the twitter-harness on-screen overlay watcher if it isn't already up.
349
- // The overlay (status banner; the interactive draft sidebar is OFF by default as
350
- // of 2026-06-23, opt back in with SAPS_SIDEBAR=1) only renders WHILE
351
- // `harness_overlay.py watch` runs. The supervisor script is idempotent (pgrep
349
+ // The overlay (status banner) only renders WHILE `harness_overlay.py watch`
350
+ // runs. The supervisor script is idempotent (pgrep
352
351
  // guard), so calling this on every draft_cycle / autopilot-enable / show-browser
353
352
  // is safe: it spawns at most one detached watcher and is a fast no-op otherwise.
354
353
  //
@@ -2409,7 +2408,7 @@ tool("show_browser_to_user", {
2409
2408
  return jsonContent({ ok: true, brought_to_front: true, port: res.port });
2410
2409
  }
2411
2410
  // If the user is about to watch the live browser, make sure the on-screen
2412
- // overlay watcher is up too so the harness window carries status + drafts.
2411
+ // overlay watcher is up too so the harness window carries its status banner.
2413
2412
  if (action === "start")
2414
2413
  await ensureOverlayWatch();
2415
2414
  const ensured = await screencast.ensure(typeof args?.port === "number" ? args.port : undefined);
@@ -1,4 +1,4 @@
1
1
  {
2
- "version": "1.6.87",
3
- "installedAt": "2026-06-23T18:34:55.294Z"
2
+ "version": "1.6.88",
3
+ "installedAt": "2026-06-23T18:40:27.430Z"
4
4
  }
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.87",
5
+ "version": "1.6.88",
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": {
@@ -173,7 +173,7 @@ class S4LMenuBar(rumps.App):
173
173
  # indicator + the "Please update now" menu item.
174
174
  self._update_available = False
175
175
  self._latest_version = None
176
- self._upd_timer = rumps.Timer(self._check_update, 1800) # every 30 min
176
+ self._upd_timer = rumps.Timer(self._check_update, 60) # every 1 min
177
177
  self._upd_timer.start()
178
178
  self._check_update(None)
179
179
  self._tick(None)
package/mcp/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m13v/social-autoposter-mcp",
3
- "version": "1.6.87",
3
+ "version": "1.6.88",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "social-autoposter",
3
- "version": "1.6.87",
3
+ "version": "1.6.88",
4
4
  "description": "Automated social posting pipeline for Reddit, X/Twitter, LinkedIn, and Moltbook. Install as a Claude Code agent skill.",
5
5
  "bin": {
6
6
  "social-autoposter": "bin/cli.js"
@@ -3,9 +3,7 @@
3
3
  #
4
4
  # WHAT: keeps exactly ONE `harness_overlay.py watch` process alive. That watcher
5
5
  # injects the status overlay into the twitter-harness Chrome window so a human
6
- # watching the harness sees what the pipeline is doing. (The interactive "Drafts
7
- # to post" sidebar is OFF by default as of 2026-06-23; opt back in with
8
- # SAPS_SIDEBAR=1.)
6
+ # watching the harness sees what the pipeline is doing.
9
7
  #
10
8
  # WHY a supervisor: the overlay only renders WHILE the watch process runs. It was
11
9
  # previously a manual, local-only process, so it never appeared on headless /