linktree-core-workflow-b

Featured

Execute Linktree secondary workflow: Analytics & Insights. Trigger: "linktree analytics & insights", "secondary linktree workflow".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Linktree — Analytics & Reporting ## Overview Pull click tracking data, measure conversion rates, and extract audience insights from your Linktree profile. Use this workflow when you need to understand which links drive traffic, where your audience comes from, and how engagement trends over time. This is the secondary workflow — for link creation and profile management, see `linktree-core-workflow-a`. ## Instructions ### Step 1: Fetch Overall Profile Analytics ```typescript const analytics = await client.analytics.get({ profile_id: profile.id, period: 'last_30_days', granularity: 'daily', }); console.log(`Total views: ${analytics.views}`); console.log(`Total clicks: ${analytics.clicks}`); console.log(`CTR: ${(analytics.clicks / analytics.views * 100).toFixed(1)}%`); analytics.daily.forEach(d => console.log(` ${d.date}: ${d.views} views, ${d.clicks} clicks`) ); ``` ### Step 2: Rank Per-Link Performance ```typescript const linkStats = await client.analytics.byLink({ profile_id: profile.id, period: 'last_7_days', sort: 'clicks_desc', }); linkStats.forEach((s, i) => console.log(`#${i + 1} ${s.title}: ${s.clicks} clicks (${s.unique_visitors} unique, CTR ${s.ctr}%)`) ); ``` ### Step 3: Pull Audience Demographics ```typescript const audience = await client.analytics.audience({ profile_id: profile.id, period: 'last_30_days', }); console.log('Top locations:', audience.locations.slice(0, 5).map(l => `${l.country}: ${l.pct}%`)); console.log('Top referrers:...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category