From linktree-pack
Executes Linktree analytics & insights workflow: retrieves link click/view stats, CTR, per-link performance, and audience demographics. Activated by 'linktree analytics & insights' or 'secondary linktree workflow'.
How this skill is triggered — by the user, by Claude, or both
Slash command
/linktree-pack:linktree-core-workflow-bThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Secondary workflow complementing the primary workflow.
Secondary workflow complementing the primary workflow.
const analytics = await client.analytics.get({
profile_id: profile.id,
period: 'last_30_days'
});
console.log(`Total views: ${analytics.views}`);
console.log(`Total clicks: ${analytics.clicks}`);
console.log(`CTR: ${(analytics.clicks / analytics.views * 100).toFixed(1)}%`);
const linkStats = await client.analytics.byLink({
profile_id: profile.id,
period: 'last_7_days'
});
linkStats.forEach(s =>
console.log(`${s.title}: ${s.clicks} clicks (${s.unique_visitors} unique)`)
);
const audience = await client.analytics.audience({ profile_id: profile.id });
console.log('Top locations:', audience.locations.slice(0, 5));
console.log('Top referrers:', audience.referrers.slice(0, 5));
console.log('Device split:', audience.devices);
See linktree-common-errors.
npx claudepluginhub ia23a-lachnita/claude-code-plugins-plus-fix-skills --plugin linktree-pack2plugins reuse this skill
First indexed Jul 17, 2026
Fetches Linktree analytics including click tracking, conversion rates, and audience demographics for analyzing traffic sources and engagement trends.
Analyzes backlink profiles and AI-assistant referral traffic (ChatGPT, Perplexity) from GA4/GSC/logs. Profiles referring domains, toxic links, disavow candidates, and AI referral trends.
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.