From linktree-pack
Manages Linktree profiles and links via API client: fetch profile, create/update/list links with TypeScript examples. For profile & links workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/linktree-pack:linktree-core-workflow-aThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Primary workflow for Linktree integration.
Primary workflow for Linktree integration.
const profile = await client.profiles.get('myprofile');
console.log(`Bio: ${profile.bio}`);
console.log(`Links: ${profile.links.length}`);
const link = await client.links.create({
profile_id: profile.id,
title: 'My Website',
url: 'https://example.com',
position: 0, // Top of list
thumbnail: 'https://example.com/icon.png'
});
console.log(`Created link: ${link.id}`);
await client.links.update(link.id, {
title: 'Updated Title',
archived: false
});
const links = await client.links.list({ profile_id: profile.id });
links.forEach(l => console.log(`${l.position}: ${l.title} → ${l.url}`));
See linktree-core-workflow-b.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin linktree-packProvides TypeScript examples for Linktree API: get profiles, create/update/list links. Useful for testing Linktree SaaS integration.
Creates a Linktree-style bio link hub page as a single self-contained HTML file with multiple theme options. Useful for affiliate marketers and content creators needing a centralized link page.
Manages client profiles for the Ayrshare MCP server: create profiles, list them, and generate social-account linking URLs for client onboarding under a Business account.