Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
1ddd4fe
prototype claude code agent workflow
yczhang-nv May 29, 2026
9394091
Add experimental workflows with Codex, Cursor, OpenClaw, Hermes integ…
yczhang-nv May 29, 2026
0473003
rename folders
yczhang-nv May 29, 2026
bba4015
Misc fixes on experimental examples
yczhang-nv Jun 2, 2026
26f5a57
clean up Hermes example
yczhang-nv Jun 2, 2026
1b8253b
clean up claude code workflow
yczhang-nv Jun 2, 2026
f3cbbc4
Clean up Codex workflow
yczhang-nv Jun 2, 2026
b624951
clean up Cursor example workflow
yczhang-nv Jun 3, 2026
30a0297
Clean up OpenClaw workflow
yczhang-nv Jun 3, 2026
9165fe4
fix CI
yczhang-nv Jun 3, 2026
3e395aa
Merge remote-tracking branch 'upstream/develop' into codex/nat-292-co…
yczhang-nv Jun 3, 2026
13c39be
fix CI
yczhang-nv Jun 3, 2026
4ef7a47
fix comments
yczhang-nv Jun 3, 2026
7657887
fix CI
yczhang-nv Jun 3, 2026
3bfd704
update uv.lock files
yczhang-nv Jun 3, 2026
32866c2
clean up SDK usage
yczhang-nv Jun 3, 2026
5f8c5c5
clean up uv.lock
yczhang-nv Jun 3, 2026
cbd39ae
update uv.lock files
yczhang-nv Jun 3, 2026
889003b
fix comments
yczhang-nv Jun 3, 2026
5a5e3e0
re-generate uv.lock
yczhang-nv Jun 3, 2026
d26456a
fix comments
yczhang-nv Jun 3, 2026
f199fdd
re-generate eval datasets
yczhang-nv Jun 4, 2026
621b730
fix OpenClaw working directory validation
yczhang-nv Jun 4, 2026
164b710
Add NeMo-Relay as a prerequisite
yczhang-nv Jun 4, 2026
937f88f
mention installing profiler in eval section
yczhang-nv Jun 4, 2026
23e602d
Update openclaw workflow README
yczhang-nv Jun 4, 2026
e83ad31
update README
yczhang-nv Jun 4, 2026
69507e8
update README
yczhang-nv Jun 4, 2026
748b903
update README
yczhang-nv Jun 4, 2026
97fab36
update README
yczhang-nv Jun 4, 2026
8ff47fb
simplify README
yczhang-nv Jun 4, 2026
a2a2569
fix Vale error
yczhang-nv Jun 4, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
###### Place new entries directly below this line! ######
node_modules/
/.codex

# auto-generated chainlit stuff
Expand Down
9 changes: 9 additions & 0 deletions ci/scripts/path_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@
r"^examples/",
r"^examples/deploy/",
),
# Allow experimental adapter eval configs to reference sibling data files.
(
r"^examples/experimental/.*/configs/config.*\.yml$",
r"^examples/experimental/.*/data/",
),
(
r"^examples/advanced_agents/alert_triage_agent/.*configs/config.*\.yml",
r"^examples/advanced_agents/alert_triage_agent/data/",
Expand Down Expand Up @@ -258,6 +263,7 @@
r"^ci/", #
# project files
r"pyproject\.toml$", #
r"package-lock\.json$", #
# docker files
r"Dockerfile", #
r"docker-compose([A-Za-z0-9_\-\.]+)?\.ya?ml$", #
Expand Down Expand Up @@ -286,9 +292,12 @@
# generated files
r"^\./run_service\.sh$",
r"^outputs/line_chart_\d+\.png$", #
r"^examples/experimental/codex_agent_adapter/node_modules/", # generated by npm install
r"^\.\./NeMo-Flow(/.*)?$", # external NeMo Relay source checkout
# virtual environment directories
r"(\.[a-z_]*env$|^\.[a-z_]*env)",
r"^\.claude/", # coding-agent project configuration directories
r"^\.cursor/", # coding-agent project configuration directories
}

ALLOWLISTED_FILE_PATH_PAIRS_REGEX = list(
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions examples/A2A/math_assistant_a2a/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions examples/A2A/math_assistant_a2a_protected/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions examples/HITL/por_to_jiratickets/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions examples/HITL/simple_calculator_hitl/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions examples/MCP/service_account_auth_mcp/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions examples/MCP/simple_auth_mcp/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions examples/MCP/simple_calculator_fastmcp/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading