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

everyday-writer

v0.1.0

Published

A Claude Code skill plugin for professional writers. Enforces voice consistency, anti-AI writing rules, and 13 specialized writing sub-skills.

Downloads

51

Readme

EW — Everyday Writer

Everyday Writer

A Claude Code / Claude Cowork skill system for professional writers. Built on an A-Player standard: results over hours, own the outcome, no coinflipping critical components. Install target: ~/.claude/plugins/ew/ (drop the full folder as-is).


Installation

Via npm (recommended):

npx everyday-writer install

Or install globally:

npm install -g everyday-writer
everyday-writer install

Manual install: Clone the repo and copy the folder to ~/.claude/plugins/ew/.

Uninstall:

everyday-writer uninstall

After installing, open Claude Code and type /ew to get started.


Invocation Model

| Command | Purpose | |---|---| | /ew | Master entry point. Runs onboarding on first use; dispatches to sub-skills after profile is established. | | /ew:newsletter-creative | Direct sub-skill invocation (post-onboarding) | | /ew:newsletter-technical | Direct sub-skill invocation | | /ew:linkedin | Direct sub-skill invocation | | /ew:tweets | Direct sub-skill invocation | | /ew:substack-notes | Direct sub-skill invocation | | /ew:web-copy | Direct sub-skill invocation | | /ew:sales-copy | Direct sub-skill invocation | | /ew:scene-structure | Direct sub-skill invocation | | /ew:script-writing | Direct sub-skill invocation | | /ew:world-builder | Direct sub-skill invocation |


System Map

EW/
├── README.md                         ← You are here
├── SKILL.md                          ← Master entry point for /ew
├── plugin.json                       ← Plugin manifest (name, version, entry point)
│
├── onboarding/
│   ├── ONBOARDING.md                 ← Master onboarding logic and routing
│   ├── claude-ai-cowork-mode.md      ← Memory inference + gap-fill questions (Claude.ai)
│   └── claude-code-mode.md           ← Active onboarding: samples, goals, platforms (Claude Code)
│
├── core/
│   └── anti-ai-rules.md              ← Global writing rules applied by every sub-skill
│
├── skills/
│   ├── newsletter/
│   │   ├── creative.md               ← Creative/narrative newsletter writing
│   │   └── technical.md              ← Technical/informational newsletter writing
│   ├── linkedin/
│   │   └── linkedin.md               ← LinkedIn post and article writing
│   ├── shortform/
│   │   ├── tweets-x.md               ← X/Twitter post writing
│   │   └── substack-notes.md         ← Substack Notes writing
│   ├── copywriting/
│   │   ├── web-copy.md               ← Website and landing page copy
│   │   └── sales-copy.md             ← Sales pages, emails, direct response
│   └── fiction/
│       ├── scene-structure.md        ← Scene construction and pacing
│       ├── script-writing.md         ← Screenplay and script format
│       └── world-builder/
│           ├── WORLD-BUILDER.md      ← Master file: questioner + skeleton generator overview
│           ├── questioner.md         ← Layered question system for extracting world context
│           └── skeleton-template.md  ← Structured markdown world bible output template
│
└── references/
    └── DROP-MD-FILES-HERE.md         ← Instructions for dropping existing .md files here

Design Decisions

  • Plugin name is ew not everyday-writer — shorter invocation path (/ew vs /everyday-writer)
  • world-builder/ lives inside fiction/ — world building serves the writing, not the reverse
  • core/anti-ai-rules.md is a dependency, not a skill — every sub-skill draws from it; it is never invoked directly
  • references/ is a user-facing drop zone — the user dumps their existing instruction files here; Claude reads them when populating skills
  • Onboarding splits by environmentclaude-code-mode.md (active, user pastes samples) vs claude-ai-cowork-mode.md (passive, memory inference)