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-coding-agent

v0.1.0

Published

OrgLoop coding agent connector — harness-agnostic hook-based session lifecycle events

Downloads

85

Readme

@orgloop/connector-coding-agent

Harness-agnostic connector for capturing coding agent session lifecycle events via webhook. Works with any coding agent harness (Claude Code, Codex, OpenCode, Pi, Pi-rust, etc.) that sends lifecycle events via HTTP POST.

Install

npm install @orgloop/connector-coding-agent

Configuration

sources:
  # Explicit platform
  - id: opencode
    connector: "@orgloop/connector-coding-agent"
    config:
      platform: opencode
      secret: "${OPENCODE_WEBHOOK_SECRET}"  # optional

  # Platform defaults to source id
  - id: claude-code
    connector: "@orgloop/connector-coding-agent"
    config:
      secret: "${CLAUDE_CODE_WEBHOOK_SECRET}"  # optional

Config options

| Field | Type | Required | Description | |-------|------|----------|-------------| | platform | string | no | Platform identifier for provenance metadata. Defaults to the source ID | | harness | string | no | Harness identifier for session.harness. Defaults to platform value | | 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 | Coding agent session starts | Session launched (start hook) | | session.completed | Session ends with exit 0 | Session completed successfully | | session.failed | Session ends with non-zero exit | Session failed | | session.stopped | Session ends via signal | Session stopped/cancelled |

Example event payload

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

Webhook request format

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

{
  "session_id": "sess-abc123",
  "working_directory": "/home/user/my-project",
  "duration_seconds": 120,
  "exit_status": 0,
  "summary": "Implemented auth module and added tests"
}

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

Backward compatibility

The @orgloop/connector-claude-code package is now a thin alias that delegates to this connector. Existing configs using connector: "@orgloop/connector-claude-code" continue to work unchanged.

Example route

routes:
  - name: agent-exit-review
    when:
      source: opencode
      events:
        - actor.stopped
    then:
      actor: openclaw-agent