CLAUDE.md gets a Marketplace subsection under Key Conventions (the sync script is app-embedded and re-uploaded on every sync, never baked into container/ — pre-flight F9) and the Settings export/import section now covers marketplace account tokens traveling in ExportedSecrets and the import preview's warning on global hook and plugin installs. HOW-TO-USE.md gets a Marketplace section (placed after Shared Claude Authentication) with its Table of Contents entry (pre-flight N13). The spec doc's stale keychain service name, gh-login flags and upload_bytes_to_container signature are amended to match the shipped code (pre-flight N10). Also fixes the new marketplace code's remaining build/clippy warnings: BTreeMap/Sha256/Digest imports in tree.rs gated behind #[cfg(test)] (their only uses are on MemTree, already test-only), the unused `pub use marketplace::*` glob re-export dropped from models/mod.rs, gh_login::strip_ansi marked #[cfg(test)] (production streams through AnsiStripper instead), and four clippy lints in marketplace test code (double_ended_iterator_last, cloned_ref_to_slice_refs x2, single_match). Flushes the unresolved getMarketplaceSyncReport promise in MarketplaceSection.test.tsx's "opens the Marketplace filtered to this project" test to remove its act() warning. Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
19 lines
386 B
Rust
19 lines
386 B
Rust
pub mod app_settings;
|
|
pub mod container_config;
|
|
pub mod gateway_settings;
|
|
pub mod marketplace;
|
|
pub mod migration;
|
|
pub mod note;
|
|
pub mod project;
|
|
pub mod settings_export;
|
|
pub mod update_info;
|
|
|
|
pub use app_settings::*;
|
|
pub use container_config::*;
|
|
pub use gateway_settings::*;
|
|
pub use migration::*;
|
|
pub use note::*;
|
|
pub use project::*;
|
|
pub use settings_export::*;
|
|
pub use update_info::*;
|