From linktree-pack
Installs Linktree SDK via npm or pip, configures API key auth in env vars, verifies connections in TypeScript/Python, and handles errors.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin linktree-packThis skill is limited to using the following tools:
Set up Linktree API for programmatic link-in-bio management with 25M+ creators.
Provides TypeScript examples for Linktree API: get profiles, create/update/list links. Useful for testing Linktree SaaS integration.
Installs webflow-api SDK and configures Webflow authentication with API tokens or OAuth 2.0. Use for initializing client in Node.js/TypeScript projects.
Configures Hootsuite OAuth 2.0 for REST API with app registration, .env setup, and TypeScript code for authorization flow, token exchange, and refresh.
Share bugs, ideas, or general feedback.
Set up Linktree API for programmatic link-in-bio management with 25M+ creators.
npm install @linktree/sdk
# or: pip install linktree-sdk
export LINKTREE_API_KEY="your-api-key-here"
echo 'LINKTREE_API_KEY=your-api-key' >> .env
import { LinktreeClient } from '@linktree/sdk';
const client = new LinktreeClient({ apiKey: process.env.LINKTREE_API_KEY });
const profile = await client.profiles.get('myprofile');
console.log(`Profile: ${profile.username} — ${profile.links.length} links`);
import linktree
client = linktree.Client(api_key=os.environ['LINKTREE_API_KEY'])
profile = client.profiles.get('myprofile')
print(f'Profile: {profile.username} — {len(profile.links)} links')
| Error | Code | Solution |
|---|---|---|
| Invalid API key | 401 | Verify credentials in dashboard |
| Permission denied | 403 | Check API scopes/permissions |
| Rate limited | 429 | Implement backoff |
After auth, proceed to linktree-hello-world.