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

@cleverpeople/my-skills

v1.3.5

Published

Shared skill definitions bundle for My Skills.

Readme

My Skills

This package contains the shared SKILL.md definitions for the included skills, ready to be installed and shared via npm.

Install

npm install @cleverpeople/my-skills

Included skills

  • Requirement-Summarizer
  • Test-Case-Generator
  • Defect-Risk-Analyzer

After installation, the package files are available in your local node_modules/my-skills/ folder.

How to use these skills

Each skill is published as a folder containing a SKILL.md file with structured guidance for a Copilot-style skill. You can:

  1. Install the package with npm.
  2. Copy or reference the skill folders from node_modules/@cleverpeople/my-skills/.
  3. Use the SKILL.md definitions in compatible tooling that supports shared skill packages.
  4. Provide the required input payloads for each skill to receive the expected structured output.

Skill 1: Requirement-Summarizer

Description

The Requirement Summarizer analyzes requirements and user stories, extracting key business goals, features, acceptance criteria, and risks.

Purpose

Transform lengthy requirement documents into concise and actionable summaries.

Input Schema

{
  "document_title": "string",
  "document_type": "string",
  "requirement_text": "string",
  "project_name": "string",
  "author": "string",
  "created_date": "datetime"
}

Field Description

  • document_title: Name of the requirement document
  • document_type: BRD, FRD, User Story, Epic, etc.
  • requirement_text: Full requirement content
  • project_name: Associated project
  • author: Requirement owner
  • created_date: Document creation date

Output Schema

{
  "summary": "string",
  "business_objectives": [
    "string"
  ],
  "key_features": [
    "string"
  ],
  "acceptance_criteria": [
    "string"
  ],
  "risks": [
    "string"
  ],
  "assumptions": [
    "string"
  ]
}

Field Description

  • summary: Concise requirement overview
  • business_objectives: Primary business goals
  • key_features: Main system capabilities
  • acceptance_criteria: Conditions for successful implementation
  • risks: Potential project risks
  • assumptions: Assumptions identified from requirements

Example Output

{
  "summary": "Users can access dashboards after authentication.",
  "business_objectives": [
    "Improve visibility of production data"
  ],
  "key_features": [
    "User Authentication",
    "Dashboard Access"
  ],
  "acceptance_criteria": [
    "User can log in successfully",
    "Dashboard loads within 3 seconds"
  ],
  "risks": [
    "Single Sign-On dependency"
  ],
  "assumptions": [
    "Users possess valid credentials"
  ]
}

Skill 2: Test-Case-Generator

Description

Generate test scenarios and test cases from requirements and acceptance criteria.

Purpose

Accelerate software testing preparation and improve test coverage.

Input Schema

{
  "requirement_id": "string",
  "requirement_title": "string",
  "summary": "string",
  "acceptance_criteria": [
    "string"
  ],
  "application_type": "string",
  "priority": "string"
}

Field Description

  • requirement_id: Unique requirement identifier
  • requirement_title: Requirement title
  • summary: Requirement summary
  • acceptance_criteria: List of acceptance criteria
  • application_type: Web, Mobile, Desktop, API
  • priority: High, Medium, Low

Output Schema

{
  "test_cases": [
    {
      "test_case_id": "string",
      "title": "string",
      "priority": "string",
      "pre_conditions": [
        "string"
      ],
      "test_steps": [
        "string"
      ],
      "expected_results": [
        "string"
      ]
    }
  ]
}

Field Description

  • test_case_id: Unique test case identifier
  • title: Test case title
  • priority: Business priority
  • pre_conditions: Required setup
  • test_steps: Execution steps
  • expected_results: Validation outcomes

Example Output

{
  "test_cases": [
    {
      "test_case_id": "TC001",
      "title": "Verify Successful Login",
      "priority": "High",
      "pre_conditions": [
        "User account exists"
      ],
      "test_steps": [
        "Open login page",
        "Enter valid credentials",
        "Click Login"
      ],
      "expected_results": [
        "Dashboard displayed successfully"
      ]
    }
  ]
}

Skill 3: Defect-Risk-Analyzer

Description

Analyze testing quality metrics and determine project risk level before release.

Purpose

Provide data-driven risk assessment and release readiness recommendations.

Input Schema

{
  "project_name": "string",
  "total_test_cases": "number",
  "passed_test_cases": "number",
  "failed_test_cases": "number",
  "blocked_test_cases": "number",
  "test_coverage_percentage": "number",
  "critical_defects": "number",
  "major_defects": "number",
  "minor_defects": "number"
}

Field Description

  • project_name: Project identifier
  • total_test_cases: Total test count
  • passed_test_cases: Successful executions
  • failed_test_cases: Failed executions
  • blocked_test_cases: Blocked executions
  • test_coverage_percentage: Coverage metric
  • critical_defects: Critical severity defects
  • major_defects: Major severity defects
  • minor_defects: Minor severity defects

Output Schema

{
  "risk_score": "number",
  "risk_level": "string",
  "project_health": "string",
  "release_readiness": "string",
  "recommendations": [
    "string"
  ]
}

Field Description

  • risk_score: Risk score (0-100)
  • risk_level: Low, Medium, High, Critical
  • project_health: Overall health status
  • release_readiness: Ready or Not Ready
  • recommendations: Improvement actions

Risk Levels

  • 0-20: Low
  • 21-50: Medium
  • 51-80: High
  • 81-100: Critical

Example Output

{
  "risk_score": 78,
  "risk_level": "High",
  "project_health": "At Risk",
  "release_readiness": "Not Ready",
  "recommendations": [
    "Resolve all critical defects",
    "Increase test coverage above 80%",
    "Retest failed test cases"
  ]
}

Notes

  • The project also includes a lightweight HTTP server in server.js that exposes the available skills through API endpoints.
  • The src/skill-loader.js utility reads each skill folder and loads the content of its SKILL.md file.
  • The package currently includes the three skills listed above and is ready to be published or shared as a reusable skill bundle.