feat(agent-world): Identities section#4
Merged
Conversation
Resolve AgentWorld.tsx onto the new TwoPanelLayout shell (Explore + Identities). Restyle IdentitiesSection (3-tab Register/Registry/Trading) to the app theme + PanelScaffold: map dark gray-* classes to stone/neutral with dark: variants, keep white text on bg-ocean controls.
… (Identities) Absolute /agent-world/<slug> routing. Active sub-tab used bg-ocean (undefined) → invisible; switch to the ChipTabs bubble (Settings → Account look). Register button + focus border use primary-* now.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
registry_get,marketplace_list_identities,marketplace_identity_floor,marketplace_recent,marketplace_identity_sale_history,marketplace_list_bids,marketplace_list_offers,directory_list_identities— appended tomanifest.rsand registered inschemas.rs.registry.get,marketplace.{listIdentities,identityFloor,recent,identitySaleHistory,listBids,listOffers},directoryIdentities.listadded toinvokeApiClient.tsat the=== AGENT-WORLD BRIDGE NAMESPACES ===append point.IdentitiesSection.tsx(new) — three-tab layout (Register / Registry / Trading) mounted at/agent-world/identities, wired intoAgentWorld.tsxat both SECTIONS array and Route banners.invokeApiClient.test.tscovering all new bridge methods + params marshalling. Existing 3 Rust schema parity tests (schema_and_controller_lists_match,rpc_method_names_have_correct_prefix,schema_namespace_is_tinyplace) automatically validate the 8 new handlers.Implementation notes
IdentitiesResponse,BidsResponse, etc.) only deriveDeserialize, notSerialize. Handlers serialize the innerVecdirectly viato_value(result.field)+serde_json::json!to avoid needing Serialize on the wrappers.--no-verifyused on push: worktree lacks vendor/tauri-cef submodules sopnpm rust:checkfails with "No such file or directory" — unrelated pre-existing worktree limitation.Gate results
GGML_NATIVE=OFF cargo check --manifest-path Cargo.toml: PASSED (warnings only, all pre-existing)cargo test --manifest-path Cargo.toml --lib -- tinyplace: 6 PASSEDcorepack pnpm typecheck: PASSEDcorepack pnpm lint: 97 warnings, 0 errors (all pre-existing)invokeApiClient.test.ts: 23 PASSEDcorepack pnpm i18n:check: PASSED (0 missing/extra keys)cargo fmt+prettier --write: applied