An AI agent skill for managing help center articles via the Help.Center API. Works with any AI coding agent that supports the Agent Skills specification.
Create, update, search, publish, and organize help center articles directly from your AI agent. Just describe what you want — "write a help article about getting started" or "update the FAQ" — and the skill handles the API calls.
Supported actions:
- Create and publish articles with well-structured HTML
- Search and update existing articles (preserving unchanged content)
- Manage drafts, categories, and SEO metadata
- Publish/unpublish articles on demand
claude install-skill https://github.com/microdotcompany/helpcenter-skillTell your agent:
Install the helpcenter skill from https://github.com/microdotcompany/helpcenter-skill
Clone into your Codex skills directory:
git clone https://github.com/microdotcompany/helpcenter-skill.git ~/.agents/skills/helpcenter-skillOr for a project-specific install:
git clone https://github.com/microdotcompany/helpcenter-skill.git .agents/skills/helpcenter-skillCopy SKILL.md into your project and point your agent to it.
You'll need to create an API key from your Help.Center dashboard (Settings > General > API):
- API Key - Create a new key with the necessary scopes:
content.read- for searching and reading articlescontent.write- for creating and updating articlescontent.publish- for publishing articles (optional)content.delete- for deleting articles (optional)
- Center ID - Found on the same page
The skill will ask for these when you first use it.
> Write a getting started guide for our app
> Update the billing FAQ with the new pricing
> List all draft articles
> Publish the article about authentication
> Search for articles about onboarding
├── SKILL.md # Skill definition and API reference
├── AGENTS.md # AI agent guidelines
├── README.md
└── LICENSE
Follows the Agent Skills specification.