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

@vdecentralised/plugin-discourse

v0.0.6

Published

Discourse plugin for Eliza OS that adds a provider which will fetch data from a target Discourse instance, such as posts. Discourse is used widely in the web3 DAO and governance community. Giving agents access to a DAO's Discourse data will enhance collab

Downloads

18

Readme

@vdecentralised/plugin-discourse

Discourse plugin for Eliza OS that adds a provider which will fetch data from a target Discourse instance, such as posts. Discourse is used widely in the web3 DAO and governance community. Giving agents access to a DAO's Discourse data will enhance collaboration and decision-making within the DAO. Of course, this plugin is not limited to DAOs, it can be used outside of the web3 ecosystem.

Overview

This plugin provides functionality to:

  • Export data from a Discourse instance in the form of a provider

Installation

npm install @vdecentralised/plugin-discourse
# or
yarn add @vdecentralised/plugin-discourse
# or
pnpm add @vdecentralised/plugin-discourse

Configuration

The plugin requires the following environment variables:

DISCOURSE_INSTANCE_URL=your_discourse_instance_url

Example:

DISCOURSE_INSTANCE_URL=https://gov.uniswap.org

Usage

Import and register the plugin in your Eliza configuration:

import { discoursePlugin } from "@vdecentralised/plugin-discourse";

export default {
    plugins: [discoursePlugin],
    // ... other configuration
};

Features

Fetch posts and summarize

Asking for a summary of the latest DAO governance activity on Discourse:

// Example conversation
User: "What's the latest governance action?";
Assistant: "I'll check the Discourse forum and provide a summary of the latest governance activity.";

API Reference

Providers

  • discoursePostsProvider: Manages interactions with the Discourse API, fetching the latest posts.

Development

Testing

pnpm run test

Dependencies

  • axios: For making HTTP requests to the Discourse API.
  • Other standard dependencies listed in package.json

Future Enhancements

We welcome community feedback and contributions to help prioritize enhancements.

Contributing

Contributions are welcome! Please see the CONTRIBUTING.md file for more information.

Credits

Special thanks to:

  • The Eliza community

For more information about Discourse capabilities:

License

MIT