Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
linkai logo

linkai

linkai

productivityClaude Codeby hemanthkrishna1298

Summary

Compose and post to LinkedIn from inside Claude Code. Claude interviews you, drafts in your voice, and publishes on your approval.

Install to Claude Code

/plugin install linkai@linkai

Run in Claude Code. Add the marketplace first with /plugin marketplace add hemanthkrishna1298/linkAI if you haven't already.

README.md

LinkAI

A Claude Code plugin that lets Claude draft and publish LinkedIn posts on your behalf.

Tell Claude what you want to share; it interviews you, writes a post in your voice, iterates until you're happy, and publishes to your feed. Text-only posts for now.

Install

In Claude Code, add the marketplace and install the plugin:

/plugin marketplace add hemanthkrishna1298/linkAI
/plugin install linkai@linkai

Or clone the repo and copy plugins/linkai/skills/linkedin-posting/ into ~/.claude/skills/ if you prefer to use it as a personal skill without the plugin system.

Setup (first time)

You need a LinkedIn developer app so Claude can post on your behalf. Claude walks you through this the first time you ask for a post — or see plugins/linkai/skills/linkedin-posting/SETUP.md for the manual steps. The short version:

1. Create an app at https://www.linkedin.com/developers/apps 2. Attach the Sign In with LinkedIn using OpenID Connect and Share on LinkedIn products 3. Add http://localhost:8765 as an authorized redirect URI 4. Hand Claude your Client ID and Client Secret when it asks

Claude stores them at ~/.linkai/credentials.json (chmod 0600 on Unix). The first login opens your browser, you click Allow, and you're done.

Usage

Just tell Claude. Examples:

> "Draft a LinkedIn post about the migration I finished last week." > > "I want to share that I just joined a new team. Make it friendly, short." > > "Post about my weekend project — a Claude Code plugin for LinkedIn. Tech-audience voice."

Claude asks a few questions, drafts, lets you edit, and publishes on your approval. It returns the post URL.

Requirements

  • Python 3.9+ on your path. No third-party packages — the scripts use only the standard library.
  • Claude Code with plugin support.
  • A LinkedIn account willing to create a developer app (free, ~5 min).

How it works

.claude-plugin/marketplace.json   # marketplace catalog
plugins/linkai/
  ├── .claude-plugin/plugin.json  # plugin manifest
  └── skills/
      └── linkedin-posting/
          ├── SKILL.md            # Claude's playbook — interview, draft, publish
          ├── SETUP.md            # One-time LinkedIn dev-app walkthrough
          └── scripts/
              ├── linkai_auth.py  # OAuth: setup / login / status / logout
              └── linkai_post.py  # POST /rest/posts with --text

No server, no daemon. Each script runs as a one-shot command. OAuth uses LinkedIn's standard Authorization Code flow with a short-lived local HTTP listener on 127.0.0.1:8765 to catch the callback — no paste-URL dance.

Re-auth cadence

LinkedIn access tokens live 60 days and the plugin can't silently refresh them (LinkedIn only issues refresh tokens to Marketing Developer Platform partners). When your token expires, the next post will trigger a one-click browser re-authorization automatically.

Limitations

  • Text-only posts. No images, articles, polls, or multi-image.
  • Personal feed only. No Company Page posting.
  • Public visibility only (MAIN_FEED, PUBLIC). No targeted or private posts.

These are scope choices, not hard limits — happy to accept PRs that add them.

License

See LICENSE.

Related plugins

Browse all →