feat(linkedin-studio): N13 — publiserings-slots + vacancy-varsel + WIP-roll-up + slot-default [skip-docs]
A1-10 + D-5. The queue answers "what is scheduled"; nothing answered "is the week covered, and what is still being written". N13 makes both readable at session start. - Publishing slots are operator config: profile/publishing-slots.json in the per-user data dir, schema + OPT-IN template in config/publishing-slots.template.json. The plugin ships no publishing times and writes the grid for nobody; absent config means every slot surface stays silent (same never-nag discipline as the trend/brain nudges). Data dir rather than the state file, which is machine-written and whose frontmatter reader does not parse lists. - hooks/scripts/slots.mjs (new): one implementation behind four surfaces. Zero-dep (a SessionStart hook must not spawn tsx), pure core (dates in as strings, no clock), imported by the commands exactly as queue-manager.mjs already is — so session-start's vacancy warning and Step 10's slot default cannot drift apart. - Coverage counts the short-form queue (scheduled/published; cancelled frees the slot) AND editions-register rows claiming that date, counted per date, so long-form and short-form cannot be double-booked and a two-slot day needs two posts. - Session start gains "## Editions in Flight" (series, phase, next action, claimed slot, days in flight) and "## Publishing Slots" (next open slot, open count in 14 days, and how to fill it when the gap is <=3 days). The existing discovery nudge is untouched. - /linkedin router + /linkedin:calendar surface the same roll-up; calendar documents the opt-in copy. /linkedin:newsletter Step 10 defaults to the next open slot (one confirmation, not an interview) and writes --slot onto the register row. - D-5: references/scheduling-strategy.md marked "confidence: low / directional" per the algorithm reference's own standard, deferring to the operator's grid and their own analytics. Neutral example time replaces the operator-specific one in the N12 docs. TDD: red proven first (module absent; 5 session-start behaviours failing). hooks 140 -> 174 · test-runner 184 -> 197 (Section 16t: 13 unconditional greps incl. a de-niche check that no publishing time is hardcoded in the slot path and no operator grid is committed, + non-vacuity self-test; anti-erosion floor 166 -> 179). Suites green: trends 300/0 · brain 134/0 · editions 72/0 · specifics-bank 45/0 · tests 35/0 · render 60/0. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QxvWAjte7vPcF79QeSRvRJ
This commit is contained in:
parent
657539ef09
commit
677eab9294
14 changed files with 1069 additions and 19 deletions
|
|
@ -56,6 +56,32 @@ OVERDUE (should have been posted):
|
|||
|
||||
If queue is empty: "No posts scheduled. Run /linkedin:batch to plan your week."
|
||||
|
||||
## Work in Progress + Open Slots
|
||||
|
||||
The queue only shows finished posts waiting to go out. Add the production picture —
|
||||
long-form editions still being written, and publishing slots nothing covers yet:
|
||||
|
||||
```bash
|
||||
node --input-type=module -e "
|
||||
import { activeEditions, slotVacancies, formatSlot, readSlots } from '${CLAUDE_PLUGIN_ROOT}/hooks/scripts/slots.mjs';
|
||||
console.log('=== IN FLIGHT ===');
|
||||
console.log(activeEditions().map(e => e.series + ' #' + e.editionId + ' | ' + e.currentPhase + ' | next: ' + (e.nextAction || 'unset') + ' | ' + e.daysInFlight + 'd').join('\n') || 'none');
|
||||
console.log('=== OPEN SLOTS ===');
|
||||
console.log(readSlots().slots.length ? (slotVacancies({ days: 14 }).map(s => formatSlot(s)).join('\n') || 'none - every planned slot is covered') : 'grid not configured');
|
||||
"
|
||||
```
|
||||
|
||||
Show one line per in-flight edition and the next open slot:
|
||||
|
||||
```
|
||||
In flight: [series #NN] — [phase] → [next action] ([N]d)
|
||||
Next open slot: [Thu YYYY-MM-DD 12:00 (in N days)] — [X] open in 14 days
|
||||
```
|
||||
|
||||
Both lines are omitted when there is nothing to report (no active editions / no grid
|
||||
configured). If the grid is not configured, do **not** nag — `/linkedin:calendar`
|
||||
explains the opt-in when the user goes there.
|
||||
|
||||
## Available Commands
|
||||
|
||||
LinkedIn Studio is organized as **five journeys**. Each journey has a **front-door**
|
||||
|
|
@ -165,6 +191,7 @@ If the user's intent is clear from context:
|
|||
- Mentions "trends" or "trending" or "discovery pass" or "morning brief" or "what should I write about" → Route to `/linkedin:trends`
|
||||
- Mentions "batch" or "week of content" → Route to `/linkedin:batch`
|
||||
- Mentions "calendar" or "schedule" or "queue" or "upcoming posts" or "what's scheduled" → Route to `/linkedin:calendar`
|
||||
- Mentions "slot" or "publishing slots" or "empty slot" or "open slot" or "slot grid" or "what's in flight" or "work in progress" → Route to `/linkedin:calendar` (slot grid, vacancies, editions in flight)
|
||||
- Mentions "publish" or "mark as published" or "posted today" or "just published" or "post is live" → Route to `/linkedin:calendar` (publish action)
|
||||
- Mentions "plan" → Suggest `content-planner` agent
|
||||
- Mentions "profile" or "topic-relevance" → Route to `/linkedin:profile`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue