Skip to content
MCP ThesaurusMCP Thesaurus

Antwork

CommunityIncomplete39/100Claim

streamable-httpMITupdated 2mo ago

A toolkit of Agent Skills that turn Claude into a social-media command center on top of the Antwork MCP connector β€” an MCP-native social scheduler for solo founders and small teams.

SourceWebsiteDocs

What can you do with Antwork?

Antwork Skills

A toolkit of Agent Skills that turn Claude into a social-media command center on top of the Antwork MCP connector β€” an MCP-native social scheduler for solo founders and small teams.

One orchestrator routes /antwork <command> to specialized skills, each of which codifies the right sequence of Antwork's 43 MCP tools so the workflow runs correctly the first time — voice-aware drafting, the draft→publish/schedule two-step, per-platform character limits, campaign grouping, analytics, and a full audit.

Commands

Command Skill What it does
/antwork setup antwork-setup Connect accounts, set workspace timezone + posting times, brand identity. Run first.
/antwork voice [account] antwork-voice Build/refresh a per-account voice profile from real posts.
/antwork post <idea> antwork-poster Draft β†’ schedule/publish a post (single account or multi-platform fan-out).
/antwork calendar <theme> antwork-calendar Plan and batch-schedule a content calendar.
/antwork repurpose <source> antwork-repurpose One piece β†’ platform-native variants, grouped as a campaign.
/antwork campaign <goal> antwork-campaign Sequence a multi-post campaign / launch week.
/antwork ideas [topic] antwork-ideas Data-driven hooks grounded in what already performed.
/antwork analytics [range] antwork-analytics Pull performance + engagement and synthesize a report.
/antwork engage antwork-engage Comment/reply (LinkedIn), retry failed posts, community work.
/antwork media antwork-media Upload, attach, and manage post media.
/antwork audit antwork-audit Full social-presence audit with 5 parallel agents + a 0-100 Social Health Score.

You don't have to type the command β€” describe the intent ("schedule a LinkedIn post for Tuesday", "how did last month do?") and the orchestrator routes to the right skill.

The audit's parallel agents

/antwork audit spawns five read-only subagents concurrently, then synthesizes a weighted score:

Agent Dimension Weight
antwork-performance Engagement & top/bottom posts 30%
antwork-voice-analyst Voice consistency across accounts 20%
antwork-cadence Posting cadence & timing 20%
antwork-content Content quality (hooks, CTAs, fit) 20%
antwork-growth Platform coverage & growth 10%

Prerequisite β€” connect Antwork

These skills call the Antwork MCP server, so you need it connected to Claude first. See antwork.io. A single OAuth token spans all your workspaces.

Once connected, the highest-value path for a new user is: setup β†’ voice β†’ ideas/calendar β†’ post β†’ analytics β†’ audit.

Install

This repo is also a Claude Code plugin marketplace. Installing the plugin wires up the Antwork MCP server and all skills + agents in one step:

/plugin marketplace add iker-gonzalez/antwork-skills
/plugin install antwork-skills@antwork

That's it β€” the antwork MCP server connects automatically (complete the OAuth prompt), and the orchestrator, 11 skills, and 5 audit agents load. Why the plugin over loose skills: the skills are useless until Antwork's MCP is connected, and the plugin ships that config bundled, so there's no separate connector setup.

Script install (no plugin)

If you'd rather not use the plugin system, the script copies the skills + agents straight into ~/.claude/ (you still connect the Antwork MCP yourself):

curl -fsSL https://raw.githubusercontent.com/iker-gonzalez/antwork-skills/main/install.sh | bash

Prefer to clone first? git clone … && cd antwork-skills && ./install.sh. Remove everything with ./uninstall.sh.

Claude.ai

Skills submitted to the Anthropic Skills Directory surface automatically when you mention something they cover β€” no install step. (Plugins are Claude-Code-only; the skills are the cross-surface format.)

Repository layout

antwork-skills/
β”œβ”€β”€ .claude-plugin/
β”‚   β”œβ”€β”€ plugin.json           # plugin manifest
β”‚   └── marketplace.json      # self-hosted marketplace (lists this plugin)
β”œβ”€β”€ .mcp.json                 # Antwork MCP server β€” bundled & auto-connected
β”œβ”€β”€ skills/                   # orchestrator + 11 specialized skills
β”‚   β”œβ”€β”€ antwork/              # orchestrator β€” routes /antwork <command>
β”‚   β”œβ”€β”€ antwork-setup/        β”œβ”€β”€ antwork-campaign/
β”‚   β”œβ”€β”€ antwork-voice/        β”œβ”€β”€ antwork-ideas/
β”‚   β”œβ”€β”€ antwork-poster/       β”œβ”€β”€ antwork-analytics/
β”‚   β”œβ”€β”€ antwork-calendar/     β”œβ”€β”€ antwork-engage/
β”‚   β”œβ”€β”€ antwork-repurpose/    β”œβ”€β”€ antwork-media/
β”‚   └── antwork-audit/
β”œβ”€β”€ agents/                   # 5 parallel audit subagents (auto-discovered)
β”œβ”€β”€ templates/                # voice profile, calendar, campaign brief, launch week, report
β”œβ”€β”€ install.sh / uninstall.sh # script-install fallback
└── README.md / LICENSE

Contributing

Each skill lives in skills/<name>/SKILL.md with YAML frontmatter (name, description) followed by markdown instructions. Keep description: specific β€” it determines when Claude auto-loads the skill. Use only real Antwork MCP tools and never invent tool arguments; the server rejects unknown fields.

License

MIT