From linktree-pack
Executes primary Linktree workflow for profile and links management, including profile retrieval, link creation, updating, and listing. Triggered by phrases like 'linktree profile & links management'.
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 ia23a-lachnita/claude-code-plugins-plus-fix-skills --plugin linktree-pack2plugins reuse this skill
First indexed Jul 17, 2026
Manages Linktree profiles and links through the Linktree REST API: retrieve profile, create/update/delete links, list and reorder links. Useful for programmatic link-in-bio management.
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.