-
Notifications
You must be signed in to change notification settings - Fork 11
feat: add OpenClaw observability plugin #67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
rapids-bot
merged 35 commits into
NVIDIA:main
from
mnajafian-nv:feat/openclaw-hooks-observability-plugin
May 11, 2026
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
962d6dc
feat: add OpenClaw observability plugin shell
mnajafian-nv 5fa14d7
feat: add OpenClaw hook replay backend
mnajafian-nv 7f6c457
feat: align OpenClaw hook backend lifecycle
mnajafian-nv 80de1ff
feat: add OpenClaw telemetry outputs
mnajafian-nv 115ea38
feat: add OpenClaw LLM and tool replay
mnajafian-nv c48ea23
Update integrations/openclaw/package.json
mnajafian-nv 97d9c18
fix: address OpenClaw observability plugin review feedback
mnajafian-nv 65a4fee
test: harden OpenClaw replay edge cases
mnajafian-nv bd66d54
refactor: narrow OpenClaw plugin public surface
mnajafian-nv afb27ae
Merge remote-tracking branch 'upstream/main' into feat/openclaw-hooks…
mnajafian-nv b9962f5
fix: harden OpenClaw JSON normalization
mnajafian-nv e4f0b18
fix: align OpenClaw plugin metadata
mnajafian-nv fbd33d5
fix(openclaw): align package payload and docs
mnajafian-nv f701652
fix(openclaw): add README license header
mnajafian-nv 1b557e1
refactor(openclaw): use typed plugin API handlers
mnajafian-nv 4df12b3
fix: harden OpenClaw runtime lifecycle
mnajafian-nv 7a812fb
fix: preserve LLM usage in OpenInference export
mnajafian-nv 66645b8
build: manage Node packages with npm workspaces
mnajafian-nv dc46c6c
ci(openclaw): fix workspace validation paths
mnajafian-nv a3593d5
ci(openclaw): make pack check portable on Windows
mnajafian-nv 2c00ec2
chore(openclaw): align package with root workspace
mnajafian-nv d4c235b
ci: split OpenClaw integration checks
mnajafian-nv 2ce6a9d
Update .github/workflows/ci_node.yml
mnajafian-nv f851fe6
ci: move OpenClaw checks to dedicated workflow
mnajafian-nv 34ea4bd
Merge remote-tracking branch 'origin/feat/openclaw-hooks-observabilit…
mnajafian-nv f44fb5b
ci: build Node binding before OpenClaw checks
mnajafian-nv 192d811
Improve OpenInference display payloads
mnajafian-nv eceb860
Improve OpenClaw hook replay fidelity
mnajafian-nv af19369
Cover OpenInference display helpers
mnajafian-nv c80fec7
Add source release artifacts for OpenClaw deps
mnajafian-nv 9f81845
docs: document OpenClaw plugin replay boundaries
mnajafian-nv bbc12bd
docs: clean up OpenClaw plugin README
mnajafian-nv 556be5a
chore: remove vendored OpenClaw dependency artifacts
mnajafian-nv 60595e2
Merge remote-tracking branch 'upstream/main' into feat/openclaw-hooks…
mnajafian-nv da04c30
Merge remote-tracking branch 'upstream/main' into feat/openclaw-hooks…
mnajafian-nv File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| # SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| name: OpenClaw | ||
|
|
||
| on: | ||
| workflow_call: | ||
|
|
||
| defaults: | ||
| run: | ||
| shell: bash | ||
|
|
||
| env: | ||
| GH_TOKEN: "${{ github.token }}" | ||
| GIT_COMMIT: "${{ github.sha }}" | ||
| NEMO_FLOW_CI_WORKSPACE: "${{ github.workspace }}" | ||
| UV_PYTHON_DOWNLOADS: never | ||
|
|
||
| jobs: | ||
| Test: | ||
| name: Test | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 30 | ||
| permissions: | ||
| contents: read | ||
|
|
||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | ||
|
|
||
| - name: Load CI tool versions | ||
| id: ci-config | ||
| uses: ./.github/actions/load-ci-tool-versions | ||
|
|
||
| - uses: actions-rust-lang/setup-rust-toolchain@150fca883cd4034361b621bd4e6a9d34e5143606 # v1.15.4 | ||
| with: | ||
| cache: false | ||
| toolchain: ${{ steps.ci-config.outputs.rust_version }} | ||
|
|
||
| - uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1 | ||
| with: | ||
| shared-key: nemo-flow-rust-${{ runner.os }}-${{ runner.arch }}-${{ steps.ci-config.outputs.rust_version }} | ||
| workspaces: . -> target | ||
| cache-all-crates: true | ||
| cache-bin: false | ||
| save-if: false | ||
|
|
||
| - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 | ||
| with: | ||
| node-version: ${{ steps.ci-config.outputs.node_version }} | ||
|
|
||
| - uses: taiki-e/install-action@5939f3337e40968c39aa70f5ecb1417a92fb25a0 # v2.75.15 | ||
| with: | ||
| tool: just@${{ steps.ci-config.outputs.just_version }} | ||
|
|
||
| - name: Run OpenClaw integration checks | ||
| working-directory: ${{ env.NEMO_FLOW_CI_WORKSPACE }} | ||
| run: just --set ci true test-openclaw |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.