linktree-core-workflow-a

Featured

Execute Linktree primary workflow: Profile & Links Management. Trigger: "linktree profile & links management", "primary 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 — Profile & Links Management ## Overview Manages the complete lifecycle of a Linktree profile and its links through the Linktree REST API. This skill covers retrieving profile metadata, creating new links with positioning and thumbnails, updating existing link properties, listing all links for a profile, and reordering links by position. Use this workflow when building integrations that programmatically manage a creator's or brand's link-in-bio page — for example, syncing product launches, rotating seasonal promotions, or bulk-importing links from a spreadsheet. All operations use bearer token authentication against the Linktree API. ## Prerequisites - **Linktree Developer Account** — register at [linktr.ee/marketplace/developer](https://linktr.ee/marketplace/developer) - **API Key** — set `LINKTREE_API_KEY` in your environment - **Node.js >= 18** and **TypeScript >= 5.0** - **Linktree SDK** — install with `npm install @linktree/sdk` ## Instructions ### Step 1: Get Profile ```typescript try { const profile = await client.profiles.get('myprofile'); console.log(`Bio: ${profile.bio}`); console.log(`Links: ${profile.links.length}`); } catch (err: any) { if (err.status === 404) throw new Error('Profile not found — verify the username'); throw err; } ``` ### Step 2: Create a Link ```typescript try { const link = await client.links.create({ profile_id: profile.id, title: 'My Website', url: 'https://example.com', position: 0, // Top of...

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