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

@dayofweek/dcli

v1.1.3

Published

CLI for the Day of Week AgTech platform — read data and submit proposals for review

Readme

@dayofweek/dcli

CLI for the Day of Week AgTech platform.

Read your organization's data and submit proposals for human review — nothing changes until you approve it.

Install

npm install -g @dayofweek/dcli

Quick start

# Authenticate
dcli auth set-token <your-token>

# Browse your entities
dcli read entities --json

# Submit a proposal
dcli agent propose --op create --table hierarchyEntities \
  --title "New Farm" --source "my-agent" \
  --parent <parentEntityId> --entity-type Farm \
  --file payload.json

# Check proposal status
dcli agent proposals --status pending

Agent integration

# Install the Agent Skill for AI agents
dcli skill install

# Works with OpenClaw, Claude Code, Cursor, VS Code Copilot,
# Gemini CLI, Goose, OpenHands, and 25+ others

The skill follows the open Agent Skills standard. After dcli skill install, any compatible agent on the machine discovers it automatically.

Commands

Authentication

  • dcli auth login — Authenticate via browser
  • dcli auth set-token <token> — Save a token locally
  • dcli auth status — Check token health
  • dcli auth devices — List your agent tokens
  • dcli auth create-token <name> — Create an agent token
  • dcli auth revoke <id> — Revoke a token

Reading data

  • dcli read entities [--type Farm] [--parent <id>] [--limit 50]
  • dcli read entity <entityId>
  • dcli read produce [--entity <id>]
  • dcli read contacts [--entity <id>]

Proposals

  • dcli agent propose --op create --table <table> --title <title> [--file payload.json]
  • dcli agent propose-batch --label <label> --file batch.json
  • dcli agent proposals [--status pending]
  • dcli agent show <proposalId>

Agent Skill

  • dcli skill install — Download skill (requires auth)
  • dcli skill update — Update to latest
  • dcli skill status — Check installed version

Configuration

dcli stores its config at ~/.config/dayofweek/dcli.json.

Environment variables:

  • DCLI_AUTH_TOKEN — Auth token (overrides stored token)
  • DCLI_API_URL — Custom API base URL

REST API

dcli talks to the Day of Week platform via a REST API. You can also call it directly:

curl -H "Authorization: Bearer dsk_xxx" \
  "https://field.dayofweek.com/app/api/dcli/entities?type=Farm"

See the API schema for all endpoints.

License

MIT