linktree-hello-world
SolidCreate a minimal working Linktree example. Trigger: "linktree hello world", "linktree example", "test linktree".
AI & Automation 2,266 stars
315 forks Updated today MIT
Install
Quality Score: 97/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Linktree Hello World
## Overview
Minimal working examples demonstrating core Linktree API functionality.
## Instructions
### Step 1: Get Profile
```typescript
const profile = await client.profiles.get('myprofile');
console.log(`Bio: ${profile.bio}`);
console.log(`Links: ${profile.links.length}`);
```
### Step 2: Create a Link
```typescript
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}`);
```
### Step 3: Update Link
```typescript
await client.links.update(link.id, {
title: 'Updated Title',
archived: false
});
```
### Step 4: List All Links
```typescript
const links = await client.links.list({ profile_id: profile.id });
links.forEach(l => console.log(`${l.position}: ${l.title} → ${l.url}`));
```
## Error Handling
| Error | Cause | Solution |
|-------|-------|----------|
| Auth error | Invalid credentials | Check LINKTREE_API_KEY |
| Not found | Invalid endpoint | Verify API URL |
| Rate limit | Too many requests | Implement backoff |
## Resources
- [Linktree API Docs](https://linktr.ee/marketplace/developer)
## Next Steps
See `linktree-local-dev-loop`.
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
AI & Automation Featured
linktree-core-workflow-a
Execute Linktree primary workflow: Profile & Links Management. Trigger: "linktree profile & links management", "primary linktree workflow".
2,266 Updated today
jeremylongshore AI & Automation Featured
linktree-local-dev-loop
Local Dev Loop for Linktree. Trigger: "linktree local dev loop".
2,266 Updated today
jeremylongshore AI & Automation Solid
linktree-install-auth
Install and configure Linktree SDK/API authentication. Use when setting up a new Linktree integration. Trigger: "install linktree", "setup linktree", "linktree auth".
2,266 Updated today
jeremylongshore AI & Automation Featured
linktree-reference-architecture
Reference Architecture for Linktree. Trigger: "linktree reference architecture".
2,266 Updated today
jeremylongshore AI & Automation Featured
linktree-common-errors
Diagnose and fix Linktree common errors. Trigger: "linktree error", "fix linktree", "debug linktree".
2,266 Updated today
jeremylongshore