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

@orgloop/connector-pi

v0.1.0

Published

OrgLoop Pi connector — hook-based session lifecycle notifications

Readme

@orgloop/connector-pi

Captures Pi session lifecycle events via a webhook handler. This connector exposes an HTTP endpoint that receives POST requests from Pi hook scripts (start + stop).

Install

npm install @orgloop/connector-pi

Configuration

sources:
  - id: pi
    connector: "@orgloop/connector-pi"
    config:
      secret: "${PI_WEBHOOK_SECRET}"      # optional — HMAC-SHA256 validation
      buffer_dir: "/tmp/orgloop-pi"       # optional — persist events to disk
    poll:
      interval: "30s"    # how often to drain received webhook events

Config options

| Field | Type | Required | Description | |-------|------|----------|-------------| | secret | string | no | HMAC-SHA256 secret for validating incoming webhook signatures. Supports ${ENV_VAR} syntax | | buffer_dir | string | no | Directory for buffering received events to disk (JSONL). If set, events survive engine restarts |

Events emitted

Events follow the normalized lifecycle contract in event.payload.lifecycle and event.payload.session.

Non-terminal phases emit resource.changed. Terminal phases emit actor.stopped.

Event kind

| Platform event | Trigger | Description | |---|---|---| | session.started | Pi session starts | Session launched (start hook) | | session.completed | Pi session ends with exit 0 | Session completed successfully | | session.failed | Pi session ends with non-zero exit | Session failed | | session.stopped | Pi session ends via signal | Session stopped/cancelled |

Exit status mapping

| Exit Status | Phase | Outcome | Reason | |-------------|-------|---------|--------| | 0 | completed | success | exit_code_0 | | 1-127 | failed | failure | exit_code_<N> | | 130 (SIGINT) | stopped | cancelled | sigint | | 137 (SIGKILL) | stopped | cancelled | sigkill | | 143 (SIGTERM) | stopped | cancelled | sigterm | | 128+N (other) | stopped | cancelled | signal_<N> |

Example event payload

{
  "id": "evt_a1b2c3d4e5f67890",
  "timestamp": "2025-01-15T10:30:00.000Z",
  "source": "pi",
  "type": "actor.stopped",
  "provenance": {
    "platform": "pi",
    "platform_event": "session.completed",
    "author": "pi",
    "author_type": "bot",
    "session_id": "pi-sess-abc123",
    "working_directory": "/home/user/my-project"
  },
  "payload": {
    "lifecycle": {
      "phase": "completed",
      "terminal": true,
      "outcome": "success",
      "reason": "exit_code_0",
      "dedupe_key": "pi:pi-sess-abc123:completed"
    },
    "session": {
      "id": "pi-sess-abc123",
      "adapter": "pi",
      "harness": "pi",
      "cwd": "/home/user/my-project",
      "ended_at": "2025-01-15T10:30:00.000Z",
      "exit_status": 0
    },
    "session_id": "pi-sess-abc123",
    "cwd": "/home/user/my-project",
    "duration_seconds": 90,
    "exit_status": 0,
    "summary": "Implemented feature X"
  }
}

Webhook request format

POST a JSON body to the connector's webhook endpoint.

{
  "session_id": "pi-sess-abc123",
  "cwd": "/home/user/my-project",
  "duration_seconds": 90,
  "exit_status": 0,
  "summary": "Implemented feature X",
  "model": "pi-1"
}

| Field | Type | Required | Description | |-------|------|----------|-------------| | session_id | string | yes | Pi session identifier | | cwd | string | no | Working directory of the session | | duration_seconds | number | no | Session duration in seconds | | exit_status | number | no | Process exit code (0 = success) | | summary | string | no | Optional session summary text | | model | string | no | Model used in the session | | hook_type | string | no | start or stop (defaults to stop) | | timestamp | string | no | Optional ISO 8601 timestamp |

Example route

routes:
  - name: pi-exit-review
    when:
      source: pi
      events:
        - actor.stopped
    then:
      actor: openclaw-agent
      config:
        session_key: "orgloop:pi:session-review"
    with:
      prompt_file: sops/review-pi-session.md

Auth / prerequisites

  • No API tokens needed — this connector receives events via HTTP webhook.
  • A Pi Stop hook must be configured to POST session data to the OrgLoop webhook endpoint when a session exits.
  • An optional Start hook can emit session.started events on session launch.

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | PI_WEBHOOK_SECRET | No | HMAC-SHA256 secret for validating incoming webhook signatures |

Limitations / known issues

  • Push-based, not polling — this connector waits for inbound webhook requests. If the hook is not installed or fails silently, no events will be generated.
  • HMAC validation optional — if secret is configured, signatures are validated. Without it, any POST is accepted.
  • Event buffer — by default, events are held in memory until the next poll(). Configure buffer_dir to persist events to disk.
  • Only POST accepted — non-POST requests receive a 405 response.