Files
Kigi-CLI/crates/codegen/kigi-shared/Cargo.toml
T
ZacharyZhang-NY ea0ce9d15f F3: Kimi inference pipeline + full grok cloud-surface excision
Sampler / inference (PRD F3):
- kimi_compat.rs: single adaptation point for the Kimi chat/completions
  dialect (thinking-field mapping, model_id stripping, empty-content
  tool-call message fix, stream_options.include_usage), with kimi-cli
  source citations
- Rate-limit handling reworked for Kimi/Moonshot semantics; UA kigi/{version}
- /models replaces the xAI models-v2 endpoint everywhere; idle model
  refresh carries X-Msh-* device headers only (X-XAI-Token-Auth and
  x-grok-client-mode/CLIENT_MODE_HEADER machinery deleted)

Cloud-surface excision (PRD §5, zero-egress):
- remote/ conversations lane, cli-chat-proxy-types crate, prod/ dir,
  share command, credit bar: deleted (single local session lane;
  paginate() replaces merge_and_paginate)
- Subscription/tier gate stack deleted end-to-end: AppView
  gate/tier/team/ZDR fields, app/subscription.rs watch loop,
  dispatch/billing.rs paywall + SuperGrok upsell, free-usage-exhausted
  chain, tier-restricted commands, GateInfo, RemoteSettings gate fields,
  SettingsUpdateNotification gate fields
- /privacy + coding-data-sharing setting deleted (backed by a dead xAI
  RPC; Kigi is zero-egress — nothing to share or retain remotely)

Auth UX correctness (user-reported):
- Device-flow fixtures now mirror the live Kimi payload shape
  (https://www.kimi.com/code/authorize_device?user_code=..., verified
  against auth.kimi.com); the fabricated auth.kimi.com/device?code=...
  URLs are gone
- open_browser_detached is a no-op under cfg(test): unit tests drove
  wiremock fixture URLs into the real browser (root cause of the
  "garbage mock link" ABCD-1234 tabs)
- Welcome/pager-minimal rebrand: Grok Build -> Kigi, grok.com ->
  kimi.com, "Sign in to Grok" -> "Sign in to Kimi"
2026-07-17 16:05:51 -04:00

56 lines
2.1 KiB
TOML

[package]
license = "Apache-2.0"
name = "kigi-shared"
edition.workspace = true
[dependencies]
agent-client-protocol = { workspace = true }
anyhow = { workspace = true }
base64 = { workspace = true }
dirs = "6"
dunce = { workspace = true }
image = { workspace = true, features = ["png", "jpeg", "gif", "webp"] }
parking_lot = { workspace = true }
regex = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true, features = ["preserve_order"] }
tempfile = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
urlencoding = { workspace = true }
kigi-config-types = { workspace = true }
kigi-models = { workspace = true }
kigi-tools = { workspace = true }
kigi-tty-utils = { workspace = true }
[dev-dependencies]
uuid = { workspace = true, features = ["v4"] }
[target.'cfg(unix)'.dependencies]
libc = { workspace = true }
# objc2 runtime messaging (links libobjc only, NOT AppKit) for the fast
# NSPasteboard probes and the paste-time native image read in clipboard.rs.
# AppKit itself is dlopen'd lazily at first probe so headless processes never
# load it — preserving the no-AppKit-link rule in clipboard.rs. Version
# matches the workspace lock.
[target.'cfg(target_os = "macos")'.dependencies]
objc2 = "0.6.3"
# arboard for clipboard on non-macOS platforms. On macOS we use pbcopy/pbpaste
# subprocesses to avoid linking AppKit, which causes ~2 GB IOAccelerator GPU
# memory overhead in headless processes (see clipboard.rs).
# `wayland-data-control` makes arboard set the Wayland selection through the
# compositor-side data-control protocol (no surface, no focus) instead of the
# focus-mediated XWayland bridge; no-op off Linux (target-gated inside arboard).
[target.'cfg(not(target_os = "macos"))'.dependencies]
arboard = { workspace = true, features = ["wayland-data-control"] }
# Already in-graph via arboard's wayland-data-control; direct dep for the
# data-control probe in clipboard.rs (`is_primary_selection_supported`).
[target.'cfg(target_os = "linux")'.dependencies]
wl-clipboard-rs = { workspace = true }
[lints]
workspace = true