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

@bondli-skills/team-efficiency-daily-report

v1.0.2

Published

Team Efficiency Daily Report Generator

Readme

Team Efficiency Daily Report Skill

自动生成 团队效能数据日报 的 OpenClaw Skill。

该 Skill 会自动访问团队效能报表系统,通过浏览器修改时间筛选条件,抓取关键效能指标数据,并生成每日效能分析报告。

生成的日报包含:

  1. 当天交付的需求情况(产品需求数、最长交付时长、平均交付时长、达成 211 的占比及明细)
  2. 目前交付中的主 R 产品需求列表(需求 ID、名称、当前状态、开始开发时间、已耗时、预计剩余时间)
  3. 目前交付中创建超过 14 天的产品子任务列表(按创建时间正序排列)

最终输出 Markdown 格式日报,可用于:

  • 团队每日效能同步
  • 需求交付监控
  • 管理层交付汇报

快速开始

1. 配置报表

编辑 config.json,填入效能报表的 URL 和数据接口:

{
  "reports": [
    {
      "name": "当天交付需求",
      "url": "https://your-dashboard-url",
      "dataAPI": "https://your-data-api-url",
      "needModify": true,
      "column": {
        "teamId": "需求ID",
        "name": "需求名称",
        "totalDays": "总耗时(天)",
        "owner": "负责人"
      }
    }
  ]
}

needModify: true 表示该报表需要将时间范围修改为昨天。

2. 运行

pnpm start

数据存储

每天采集的数据保存为 data/YYYY-MM-DD.json,生成的日报保存为 report/YYYY-MM-DD.md


目录结构

team-efficiency-daily-report/
├── SKILL.md
├── README.md
├── package.json
├── tsconfig.json
├── config.example.json          # 报表配置(需自行填写)
├── src/
│   ├── index.ts         # 主入口
│   └── utils/
│       ├── api.ts       # 数据接口抓取
│       ├── parser.ts    # 数据解析
│       └── report.ts    # 日报生成

定时自动运行(推荐)

通过 cron 每天自动生成日报:

crontab -e

添加:

0 9 * * * cd /path/to/skills/team-efficiency-daily-report && pnpm start

技术栈

| 模块 | 技术 | |------|------| | 浏览器自动化 | Puppeteer | | 数据抓取 | XHR 拦截 | | 数据存储 | JSON | | 报告生成 | Markdown |