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

shipflutter-skills

v0.0.6

Published

Flutter testing skills for AI coding agents.

Readme

shipflutter-skills

Flutter testing skills for AI coding agents.

npm package

Run the package CLI:

npx shipflutter-skills list

The npm package ships the skill files and a small listing command. Use the open skills CLI below to install skills into AI agents.

Publish with an npm token:

NODE_AUTH_TOKEN='<npm-token>' npm run publish:npm

The token must have publish permission. If your npm account uses 2FA, use a granular token with bypass 2FA enabled or publish manually with --otp.

Install skills

List available skills:

npx skills add shipflutter/skills --list

Install all skills for Claude Code in the current project:

npx skills add shipflutter/skills --skill '*' -a claude-code --copy

Install all skills globally for Claude Code:

npx skills add shipflutter/skills --skill '*' -a claude-code -g --copy

Install one skill:

npx skills add shipflutter/skills --skill add-feat -a claude-code --copy
npx skills add shipflutter/skills --skill add-srs -a claude-code --copy
npx skills add shipflutter/skills --skill flutter-integration-test -a claude-code --copy
npx skills add shipflutter/skills --skill flutter-driver-screenshot-test -a claude-code --copy
npx skills add shipflutter/skills --skill flutter-unit-test-coverage -a claude-code --copy
npx skills add shipflutter/skills --skill privacy-safe-device-referral-attributes -a claude-code --copy

Available Skills

| Skill | Description | Example prompt | |---|---|---| | add-feat | Creates feature user-story and technical-design docs, including gen-tdd source scanning. | Run add-feat gen-tdd auth EP01 and create the feature docs. | | add-srs | Generates or updates SRS packages from user-story and technical-design docs. | Generate the SRS from the current user-story and technical-design docs. | | flutter-integration-test | Adds Flutter integration_test coverage that runs on emulator/simulator without saving screenshot images. | Add Flutter integration tests for the main app flow without saving screenshots. | | flutter-driver-screenshot-test | Adds Flutter driver screenshot tests that save PNG files through the host driver process. | Add e2e screenshot tests for the main screens and save PNG files to screenshots/. | | flutter-unit-test-coverage | Adds Flutter unit/widget coverage reporting with flutter test --coverage and optional HTML reports. | Add a run_test.sh script that generates Flutter unit test coverage and an HTML report. | | privacy-safe-device-referral-attributes | Adds privacy-safe Flutter Android, iOS, Web, and static Web device/referral attribute demos. | Add a transparent device referral attributes screen without third-party IP lookup or invasive fingerprinting. |

Repository structure

skills/
├── add-feat/
│   ├── SKILL.md
│   ├── assets/templates/
│   ├── references/
│   └── scripts/add_feat.sh
├── add-srs/
│   └── SKILL.md
├── flutter-integration-test/
│   ├── SKILL.md
│   └── scripts/
│       └── integration_test.sh
├── flutter-driver-screenshot-test/
│   ├── SKILL.md
│   └── scripts/
│       └── e2e.sh
├── flutter-unit-test-coverage/
│   ├── SKILL.md
│   └── scripts/
│       └── run_test.sh
└── privacy-safe-device-referral-attributes/
    ├── SKILL.md
    ├── examples/
    │   └── prompts.md
    └── reference/
        └── attribute-contract.md

Feature docs workflow

Use add-feat gen-tdd to derive user-story and technical-design docs from a Flutter feature source tree:

scripts/add_feat.sh gen-tdd auth EP01

The command creates:

  • resources/user-story/ep01-auth.md
  • resources/technial-design/ep01-auth.md

Use add-srs after that to compile the generated docs into resources/srs.md and render srs-index.html through resources/srs.sh using the standard two-column Mermaid SRS template.

Device referral fingerprint POC

The repository includes examples/flutter-poc-fingerprint as a runnable reference for privacy-safe device/referral attributes.

flowchart TD
  A[User opens device page or POC] --> B{Runtime}
  B -->|Android| C[Load safe Android attributes]
  B -->|iOS| D[Load safe iOS attributes]
  B -->|Flutter Web| E[Load browser attributes]
  B -->|Static Web| F[Run device.html JavaScript]
  C --> G[Normalize allowed device fields]
  D --> G
  E --> G
  F --> G
  A --> H[Parse allowlisted referral params]
  H --> I[Generate local SHA-256 hash]
  G --> I
  I --> J[Render transparent JSON report]

Implemented attributes include platform, OS/browser version, model/manufacturer where available, locale, timezone, screen size, device pixel ratio, referrer, and allowlisted referral params. Public IP is documented as unavailable without a same-origin backend endpoint.

Auth POC

The repository includes examples/flutter-poc-auth as a runnable reference for the add-feat and add-srs workflows.

It demonstrates:

  • Sign-in and sign-up UI states.
  • Local auth service boundary.
  • User-story and technical-design docs under resources/.
  • Unit and integration tests.
cd examples/flutter-poc-auth
../../scripts/add_feat.sh gen-tdd auth EP01
./resources/srs.sh
flutter pub get
flutter test

Notes

  • The install source is shipflutter/skills because the GitHub repository is https://github.com/shipflutter/skills.
  • The package display name is shipflutter-skills.
  • Skills follow the Agent Skills SKILL.md format with name and description frontmatter.