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 🙏

© 2025 – Pkg Stats / Ryan Hefner

tech-hub-skills

v1.5.1

Published

Collection of tech skills for Claude Code

Downloads

157

Readme

Tech Hub Skills

110+ production-ready AI agent skills for Claude Code and GitHub Copilot. Enterprise-grade with security, governance, and compliance built-in.

Quick Install

For Claude Code

# npm/npx (Recommended)
npx tech-hub-skills install

# or Python
pip install tech-hub-skills && tech-hub-skills install

For GitHub Copilot (VSCode)

# npm/npx
npx tech-hub-skills install --copilot

# or Python
pip install tech-hub-skills && tech-hub-skills install --copilot

This creates .github/copilot-instructions.md with all expert skills. See GITHUB_COPILOT.md for usage guide.

Global Install (Claude Code only)

# Install globally for all projects
npx tech-hub-skills install --global

Manual Installation

# Clone and copy .claude folder to your project
git clone https://github.com/6ogo/Tech-Skills.git
cp -r tech-hub-skills/.claude your-project/

What's Included

  • 26 Role Skills: AI Engineer, Data Engineer, Security Architect, DevOps, and more
  • 180+ Detailed Implementations: Step-by-step guides for each skill
  • Enterprise Mode: Built-in security, governance, and compliance
  • Cross-Platform: Works on Windows, macOS, Linux

Available Roles

| Role | Skills | Focus | | ---------------------- | ------ | ------------------------------------------- | | AI Engineer | 8 | LLMs, RAG, Agents, Guardrails, Embeddings | | Data Engineer | 9 | Lakehouse, ETL/ELT, Streaming, Quality | | ML Engineer | 9 | MLOps, Training, Serving, Monitoring | | Data Scientist | 8 | EDA, Modeling, Analytics, Experimentation | | Frontend Developer | 7 | React/Vue/Angular, TypeScript, A11y | | Backend Developer | 7 | REST, GraphQL, Microservices, Caching | | Security Architect | 7 | PII, Threat Modeling, IAM, Secrets | | System Design | 8 | Architecture, Scalability, HA/DR, APIs | | Network Engineer | 7 | Topology, VPN/VPC, Load Balancers, CDN | | Platform Engineer | 6 | IDP, Self-Service, SLOs | | SRE | 7 | Incident Response, Chaos Engineering, SLOs | | Database Admin | 7 | Query Optimization, Replication, Migrations | | Data Governance | 6 | Catalog, Lineage, Quality, Compliance | | DevOps | 9 | CI/CD, Containers, IaC, GitOps | | Docker | 5 | Dockerfile, Security, Optimization | | MLOps | 9 | Experiments, Registry, Deployment | | FinOps | 8 | Cost Visibility, Optimization | | Azure | 12 | All Azure services | | AWS | 12 | EC2, Lambda, S3, RDS, VPC, EKS | | GCP | 12 | Compute, BigQuery, GKE, Pub/Sub | | Code Review | 5 | PR Automation, Quality Gates | | Compliance Officer | 7 | SOC 2, GDPR, HIPAA, PCI-DSS | | QA Engineer | 7 | Test Strategy, Automation, Performance | | Technical Writer | 6 | API Docs, ADRs, Runbooks | | Product Designer | 6 | Requirements, Research, UX |

See .claude/README.md for detailed role documentation.

Usage

Claude Code

Use @ mentions to invoke specific expert roles:

# Start with the orchestrator
@orchestrator "Build a customer churn prediction model"

# Or use specific roles
@ai-engineer "Create a RAG pipeline"
@security-architect "Review this code for PII"
@data-engineer "Design a lakehouse architecture"

GitHub Copilot

Copilot automatically applies expert knowledge. Reference roles in comments:

# Using AI Engineer approach for RAG pipeline
def build_rag():
    # Copilot suggests best practices

# Apply Security Architect principles
def process_data(user_input):
    # Copilot adds input validation, PII scanning

See GITHUB_COPILOT.md for complete guide.

Updating

Method 1 (Clone/ZIP)

# Pull latest changes
cd path/to/tech-hub-skills
git pull

# Copy updated files
cp -r .claude your-project/

After installation, use skills with @ mentions:

# Start with the orchestrator (routes to all skills)
@orchestrator "Build a customer churn prediction model"

# Or invoke specific roles
@ai-engineer "Create a RAG pipeline"
@security-architect "Review this code for PII"
@data-engineer "Design a lakehouse architecture"

# Enterprise mode (mandatory security + governance)
@project-starter --enterprise "Build a customer data platform"

Examples

AI/ML Project

@orchestrator "Build a customer churn prediction model with GDPR compliance"

RAG Application

@ai-engineer "Create a RAG pipeline for internal docs"

Security Review

@security-architect "Audit this codebase for security vulnerabilities"

Enterprise Platform

@project-starter --enterprise "Build a customer data platform"

Documentation

Contributing

  1. Fork the repository
  2. Add skills to .claude/roles/{role}/skills/{skill-id}/
  3. Update .claude/skills/{role}.md
  4. Submit PR

License

MIT