R3 slice 1 (research-deepening). Stop discarding the relevance judgment the
trend-spotter already computes: persist a 4-field TrendScore {mode, dimensions,
composite, priority} on TrendRecord (schema v2->v3, additive lossless migrate),
computed by the existing score.ts composite()+band() (one owner, no new arithmetic),
threaded item->store; then rankForBrief sorts each bucket composite-first (sentinel
-1 for unscored) and renderBrief surfaces "· <priority> (<mode>)" per body entry
(briefSummary shows the band only). First-sight only; mode-blind ranking with the mode
shown so the operator can disambiguate instruments.
- score.ts: TrendScore + requiredDimensions(mode) (ordered) + scoreEnvelope (composes
composite+band; throws on bad dim by contract)
- types.ts: SCHEMA_VERSION 2->3; TrendRecord.score?
- store.ts: TrendInput.score?; addTrend persists first-sight (duplicate keeps it);
migrate comment v1->v2->v3 (logic unchanged, JSON.stringify preserves the field)
- item.ts: TrendItem.score?; normalizeItem validates (non-array score/dimensions + the
mode's five dims in [1,10]) -> structured error never throw, carries validated dims;
itemToInput -> scoreEnvelope (no throw on the capture path; direct call throws by contract)
- brief.ts: composite-primary comparator; band+mode render; exact ranking: descriptor
- cli.ts: capture persists score via itemToInput (doc-only); add/score paths unchanged
- agents/trend-spotter.md Step 4.5: capture batch carries the Step-2 dimensions
- gate: TRENDS_TESTS_FLOOR 104->146; new unconditional Section 16j; ASSERT floor 94->99
Tests: trends 146/146 (RED two-phase: logic-RED store/brief/cli; stub-first then
assertion-RED score/item). Gate green (Passed 114 / Failed 0; 113 checks >= 99).
Hook suite 139/139 untouched. Counts 27/19/29 unchanged. No new source file/agent/command.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01VmHCQjJHUyWwxGAVVjNLgp
116 lines
5.6 KiB
Markdown
116 lines
5.6 KiB
Markdown
# linkedin-trends-store
|
||
|
||
Persistent **trend store** — the foundation layer of the research engine
|
||
(retning §5). A topic-tagged, provenance-bearing inventory of trend signals
|
||
captured over time, so the engine accumulates **history** instead of starting
|
||
amnesiac each session.
|
||
|
||
Twin of [`scripts/specifics-bank`](../specifics-bank): same deterministic
|
||
store / dedup / query discipline, different dedupe key — a trend is identified by
|
||
its **normalized title+URL**, not by free-text content.
|
||
|
||
## Generic by architecture
|
||
|
||
Nothing niche-specific lives here. A `TrendRecord` carries free-form `topics`
|
||
tags and a free-form `source` string; *which* topics matter and *which* sources
|
||
to poll are decided upstream (config/profile + the capture agent), never
|
||
hard-coded in this module. The same store serves any niche.
|
||
|
||
## Data location
|
||
|
||
The store lives under the per-user data dir (M0 data-path convention), so trend
|
||
history survives plugin upgrades/reinstalls:
|
||
|
||
```
|
||
${LINKEDIN_STUDIO_DATA:-$HOME/.claude/linkedin-studio}/trends/trends.json
|
||
```
|
||
|
||
`LINKEDIN_STUDIO_DATA` overrides the root. No path is hard-coded in prose.
|
||
|
||
## Record shape (minimal generic core)
|
||
|
||
```ts
|
||
interface TrendRecord {
|
||
id: string; // sha256(normalized title+url).slice(0,12) — also the dedupe key
|
||
title: string; // headline, verbatim
|
||
url: string; // source URL, verbatim
|
||
source: string; // "tavily" | "websearch" | "manual" | <mcp-name>
|
||
capturedAt: string; // ISO-8601 date — when WE captured it
|
||
publishedAt?: string;// optional source publish date (ISO-8601); distinct from capturedAt, first-sight, never back-filled
|
||
topics: string[]; // query tags; unioned across re-captures
|
||
summary?: string; // optional, verbatim
|
||
score?: TrendScore; // optional persisted relevance (RE-R3a): { mode, dimensions, composite, priority } — first-sight, never re-scored
|
||
}
|
||
```
|
||
|
||
`score` is the persisted relevance envelope (RE-R3a): a capture **item** carries the
|
||
agent's **judgment** — `{ mode, dimensions }` (the five 1–10 dimension scores) — and the
|
||
store turns that into the persisted `TrendScore` `{ mode, dimensions, composite, priority }`,
|
||
computing the composite + band once via the single scorer owner (`src/score.ts`). It is
|
||
set **first-sight** (never updated on re-capture); the score-free `add` manual path omits it.
|
||
The morning brief ranks each bucket on `composite` first (schema v3). Further fields
|
||
(first-mover timing, status) can still be added in a later slice without breaking the shape.
|
||
|
||
## CLI
|
||
|
||
```bash
|
||
# Capture freshly-polled trends — the NORMALIZING BATCH path (the research agent's path):
|
||
# raw items on stdin → validate+normalize each → dedupe on title+url → union topics on
|
||
# re-capture → persist the source's publishedAt → persist the relevance score (when carried).
|
||
# Content-invalid items (incl. a malformed/out-of-range score) are reported in the summary
|
||
# errors[], never fail the run; the summary is {added, duplicates, merged, errors}.
|
||
# An item's "score" carries the agent's judgment (mode + the five 1–10 dimensions); the store
|
||
# computes the composite + band and persists the full TrendScore first-sight.
|
||
echo '[{"source":"tavily","title":"Agentic workflows hit production",
|
||
"url":"https://example.com/agentic","topics":["agents","engineering"],
|
||
"publishedAt":"2026-06-20","summary":"Teams ship multi-step agents past the demo stage.",
|
||
"score":{"mode":"kortform","dimensions":{"pillar":9,"audience":8,"timing":9,"angle":7,"authority":6}}}]' \
|
||
| node --import tsx src/cli.ts capture [--store <path>] [--json]
|
||
|
||
# Add a SINGLE trend MANUALLY — raw flags, no normalization, publish-date-free:
|
||
node --import tsx src/cli.ts add \
|
||
--title "Agentic workflows hit production" \
|
||
--url "https://example.com/agentic" \
|
||
--topics "agents,engineering" --source tavily \
|
||
--summary "Teams ship multi-step agents past the demo stage."
|
||
|
||
# Topic-scoped history — trends matching these topics, ranked by overlap then recency
|
||
node --import tsx src/cli.ts query --topics "agents,engineering" [--json]
|
||
|
||
# Time-scoped history — newest first, optionally windowed/capped
|
||
node --import tsx src/cli.ts list [--since 2026-06-01] [--limit 10] [--json]
|
||
|
||
# Dated morning brief — rank the store by pillar-overlap then recency, write a dated
|
||
# Markdown file the SessionStart hook surfaces. Pillars come from the caller (user config).
|
||
node --import tsx src/cli.ts brief --pillars "agents,engineering" \
|
||
[--fresh-days 7] [--out <dir>] [--store <path>] [--json]
|
||
```
|
||
|
||
Both `capture` and `add` dedupe on normalized title+url — re-capturing the same trend
|
||
never appends a duplicate, it only unions any new topics in.
|
||
|
||
## Morning brief (RE-R2b)
|
||
|
||
`brief` is the dated, surfaced read over the store (distinct from `query`/`list`, which are
|
||
interactive dumps). It ranks the store against the user's pillars — overlap desc, then
|
||
`publishedAt ?? capturedAt` recency — buckets into top (2+ pillars), single (1 pillar), and
|
||
older (matched but outside the freshness window, default 7 days), and writes:
|
||
|
||
```
|
||
${LINKEDIN_STUDIO_DATA:-$HOME/.claude/linkedin-studio}/trends/morning-brief/YYYY-MM-DD.md
|
||
```
|
||
|
||
The file's YAML frontmatter carries a single-line `summary` the SessionStart hook surfaces
|
||
verbatim (zero-tsx — it reads the Markdown, never the TS CLI). As of RE-R3a the brief ranks
|
||
each bucket on the persisted relevance **composite first** (then pillar-overlap, then recency);
|
||
a scored entry shows `· <priority> (<mode>)` and the summary names the top entry's band. An
|
||
autonomous nightly trigger and a seen-log freshness model remain later slices.
|
||
|
||
## Tests
|
||
|
||
```bash
|
||
cd scripts/trends
|
||
npm install
|
||
npm test # deterministic store: normalize/id, load/save, dedup+union, query, history
|
||
npm run build
|
||
```
|