chore: update dependencies and configuration for console-frontend#4
chore: update dependencies and configuration for console-frontend#4andersonleal merged 2 commits intomainfrom
Conversation
- Update package versions in package.json and pnpm-lock.yaml for @tanstack/react-router, @tanstack/zod-adapter, and related devtools to the latest versions. - Modify .gitignore to include 'AGENTS.md' and 'conductor'. - Change Vite server port from 3113 to 3114 and add a proxy for API requests. - Refactor function path references to function ID in various API and route files for consistency. - Update Rust bridge functions to use the new call_with_timeout method for improved clarity and maintainability. These changes enhance the overall functionality and maintainability of the console-frontend application.
📝 WalkthroughWalkthroughThis pull request refactors function identifiers from Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
🧪 Generate unit tests (beta)
Comment |
|
Note Currently processing new changes in this PR. This may take a few minutes, please wait... ✏️ Tip: You can disable in-progress messages and the fortune message in your review settings. Tip You can enable review details to help with troubleshooting, context usage and more.Enable the ✨ Finishing touches
🧪 Generate unit tests (beta)
Comment |
2 similar comments
|
Note Currently processing new changes in this PR. This may take a few minutes, please wait... ✏️ Tip: You can disable in-progress messages and the fortune message in your review settings. Tip You can enable review details to help with troubleshooting, context usage and more.Enable the ✨ Finishing touches
🧪 Generate unit tests (beta)
Comment |
|
Note Currently processing new changes in this PR. This may take a few minutes, please wait... ✏️ Tip: You can disable in-progress messages and the fortune message in your review settings. Tip You can enable review details to help with troubleshooting, context usage and more.Enable the ✨ Finishing touches
🧪 Generate unit tests (beta)
Comment |
📝 WalkthroughWalkthroughThe changes rename Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
🧪 Generate unit tests (beta)
No actionable comments were generated in the recent review. 🎉 Comment |
3 similar comments
📝 WalkthroughWalkthroughThe changes rename Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
🧪 Generate unit tests (beta)
No actionable comments were generated in the recent review. 🎉 Comment |
📝 WalkthroughWalkthroughThe changes rename Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
🧪 Generate unit tests (beta)
No actionable comments were generated in the recent review. 🎉 Comment |
📝 WalkthroughWalkthroughThe changes rename Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
🧪 Generate unit tests (beta)
No actionable comments were generated in the recent review. 🎉 Comment |
- Add 'include_internal' parameter to fetchTraces for improved trace filtering. - Update TracesPage to utilize the new 'include_internal' parameter based on user settings. - Refactor Rust bridge functions and triggers to use a consistent 'engine.console' namespace for better organization. - Modify .gitignore to include '.claude' for improved project cleanliness. These changes enhance the trace analysis capabilities and improve the structure of the Rust bridge integration.
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In @.gitignore:
- Line 67: The .gitignore entry ".claude" is too broad and will prevent
committing shared agent configs; instead, remove the root ".claude" ignore and
add a selective pattern that keeps ".claude/agents/" and the "motia-developer"
subagent tracked while ignoring user-specific files (e.g., per-user settings or
caches). Update the ignore rules so that .claude/agents/ and any files under it
(including motia-developer) are not ignored but user-local files in .claude
remain ignored; locate the .gitignore entry ".claude" and replace it with
selective patterns that explicitly whitelist .claude/agents/ and motia-developer
while continuing to ignore user-specific Claude files.
chore: update dependencies and configuration for console-frontend
Summary
Updates iii-console to align with the III Engine protocol and SDK changes, refreshes frontend dependencies, and adjusts dev server configuration.
Key changes:
function_path→function_idacross the frontend (types, API client, handlers, dashboard) and invocation/cron request bodies to match the III Engine protocol (see iii-engine PR #112).invoke_function_with_timeoutwithcall_with_timeoutin console-rust bridge to match the current III SDK API.@tanstack/react-router-devtools, Biome, and@vitejs/plugin-react; lockfile updates in pnpm and Cargo./apiproxy added tohttp://localhost:3113so the UI can run alongside the Rust binary. Minor copy/formatting (e.g. "Function Path" → "Function ID", URL display)..gitignoreaddsconductor; Cargo.lock updates (OpenTelemetry, axum, dependency cleanup).Type of Change
Checklist
Additional Context
function_idin WebSocket and REST contracts./apito the binary for local development.Summary by CodeRabbit
Release Notes
New Features
Improvements