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

ofiere-openclaw-plugin

v4.33.0

Published

OpenClaw plugin for Ofiere PM - 14 meta-tools covering tasks, agents, projects, scheduling, knowledge, workflows, notifications, memory, prompts, constellation, space file management, execution plan builder, SOP management, and agent brain (memory + self-

Readme

Ofiere PM Plugin for OpenClaw

Manage your Ofiere PM dashboard directly from OpenClaw agents. Create tasks, manage projects, build workflows, store knowledge — all synced to the dashboard in real time.

Quick Install (One-Click)

curl -sSL https://ofiere.com/scripts/install.sh | bash -s -- \
  --supabase-url "https://xxx.supabase.co" \
  --service-key "eyJ..." \
  --user-id "your-uuid"

Only 3 parameters needed. All agents get the plugin automatically.

Uninstall

curl -sSL https://ofiere.com/scripts/uninstall.sh | bash

How It Works

Once configured, the plugin connects to your Supabase database at gateway startup and registers 9 PM meta-tools directly into the agent. There's no separate MCP server process — it runs inside the OpenClaw gateway for maximum reliability.

Changes made by the agent are immediately visible on the Ofiere dashboard (Vercel) via Supabase real-time subscriptions.

AI Meta-Tools

The plugin uses a scalable meta-tool architecture. Each tool handles one domain with an action parameter to select the operation.

| Tool | Actions | Description | |---|---|---| | OFIERE_TASK_OPS | list, create, update, delete | Rich task management with execution plans, goals, constraints | | OFIERE_AGENT_OPS | list | Query available agents for task assignment | | OFIERE_PROJECT_OPS | list_spaces, create_space, create_folder, bulk_create_tasks, etc. | Full project hierarchy: spaces → folders → tasks | | OFIERE_SCHEDULE_OPS | list, create, update, delete | Calendar events with recurrence | | OFIERE_KNOWLEDGE_OPS | search, list, create, update, delete | Knowledge library with full content retrieval | | OFIERE_WORKFLOW_OPS | list, get, create, update, delete, list_runs, trigger | Visual workflow builder with 16 node types | | OFIERE_NOTIFY_OPS | list, mark_read, create | In-app notifications | | OFIERE_MEMORY_OPS | list_conversations, search_knowledge | Conversation history & agent memory | | OFIERE_PROMPT_OPS | list, get, create, update, delete | System prompt chunk management |

Example

// Create a task with execution plan
OFIERE_TASK_OPS({ action: "create", title: "Deploy v2", agent_id: "ivy",
  execution_plan: [{ step: 1, action: "Build", detail: "Run production build" }] })

// Create a workflow with nodes
OFIERE_WORKFLOW_OPS({ action: "create", name: "Deploy Pipeline",
  nodes: [
    { type: "agent_step", data: { label: "Build", task: "Run npm build" } },
    { type: "human_approval", data: { label: "Review", instructions: "Check build output" } },
    { type: "output", data: { label: "Done" } }
  ],
  edges: [
    { source: "agent_step-...", target: "human_approval-..." },
    { source: "human_approval-...", target: "output-..." }
  ]
})

// Search knowledge library
OFIERE_KNOWLEDGE_OPS({ action: "search", query: "API rate limits" })

CLI Commands

openclaw ofiere setup     # Configure Supabase connection and agent identity
openclaw ofiere status    # View current configuration
openclaw ofiere doctor    # Test connection and list agents

Configuration

Set via openclaw ofiere setup or environment variables:

| Option | Env Var | Description | |---|---|---| | supabaseUrl | OFIERE_SUPABASE_URL | Supabase project URL | | serviceRoleKey | OFIERE_SERVICE_ROLE_KEY | Supabase service role key | | userId | OFIERE_USER_ID | Your user UUID | | agentId | OFIERE_AGENT_ID | This agent's ID (optional — auto-detected) | | enabled | — | Enable/disable the plugin (default: true) |

Architecture

OpenClaw Agent (VPS)
     │ plugin runs IN-PROCESS
Ofiere Plugin ──► Supabase (shared database)
                      ▲
Ofiere Dashboard ─────┘  (Vercel, real-time)

Both the agent plugin and the Vercel dashboard talk to the same Supabase instance. When the agent creates/updates a task, the dashboard sees it instantly through Supabase real-time subscriptions.

Links