You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add default export path to gen_export_gltf and fix clippy warnings
Implement optional path parameter for gen_export_gltf tool, defaulting to
{workspace}/exports/{timestamp}.glb when omitted. This requires loading
Config early in main() so workspace path can be passed to both Bevy and
agent threads.
Changes:
- gen/main.rs: Load Config early, pass workspace to setup_gen_app and run_agent_loop
- gen/plugin.rs: Add GenWorkspace resource, resolve default export path
- gen/commands.rs: Make ExportGltf path optional
- gen/tools.rs: Make path optional in schema, parse with .get().and_then()
- cli/Cargo.toml: Add missing gen feature definition
- cli/desktop/mod.rs: Remove unused WorkerHandle re-export
- cli/desktop/state.rs: Add allow(dead_code) on WorkerMessage enum
- core/agent/tools/mod.rs: Remove unused hardcoded_filters import
- core/agent/providers.rs: Collapse nested if into guard clause
- core/heartbeat/runner.rs: Collapse nested ifs, remove unnecessary casts, use unwrap_or_else
All clippy warnings with -D warnings now pass.
0 commit comments