Feeds/Feed
Live Feed Connectivity

GitHub OpenClaw Activity Stream (Free)

ID:449f8955-f63e-4833-99dc-adad05d7f2f6
Alias:
github-openclaw-activity-stream
Alex  Lin
Alex Lin
Provider
Feed Type
Stream
Standard RESTful
Verified Source

Free real-time stream of key development events from openclaw/openclaw (merged PRs to main, pushes to main, and published releases), normalized for AI-agent consumption.

Access Status
Free
Request Custom Feed
PricingFree
AuthAPI Key Required
SupportCommunity

Data Health & History

30D Reliability
81.95%
Live Heatmap
Last Sync
4/11/2026
Healthy
Sync Interval
15 Minutes
Guaranteed refresh rate

Agent-Native Workbench

Connected

HTTP REST Test Console

Use a real API key and query parameters to hit this feed.

Sent as the Authorization header.Get Keys

Appended to the URL as ?limit=.Max 100

Sent as ?jsonpath= for server-side JSON filtering.Learn Syntax

Used for time-based pagination in stream mode.

Sent as start_time / end_time, mapped to inclusive event_timestamp range.

Add this skill to your OpenClaw skill directory to enable autonomous data fetching.

View Docs

One-line install

curl -fsSL https://pipeagent.dev/install.sh | bash -s -- --alias "github-openclaw-activity-stream"
1---
2name: "github-openclaw-activity-stream"
3description: "PipeAgent: Free real-time stream of key development events from openclaw/openclaw (merged PRs to main, pushes to main, and published releases), normalized for AI-agent consumption."
4license: "MIT"
5emoji: "⚡"
6user-invocable: true
7requires:
8 env:
9 - PROVIDER_READ_API_KEY
10 config:
11 - feed_id: "449f8955-f63e-4833-99dc-adad05d7f2f6"
12 - base_url: "https://api.pipeagent.dev"
13tools:
14 - type: function
15 function:
16 name: "fetch_pipeagent_449f8955"
17 description: "Fetch live structured data from PipeAgent for feed 449f8955-f63e-4833-99dc-adad05d7f2f6."
18 parameters:
19 type: object
20 properties:
21 jsonpath:
22 type: string
23 description: "Optional JSONPath to filter/project results."
24 required: []
25 # The HTTP call this tool should execute
26 x-pipeagent-http:
27 method: GET
28 url: "https://api.pipeagent.dev/v1/feed/449f8955-f63e-4833-99dc-adad05d7f2f6"
29 headers:
30 Authorization: "Bearer {{PROVIDER_READ_API_KEY}}"
31---
32
33### Instruction
34You are an expert data analysis agent. Use this skill to fetch live structured data from PipeAgent.
35The endpoint results are pre-parsed JSON.
36
371. Use the provided tool definition to call `GET https://api.pipeagent.dev/v1/feed/449f8955-f63e-4833-99dc-adad05d7f2f6` with the configured `feed_id`.
382. If the user provided a `jsonpath`, pass it as the `jsonpath` argument to minimize context window usage.
393. Present the findings in a clean, professional table format.
404. Validate and reason about the response according to the JSON Schema below.
41
42**[SILENT EXECUTION]**
43- Do not explain your technical steps.
44- Do not describe the API call process.
45- Only return the final, user-facing answer.
46
47### Response JSON Schema
48response_schema: |
49 {
50 "type": "object",
51 "required": [
52 "id",
53 "event_id",
54 "event_type",
55 "actor",
56 "payload",
57 "source_repo",
58 "created_at"
59 ],
60 "properties": {
61 "id": {
62 "type": "string"
63 },
64 "actor": {
65 "type": "object",
66 "required": [
67 "login"
68 ],
69 "properties": {
70 "login": {
71 "type": "string"
72 },
73 "avatar_url": {
74 "type": [
75 "string",
76 "null"
77 ]
78 }
79 }
80 },
81 "payload": {
82 "type": "object"
83 },
84 "event_id": {
85 "type": "string"
86 },
87 "created_at": {
88 "type": "string"
89 },
90 "event_type": {
91 "enum": [
92 "merge",
93 "major_push",
94 "release"
95 ],
96 "type": "string"
97 },
98 "source_repo": {
99 "type": "string"
100 }
101 }
102 }
103
Active on 42k Agents

Documentation

Overview

This feed streams high-signal activity from openclaw/openclaw on GitHub.

It focuses on:

  • merged pull requests into main
  • pushes to main
  • published releases
  • The feed type is stream and pricing is free.

    Consumer API

    http
    GET https://api.pipeagent.dev/v1/feed/{FEED_ID}
    x-api-key: YOUR_READ_KEY

    Stream event schema

    FieldTypeDescription
    idstringStream record ID (same as GitHub event id).
    event_idstringRaw GitHub event ID.
    event_typestringOne of: merge, major_push, release.
    actorobjectActor info (login, avatar_url).
    payloadobjectEvent-specific normalized payload.
    source_repostringSource repository full name (openclaw/openclaw).
    created_atstring (ISO8601)Original GitHub event timestamp.

    Cursor behavior

    Use response metadata.next_cursor for incremental polling.

    For stream feeds, cursor is time-based and ordered by event time.

    Notes

  • This is an append-only stream (new records are appended).
  • GitHub Events API itself is near-real-time and may have slight delay.
  • Sync History

    Live Heartbeat
    100.0% Uptime
    24h AgoNow
    Latest Updates
    No recent syncs recorded.