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

@dreamlogic-ai/cli

v2.5.12

Published

Dreamlogic AI Skill Manager — Install, update and manage AI agent skills

Readme

@dreamlogic-ai/cli

Dreamlogic AI Skill Manager — Install, update and manage AI agent skills for your team.


Quick Start

npx @dreamlogic-ai/cli

You'll be guided through:

  1. 🔑 Entering your API key
  2. 📦 Selecting skills to install
  3. ⚙️ Configuring MCP for your AI agent

Installation

# Run without installing (recommended)
npx @dreamlogic-ai/cli

# Or install globally
npm install -g @dreamlogic-ai/cli
dreamlogic

Commands

| Command | Description | |---------|-------------| | dreamlogic | Interactive mode (menu) | | dreamlogic login | Authenticate with API key | | dreamlogic catalog | Browse available skills | | dreamlogic install [skills...] | Install skills (multi-select) | | dreamlogic update | Check & apply updates | | dreamlogic list | List installed skills | | dreamlogic rollback <skill> | Restore previous version | | dreamlogic status | Full status overview | | dreamlogic setup-mcp | Configure MCP for AI agents | | dreamlogic logout | Clear credentials |

Non-interactive Mode (CI/CD)

# Set API key via environment variable
export DREAMLOGIC_API_KEY=sk-user-xxxxx

# Install specific skill silently
dreamlogic install suno-cover-v5 --yes

# Auto-update all skills
dreamlogic update --yes

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | DREAMLOGIC_API_KEY | — | Override saved API key | | DREAMLOGIC_SERVER | https://skill.dreamlogic-claw.com | Override server URL | | DREAMLOGIC_INSTALL_DIR | ~/.agents/skills | Override install directory | | DREAMLOGIC_NO_COLOR | — | Disable colored output | | CI | — | CI mode (disable interactive prompts) |

Supported AI Agents

Skills install to ~/.agents/skills/ — the universal agent directory supported by 45+ AI agents:

Auto-detected (no extra config): Amp, Antigravity, Cline, Codex, Command Code, Cursor, Deep Agents, Firebender, Gemini CLI, GitHub Copilot, Kimi Code CLI, OpenCode, Warp, and more.

Symlink-registered (automatic during install): Claude Code, Claude Desktop, Augment, Trae, Windsurf, Roo, and 20+ others.

Troubleshooting

NODE_TLS_REJECT_UNAUTHORIZED Warning

If you see the TLS security warning, it means your environment has disabled certificate verification globally. This is not caused by our CLI.

# Fix on macOS/Linux:
unset NODE_TLS_REJECT_UNAUTHORIZED

# Fix on Windows (PowerShell):
Remove-Item Env:NODE_TLS_REJECT_UNAUTHORIZED

# Fix on Windows (cmd):
set NODE_TLS_REJECT_UNAUTHORIZED=

To remove it permanently, check your system environment variables or shell profile.

Security

  • API keys stored with file permission 600 (owner-only)
  • All downloads verified with SHA256 checksums
  • ZIP extraction uses yauzl (safe against Zip Slip attacks)
  • Atomic install: staging → rename (no partial installs)
  • No secrets embedded in CLI code

Requirements

  • Node.js ≥ 18
  • A valid Dreamlogic API key

License

MIT © Dreamlogic-ai