skills
Claude/ChatGPT Skills.
Every Agent Skill I've built and open-sourced: 23 of them, for marketing, research, comms, and ops. Each is a self-contained folder with a SKILL.md that tells the model when to fire and how to work, plus reference docs or executable scripts where the skill needs them. Agent Skills is the open standard Anthropic published and OpenAI adopted, so the same folder installs in Claude Code, claude.ai, ChatGPT, and Codex with no changes.
Built running AI across a 90-person organization, then genericized. 8 work out of the box. 15 are templates with [BRACKETED] placeholders you replace with your own org's details before installing. MIT.
install
The 19 generic skills ship as five plugins so an admin can preinstall some and offer the rest per team. The two foundation templates sit outside the plugins, because you customize them before anyone installs them.
/plugin marketplace add alectivism/organization-ai-skills npx skills add alectivism/organization-ai-skills codex plugin marketplace add alectivism/organization-ai-skills foundation_templates
not in a plugin Two fill-in files, not installable plugins. Every content, meetings, and ops skill reads from them when present and falls back to generic defaults when not. Fill these first: open one in Claude or ChatGPT, paste your org's real details, and ask the model to replace the [BRACKETED] placeholders. Then install your filled-in copy like any other skill.
org-research
installed by default Ready to use, no setup. Everyone researches, so this plugin preinstalls.
- research ready
Web research with structured findings and cited sources.
SKILL.md ↗ - search-and-scrape ready
Fires before any search or fetch and routes it: parallel-search for breadth, Exa for semantic and find-similar, Perplexity for cited synthesis, Jina for fetch, Firecrawl for JS and anti-bot.
SKILL.md ↗ - linkedin-scrape ready
Profiles, posts, people, companies, employees. Free local MCP by default, Apify for bulk and contact enrichment.
+ 2 reference docs: linkedin-mcp.md, apify-fallback.md
SKILL.md ↗ - reddit-scrape ready
Posts and comments via Apify: single post, subreddit browse, user, or keyword search. Returns structured data.
SKILL.md ↗
org-agents
installed by default Ready to use, no setup. Delegation saves money for everyone, so this one preinstalls too.
org-content
available for install Customize these. They read org-context and brand-voice, so fill those two first.
- content-draft customize
Blog posts, newsletter articles, thought leadership, one-pagers, and web copy in your brand voice.
SKILL.md ↗ - content-strategy customize
Content pillars, audience matrices, editorial calendars, distribution plans, and KPIs.
SKILL.md ↗ - press-release customize
Wire-ready press releases with QA checklists, editor's notes, and source verification.
SKILL.md ↗ - case-study customize
Turns program results, member outcomes, or experiment data into case studies.
SKILL.md ↗ - email-draft customize
Emails by audience type: internal, clients, executives, prospects.
SKILL.md ↗ - event-promo customize
Event promo: email invitations, social posts, one-pagers, and sponsor or speaker outreach.
SKILL.md ↗
org-meetings
available for install Customize these.
- briefing-prep customize
Meeting briefs: attendee research, relationship context, agenda, and talking points.
SKILL.md ↗ - meeting-followup customize
Segmented follow-ups from a transcript or notes: different messages for attendees, no-shows, speakers, internal teams.
SKILL.md ↗ - research-brief customize
Formats findings into board updates, member summaries, or public-facing briefs.
SKILL.md ↗ - slack-summary customize
Summarizes a channel: decisions, action items, and key threads.
SKILL.md ↗
org-ops
available for install Three to customize, one ready to run.
- asana-task customize
Creates and manages Asana tasks in your project structure and naming conventions.
SKILL.md ↗ - document-find customize
Finds documents across SharePoint, Google Drive, or Notion using your folder structure.
SKILL.md ↗ - launch-strategy customize
Plans program, product, research, or event launches end to end.
SKILL.md ↗ - zapier-workflow-builder ready
Designs Zaps from a plain-English description: architecture, Copilot prompts, and cost analysis.
SKILL.md ↗
agent_engineering
separate repo Delegation between Claude Code and the Codex CLI, one skill per direction. Install the half that matches the CLI you drive. These ship executable wrappers and guard hooks alongside the markdown.
- delegate-to-codex ready
Install in Claude Code. Sends work out to the Codex CLI (GPT-5.6) under six pinned task classes with model, effort, and sandbox fixed per class. The wrapper owns every flag, so the model classifies but never picks them.
+ 2 shell scripts: codex-run.sh (the wrapper), codex-guard.sh (a guard against raw CLI calls)
SKILL.md ↗ - delegate-to-claude ready
Install in Codex. The mirror image: sends work out to the Claude Code CLI across Haiku, Sonnet, and Opus under the same six classes. Read-only classes get no shell at all, so a worker cannot write even through Bash.
+ 2 shell scripts: claude-run.sh (the wrapper), claude-guard.sh (the matching guard)
SKILL.md ↗
All MIT-licensed. Source: organization-ai-skills and cross-model-agent-delegation. For what makes a skill auto-invoke, org-wide provisioning, and the ChatGPT side of the rollout, see deploying Claude Skills. For the rest of what I've published, see /tools and /frameworks.