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

@infomaker/create-writer-plugin

v1.0.8

Published

CLI tool to create new Naviga Writer plugins with best practices and complete documentation

Downloads

813

Readme

@infomaker/create-writer-plugin

CLI tool to create new Naviga Writer plugins with best practices, complete tooling, and comprehensive documentation.

🎬 Demo

Demo

To update the demo: install VHS and run npm run demo

🚀 Quick Start

npx @infomaker/create-writer-plugin

That's it! The CLI will guide you through creating your plugin.

📋 What You Get

Running npx @infomaker/create-writer-plugin creates a complete, production-ready plugin:

dw-plugin-your-name/
├── .claude-skill.md              # AI assistant guide (auto-detected by Claude)
├── DEVELOPMENT.md                # Plugin-specific development guide
├── PUBLISHING.md                 # Complete publishing and release guide
├── README.md                     # Plugin documentation
├── manifest.json                 # Plugin metadata
├── package.json                  # Dependencies and scripts
├── src/
│   ├── index.js                  # Entry point with debug logging
│   ├── PluginPackage.ts          # Plugin configuration (JSDoc documented)
│   ├── scss/index.scss           # Styles
│   └── components/
│       └── MainComponent.ts      # Main UI component (inline docs)
├── __tooling__/
│   ├── webpack/                  # Build configurations
│   └── create-local-cert.sh      # SSL certificate script
├── __tests__/                    # Unit tests (optional)
├── .eslintrc.js                  # Linting configuration
├── babel.config.js               # Babel configuration
├── tsconfig.json                 # TypeScript configuration
└── bitbucket-pipelines.yml       # CI/CD pipeline

✨ Features

Automatic Name Generation

Enter only the base name (e.g., naviga-agent), and all variants are generated automatically:

  • Directory: dw-plugin-naviga-agent
  • Package name: dw-plugin-naviga-agent
  • Manifest name: im-naviga-agent
  • Plugin ID: io.infomaker.naviga-agent

Complete Tooling

  • ✅ Webpack dev server with hot reload
  • ✅ TypeScript support
  • ✅ Babel transpilation
  • ✅ ESLint configuration
  • ✅ SSL certificate script
  • ✅ Bitbucket Pipelines CI/CD

Rich Documentation

Every plugin includes:

  • DEVELOPMENT.md - Plugin-specific quick reference with examples
  • PUBLISHING.md - Complete guide for releasing and deploying plugins
  • .claude-skill.md - AI assistant guide (auto-detected by Claude)
  • JSDoc comments - Throughout generated code
  • Inline examples - In component templates

Production-Ready Pattern

Based on working Infomaker plugins:

  • Correct naming convention
  • Debug logging throughout
  • Proper error handling
  • Clean code structure

📖 Usage

# Create a new plugin
npx @infomaker/create-writer-plugin

# Follow the prompts:
? Name of plugin: naviga-agent
? Name of organisation: Naviga
? Plugin label: Naviga Agent
? Plugin description: AI-powered content assistance
? Include schema.json? Yes
? Include unit tests? Yes

The tool will:

  1. ✅ Create project directory
  2. ✅ Generate all files
  3. ✅ Install dependencies
  4. ✅ Show next steps

🎯 After Creation

# Navigate to your plugin
cd dw-plugin-naviga-agent

# Start development
npm start

# Opens at: https://local.plugins.writer.infomaker.io:3000/index.js

Register in Writer

Use these values in Writer plugin configuration:

Id:   io.infomaker.naviga-agent
Name: im-naviga-agent
URL:  https://local.plugins.writer.infomaker.io:3000/index.js

🤖 AI-Friendly

Each plugin includes .claude-skill.md which is automatically detected by Claude and other AI assistants. This enables:

  • ✅ Context-aware code suggestions
  • ✅ Accurate API usage examples
  • ✅ Plugin-specific guidance
  • ✅ Best practices recommendations

📚 Documentation

Created plugins include links to:

🛠️ Requirements

  • Node.js >= 14.0.0
  • npm >= 6.0.0

🔗 Related Packages

📄 License

MIT

🤝 Contributing

This is an internal Infomaker tool. For issues or suggestions, contact the Writer team.