@higrowth/skills
v1.3.0
Published
AI agent skills for SEO and content workflows - works with Claude Code, Codex, Cursor, and other AI agents
Maintainers
Readme
@higrowth/skills
AI agent skills for SEO and content workflows. Works with Claude Code, Codex, Cursor, and other AI coding assistants.
What are Agent Skills?
Agent Skills are structured instructions that help AI agents understand domain-specific workflows and best practices. When you install these skills, your AI assistant gains specialized knowledge for SEO and content tasks.
Available Skills
| Skill | Role | Description | |-------|------|-------------| | content-manager-planning | Content Manager | Weekly planning, opportunity discovery, content plan creation | | content-creator-workflow | Content Creator | Pick tasks, generate content, output markdown | | seo-manager-planning | SEO Manager | SEO opportunity analysis, prioritization, planning | | seo-implementer-workflow | SEO Implementer | Execute optimization tasks, fix issues, improve rankings |
Installation
Using add-skill (Recommended)
# Install all HiGrowth skills
npx add-skill @higrowth/skills
# Or install from GitHub
npx add-skill AayushDev/cgen --path packages/skillsUsing Claude Code Plugin
/plugin add @higrowth/skillsManual Installation
# Clone and copy skills
git clone https://github.com/AayushDev/cgen.git
cp -r cgen/packages/skills/skills/* ~/.claude/skills/Prerequisites
These skills work with the HiGrowth MCP Server. You need:
- A HiGrowth account with API access
- The MCP server configured in your environment
MCP Server Setup
Add to your MCP configuration (.cursor/mcp.json or similar):
{
"mcpServers": {
"higrowth": {
"command": "npx",
"args": ["@higrowth/mcp-server"],
"env": {
"HIGROWTH_API_KEY": "your-api-key-here"
}
}
}
}Or install the MCP server separately:
npm install -g @higrowth/mcp-serverUsage
Once installed, just describe your task naturally:
Content Manager
"Let's plan content for next week"
"What opportunities should we focus on?"
"Create a content plan for Q1"Content Creator
"I want to write an article today"
"What content tasks are ready for me?"
"Generate a blog post about [topic]"SEO Manager
"What SEO opportunities do we have?"
"Which pages need optimization?"
"Plan SEO work for this sprint"SEO Implementer
"Help me optimize this page"
"What SEO fixes should I work on?"
"Fix the title tag for [page]"Role-Based Workflows
Content Manager Planning Flow
Discover Opportunities → Prioritize → Create Plan → Approve → Assign to TeamContent Creator Flow
View Tasks → Pick Work → Research → Generate Content → Review → Output MarkdownSEO Manager Planning Flow
Analyze Performance → Find Issues → Prioritize → Create Plan → AssignSEO Implementer Flow
View Tasks → Analyze Page → Get Fixes → Implement → Verify → DocumentMCP Tools Used
These skills leverage HiGrowth MCP tools:
Discovery: discover_opportunities, list_opportunities, get_page_keyword_data
Planning: create_plan_from_opportunities, get_plan_details, approve_plan
Content: create_content_plan, generate_content, run_content_reviews
SEO: analyze_page, get_optimization_fixes
Structure: get_topic_structure, list_pillars, list_topics
Skill File Structure
@higrowth/skills/
├── AGENTS.md # Main agent instructions
├── skills/
│ ├── content-manager-planning/
│ │ └── SKILL.md
│ ├── content-creator-workflow/
│ │ └── SKILL.md
│ ├── seo-manager-planning/
│ │ └── SKILL.md
│ └── seo-implementer-workflow/
│ └── SKILL.md
└── .claude-plugin/
└── marketplace.json # Plugin marketplace configContributing
Found a way to improve a skill? Contributions welcome!
- Fork the repository
- Edit skill files in
packages/skills/skills/ - Submit a PR with clear description
Ideas for Contributions
- Improve existing workflows
- Add new role-specific skills
- Better examples and templates
- Additional MCP tool integrations
Related Packages
- @higrowth/mcp-server - MCP server for HiGrowth tools
Links
License
MIT
