Build LinkedIn thought leadership with algorithmic understanding, strategic consistency, and AI-assisted content creation. Updated for the January 2026 360Brew algorithm change. 16 agents, 25 commands, 6 skills, 9 hooks, 24 reference docs. Personal data sanitized: voice samples generalized to template, high-engagement posts cleared, region-specific references replaced with placeholders. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
78 lines
2 KiB
Markdown
78 lines
2 KiB
Markdown
# LinkedIn Analytics Data
|
|
|
|
This directory contains imported analytics data from LinkedIn CSV exports.
|
|
|
|
## How to Import
|
|
|
|
1. Go to [LinkedIn Creator Analytics](https://www.linkedin.com/analytics/creator/content/)
|
|
2. Click **Export** to download a CSV of your content analytics
|
|
3. Save the CSV file to `exports/` directory
|
|
4. Run `/linkedin:import` in Claude Code
|
|
|
|
## Directory Structure
|
|
|
|
```
|
|
analytics/
|
|
├── exports/ # Place LinkedIn CSV exports here
|
|
├── posts/ # Auto-generated: imported post data (JSON)
|
|
├── weekly-reports/ # Auto-generated: weekly performance reports (JSON)
|
|
└── README.md # This file
|
|
```
|
|
|
|
## Data Format
|
|
|
|
### Post Analytics (posts/*.json)
|
|
|
|
Each file contains a batch of imported posts:
|
|
|
|
```json
|
|
{
|
|
"batchId": "batch-...",
|
|
"importedAt": "2026-01-29T...",
|
|
"exportFilename": "content-analytics.csv",
|
|
"dateRange": { "from": "2026-01-13", "to": "2026-01-28" },
|
|
"postCount": 8,
|
|
"posts": [
|
|
{
|
|
"id": "abc123",
|
|
"title": "First 100 chars of post...",
|
|
"publishedDate": "2026-01-28",
|
|
"metrics": {
|
|
"impressions": 4523,
|
|
"reactions": 87,
|
|
"comments": 23,
|
|
"shares": 12,
|
|
"clicks": 156,
|
|
"engagementRate": 6.15
|
|
}
|
|
}
|
|
]
|
|
}
|
|
```
|
|
|
|
### Weekly Reports (weekly-reports/*.json)
|
|
|
|
Generated via `/linkedin:report`. Contains:
|
|
- Summary metrics (totals, averages)
|
|
- Top and underperforming posts
|
|
- Week-over-week trends
|
|
- Performance alerts (spikes, drops)
|
|
|
|
## CLI Usage
|
|
|
|
The analytics CLI can also be invoked directly:
|
|
|
|
```bash
|
|
# Import a CSV export
|
|
ANALYTICS_ROOT=./assets/analytics node --import tsx scripts/analytics/src/cli.ts import <filename>
|
|
|
|
# Generate weekly report
|
|
ANALYTICS_ROOT=./assets/analytics node --import tsx scripts/analytics/src/cli.ts report --week 2026-W05
|
|
|
|
# Analyze trends
|
|
ANALYTICS_ROOT=./assets/analytics node --import tsx scripts/analytics/src/cli.ts trends --period month --metric impressions
|
|
```
|
|
|
|
## Privacy
|
|
|
|
All data in this directory (except this README) is gitignored. Your analytics data stays local.
|