npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@higrowth/skills

v1.3.0

Published

AI agent skills for SEO and content workflows - works with Claude Code, Codex, Cursor, and other AI agents

Readme

@higrowth/skills

AI agent skills for SEO and content workflows. Works with Claude Code, Codex, Cursor, and other AI coding assistants.

npm version

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/skills

Using Claude Code Plugin

/plugin add @higrowth/skills

Manual 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:

  1. A HiGrowth account with API access
  2. 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-server

Usage

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 Team

Content Creator Flow

View Tasks → Pick Work → Research → Generate Content → Review → Output Markdown

SEO Manager Planning Flow

Analyze Performance → Find Issues → Prioritize → Create Plan → Assign

SEO Implementer Flow

View Tasks → Analyze Page → Get Fixes → Implement → Verify → Document

MCP 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 config

Contributing

Found a way to improve a skill? Contributions welcome!

  1. Fork the repository
  2. Edit skill files in packages/skills/skills/
  3. 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

Links

License

MIT