LICENSE
MANIFEST.in
README.ja.md
README.md
README.zh-CN.md
pyproject.toml
src/cccc/__init__.py
src/cccc/daemon_main.py
src/cccc/paths.py
src/cccc/cli/__init__.py
src/cccc/cli/__main__.py
src/cccc/cli/actor_cmds.py
src/cccc/cli/common.py
src/cccc/cli/daemon_lifecycle.py
src/cccc/cli/group_cmds.py
src/cccc/cli/im_cmds.py
src/cccc/cli/main.py
src/cccc/cli/messaging_cmds.py
src/cccc/cli/space_cmds.py
src/cccc/cli/system_cmds.py
src/cccc/contracts/__init__.py
src/cccc/contracts/v1/__init__.py
src/cccc/contracts/v1/actor.py
src/cccc/contracts/v1/actor_profile.py
src/cccc/contracts/v1/assistant.py
src/cccc/contracts/v1/async_result.py
src/cccc/contracts/v1/automation.py
src/cccc/contracts/v1/event.py
src/cccc/contracts/v1/group_bridge.py
src/cccc/contracts/v1/group_space.py
src/cccc/contracts/v1/ipc.py
src/cccc/contracts/v1/message.py
src/cccc/contracts/v1/notify.py
src/cccc/contracts/v1/presentation.py
src/cccc/daemon/__init__.py
src/cccc/daemon/actor_runtime_cache.py
src/cccc/daemon/assistive_jobs.py
src/cccc/daemon/claude_app_sessions.py
src/cccc/daemon/client_ops.py
src/cccc/daemon/codex_app_sessions.py
src/cccc/daemon/codex_app_thread_ops.py
src/cccc/daemon/codex_config_ops.py
src/cccc/daemon/mcp_install.py
src/cccc/daemon/pty_activity_probe.py
src/cccc/daemon/pty_app_server_exit.py
src/cccc/daemon/request_dispatch_ops.py
src/cccc/daemon/request_queue_policy.py
src/cccc/daemon/runner_state_ops.py
src/cccc/daemon/runtime_log_diagnostics.py
src/cccc/daemon/runtime_session_ops.py
src/cccc/daemon/serve_ops.py
src/cccc/daemon/server.py
src/cccc/daemon/socket_protocol_ops.py
src/cccc/daemon/voice_secretary_control_turns.py
src/cccc/daemon/actors/__init__.py
src/cccc/daemon/actors/actor_add_ops.py
src/cccc/daemon/actors/actor_exit_ops.py
src/cccc/daemon/actors/actor_lifecycle_ops.py
src/cccc/daemon/actors/actor_membership_ops.py
src/cccc/daemon/actors/actor_ops.py
src/cccc/daemon/actors/actor_profile_ops.py
src/cccc/daemon/actors/actor_profile_runtime.py
src/cccc/daemon/actors/actor_profile_store.py
src/cccc/daemon/actors/actor_runtime_ops.py
src/cccc/daemon/actors/actor_update_ops.py
src/cccc/daemon/actors/private_env_ops.py
src/cccc/daemon/actors/runner_ops.py
src/cccc/daemon/actors/web_model_actor_policy.py
src/cccc/daemon/actors/web_model_browser_delivery.py
src/cccc/daemon/actors/web_model_browser_ops.py
src/cccc/daemon/actors/web_model_browser_recovery_watcher.py
src/cccc/daemon/actors/web_model_browser_session.py
src/cccc/daemon/actors/web_model_runtime_ops.py
src/cccc/daemon/assistants/__init__.py
src/cccc/daemon/assistants/assistant_ops.py
src/cccc/daemon/assistants/assistant_state_views.py
src/cccc/daemon/assistants/local_asr_model_selection.py
src/cccc/daemon/assistants/local_streaming_asr.py
src/cccc/daemon/assistants/sense_voice_text.py
src/cccc/daemon/assistants/sherpa_diarization.py
src/cccc/daemon/assistants/sherpa_diarization_worker.py
src/cccc/daemon/assistants/sherpa_offline_asr.py
src/cccc/daemon/assistants/sherpa_offline_worker.py
src/cccc/daemon/assistants/sherpa_streaming_asr.py
src/cccc/daemon/assistants/sherpa_streaming_worker.py
src/cccc/daemon/assistants/sherpa_vad_segments.py
src/cccc/daemon/assistants/sherpa_vad_worker.py
src/cccc/daemon/assistants/voice_final_asr.py
src/cccc/daemon/assistants/voice_final_asr_debug.py
src/cccc/daemon/assistants/voice_final_document_apply.py
src/cccc/daemon/assistants/voice_idle_review_scheduler.py
src/cccc/daemon/assistants/voice_models.py
src/cccc/daemon/assistants/voice_pcm_segments.py
src/cccc/daemon/assistants/voice_prompt_refine.py
src/cccc/daemon/assistants/voice_runtime_deps.py
src/cccc/daemon/assistants/voice_secretary_output_completion.py
src/cccc/daemon/assistants/voice_secretary_runtime_ops.py
src/cccc/daemon/assistants/voice_secretary_service.py
src/cccc/daemon/assistants/voice_service_runtime.py
src/cccc/daemon/assistants/voice_speaker_identity.py
src/cccc/daemon/assistants/voice_speaker_transcript_windows.py
src/cccc/daemon/assistants/voice_speaker_transcripts.py
src/cccc/daemon/automation/__init__.py
src/cccc/daemon/automation/automation_ops.py
src/cccc/daemon/automation/engine.py
src/cccc/daemon/browser/__init__.py
src/cccc/daemon/browser/projected_browser_runtime.py
src/cccc/daemon/context/__init__.py
src/cccc/daemon/context/context_ops.py
src/cccc/daemon/group/__init__.py
src/cccc/daemon/group/bootstrap_actor_ops.py
src/cccc/daemon/group/group_bootstrap_ops.py
src/cccc/daemon/group/group_lifecycle_ops.py
src/cccc/daemon/group/group_ops.py
src/cccc/daemon/group/group_settings_ops.py
src/cccc/daemon/group/group_state_ops.py
src/cccc/daemon/group/presentation_browser_ops.py
src/cccc/daemon/group/presentation_browser_runtime.py
src/cccc/daemon/group/presentation_ops.py
src/cccc/daemon/group_bridge/__init__.py
src/cccc/daemon/group_bridge/cross_group_receipt_projection.py
src/cccc/daemon/group_bridge/identity.py
src/cccc/daemon/group_bridge/ops.py
src/cccc/daemon/group_bridge/peer_address_sync.py
src/cccc/daemon/group_bridge/receiver.py
src/cccc/daemon/group_bridge/remote_attachments.py
src/cccc/daemon/group_bridge/remote_dispatch.py
src/cccc/daemon/group_bridge/remote_outbox_worker.py
src/cccc/daemon/group_bridge/remote_payloads.py
src/cccc/daemon/group_bridge/reply_relay.py
src/cccc/daemon/group_bridge/route_lookup.py
src/cccc/daemon/group_bridge/ws_auth.py
src/cccc/daemon/group_bridge/ws_client.py
src/cccc/daemon/group_bridge/ws_endpoint.py
src/cccc/daemon/group_bridge/ws_manager.py
src/cccc/daemon/group_bridge/ws_peer.py
src/cccc/daemon/group_bridge/ws_session.py
src/cccc/daemon/group_bridge/transports/__init__.py
src/cccc/daemon/group_bridge/transports/base.py
src/cccc/daemon/group_bridge/transports/group_bridge_session.py
src/cccc/daemon/im/__init__.py
src/cccc/daemon/im/bootstrap_im_ops.py
src/cccc/daemon/im/im_bridge_ops.py
src/cccc/daemon/im/im_ops.py
src/cccc/daemon/memory/__init__.py
src/cccc/daemon/memory/memory_ops.py
src/cccc/daemon/memory/memory_sdk_ops.py
src/cccc/daemon/messaging/__init__.py
src/cccc/daemon/messaging/actor_delivery_planner.py
src/cccc/daemon/messaging/actor_turn_rendering.py
src/cccc/daemon/messaging/chat_delivery_ops.py
src/cccc/daemon/messaging/chat_diagnostics.py
src/cccc/daemon/messaging/chat_ops.py
src/cccc/daemon/messaging/chat_side_effects.py
src/cccc/daemon/messaging/chat_support_ops.py
src/cccc/daemon/messaging/delegation_contract.py
src/cccc/daemon/messaging/delegation_relay_ops.py
src/cccc/daemon/messaging/delegation_targets.py
src/cccc/daemon/messaging/delivery.py
src/cccc/daemon/messaging/inbound_rendering.py
src/cccc/daemon/messaging/inbox_ack_ops.py
src/cccc/daemon/messaging/inbox_read_ops.py
src/cccc/daemon/messaging/install_slash_command.py
src/cccc/daemon/messaging/message_request_lanes.py
src/cccc/daemon/messaging/post_commit.py
src/cccc/daemon/messaging/post_commit_lanes.py
src/cccc/daemon/messaging/slash_skill_dispatch_ops.py
src/cccc/daemon/messaging/streaming.py
src/cccc/daemon/messaging/system_notify_ops.py
src/cccc/daemon/ops/__init__.py
src/cccc/daemon/ops/daemon_core_ops.py
src/cccc/daemon/ops/diagnostics_ops.py
src/cccc/daemon/ops/execution_queues.py
src/cccc/daemon/ops/group_copy_files.py
src/cccc/daemon/ops/group_copy_ops.py
src/cccc/daemon/ops/hermes_runtime_ops.py
src/cccc/daemon/ops/maintenance_ops.py
src/cccc/daemon/ops/registry_ops.py
src/cccc/daemon/ops/remote_access_ops.py
src/cccc/daemon/ops/socket_accept_ops.py
src/cccc/daemon/ops/socket_special_ops.py
src/cccc/daemon/ops/capability_ops/__init__.py
src/cccc/daemon/ops/capability_ops/_common.py
src/cccc/daemon/ops/capability_ops/_documents.py
src/cccc/daemon/ops/capability_ops/_github_skills.py
src/cccc/daemon/ops/capability_ops/_handlers.py
src/cccc/daemon/ops/capability_ops/_import_sources.py
src/cccc/daemon/ops/capability_ops/_install.py
src/cccc/daemon/ops/capability_ops/_install_visibility.py
src/cccc/daemon/ops/capability_ops/_policy.py
src/cccc/daemon/ops/capability_ops/_remote.py
src/cccc/daemon/ops/capability_ops/_removed.py
src/cccc/daemon/ops/capability_ops/_runtime.py
src/cccc/daemon/ops/capability_ops/_search.py
src/cccc/daemon/ops/capability_ops/_skillsmp.py
src/cccc/daemon/ops/capability_ops/_source_instances.py
src/cccc/daemon/ops/capability_ops/_state.py
src/cccc/daemon/ops/capability_ops/_state_views.py
src/cccc/daemon/space/__init__.py
src/cccc/daemon/space/group_space_memory_sync.py
src/cccc/daemon/space/group_space_ops.py
src/cccc/daemon/space/group_space_paths.py
src/cccc/daemon/space/group_space_projection.py
src/cccc/daemon/space/group_space_provider.py
src/cccc/daemon/space/group_space_runtime.py
src/cccc/daemon/space/group_space_store.py
src/cccc/daemon/space/group_space_sync.py
src/cccc/daemon/space/notebooklm_auth_browser_runtime.py
src/cccc/daemon/space/notebooklm_auth_flow.py
src/cccc/kernel/__init__.py
src/cccc/kernel/access_tokens.py
src/cccc/kernel/active.py
src/cccc/kernel/actor_avatar_assets.py
src/cccc/kernel/actor_runtime_projection.py
src/cccc/kernel/actors.py
src/cccc/kernel/agent_state_hygiene.py
src/cccc/kernel/blobs.py
src/cccc/kernel/capabilities.py
src/cccc/kernel/chat_idempotency.py
src/cccc/kernel/context.py
src/cccc/kernel/delivery_policy.py
src/cccc/kernel/events.py
src/cccc/kernel/git.py
src/cccc/kernel/group.py
src/cccc/kernel/group_space.py
src/cccc/kernel/headless_events.py
src/cccc/kernel/hermes_runtime.py
src/cccc/kernel/inbox.py
src/cccc/kernel/install_capability.py
src/cccc/kernel/internal_assistant_runtime.py
src/cccc/kernel/ledger.py
src/cccc/kernel/ledger_index.py
src/cccc/kernel/ledger_retention.py
src/cccc/kernel/ledger_segments.py
src/cccc/kernel/ledger_state_snapshot.py
src/cccc/kernel/ledger_status_cache.py
src/cccc/kernel/memory.py
src/cccc/kernel/memory_export.py
src/cccc/kernel/memory_guide.py
src/cccc/kernel/message_sender_snapshot.py
src/cccc/kernel/messaging.py
src/cccc/kernel/nomcp_sessions.py
src/cccc/kernel/peer_insight.py
src/cccc/kernel/permissions.py
src/cccc/kernel/prompt_files.py
src/cccc/kernel/pty_terminal_state.py
src/cccc/kernel/query_projections.py
src/cccc/kernel/recipient_syntax.py
src/cccc/kernel/registry.py
src/cccc/kernel/runtime.py
src/cccc/kernel/runtime_state_source.py
src/cccc/kernel/scope.py
src/cccc/kernel/settings.py
src/cccc/kernel/system_prompt.py
src/cccc/kernel/task_types.py
src/cccc/kernel/terminal_transcript.py
src/cccc/kernel/terminal_transcript_filter.py
src/cccc/kernel/voice_secretary_actor.py
src/cccc/kernel/voice_secretary_prompt.py
src/cccc/kernel/web_model_connectors.py
src/cccc/kernel/working_state.py
src/cccc/kernel/group_bridge/__init__.py
src/cccc/kernel/group_bridge/auth.py
src/cccc/kernel/group_bridge/credentials.py
src/cccc/kernel/group_bridge/pairing.py
src/cccc/kernel/group_bridge/pairing_outbound_sync.py
src/cccc/kernel/group_bridge/pairing_remote.py
src/cccc/kernel/group_bridge/peer_addresses.py
src/cccc/kernel/group_bridge/receipts.py
src/cccc/kernel/group_bridge/registration.py
src/cccc/kernel/memory_reme/__init__.py
src/cccc/kernel/memory_reme/adapter.py
src/cccc/kernel/memory_reme/layout.py
src/cccc/kernel/memory_reme/runtime.py
src/cccc/kernel/memory_reme/writer.py
src/cccc/ports/__init__.py
src/cccc/ports/web_model_browser_sidecar.py
src/cccc/ports/im/__init__.py
src/cccc/ports/im/__main__.py
src/cccc/ports/im/auth.py
src/cccc/ports/im/bridge.py
src/cccc/ports/im/commands.py
src/cccc/ports/im/config_schema.py
src/cccc/ports/im/inbound_content.py
src/cccc/ports/im/lifecycle.py
src/cccc/ports/im/subscribers.py
src/cccc/ports/im/adapters/__init__.py
src/cccc/ports/im/adapters/base.py
src/cccc/ports/im/adapters/dingtalk.py
src/cccc/ports/im/adapters/dingtalk_api.py
src/cccc/ports/im/adapters/dingtalk_card.py
src/cccc/ports/im/adapters/dingtalk_media.py
src/cccc/ports/im/adapters/dingtalk_messages.py
src/cccc/ports/im/adapters/dingtalk_reactions.py
src/cccc/ports/im/adapters/dingtalk_sender.py
src/cccc/ports/im/adapters/dingtalk_session.py
src/cccc/ports/im/adapters/discord.py
src/cccc/ports/im/adapters/slack.py
src/cccc/ports/im/adapters/telegram.py
src/cccc/ports/im/adapters/wecom.py
src/cccc/ports/im/adapters/weixin.py
src/cccc/ports/im/adapters/feishu/__init__.py
src/cccc/ports/im/adapters/feishu/adapter.py
src/cccc/ports/im/adapters/feishu/attachments.py
src/cccc/ports/im/adapters/feishu/chats.py
src/cccc/ports/im/adapters/feishu/client.py
src/cccc/ports/im/adapters/feishu/domain.py
src/cccc/ports/im/adapters/feishu/events.py
src/cccc/ports/im/adapters/feishu/files.py
src/cccc/ports/im/adapters/feishu/identity.py
src/cccc/ports/im/adapters/feishu/mapper.py
src/cccc/ports/im/adapters/feishu/mentions.py
src/cccc/ports/im/adapters/feishu/outbound.py
src/cccc/ports/im/adapters/feishu/queue.py
src/cccc/ports/im/adapters/feishu/rate_limiter.py
src/cccc/ports/im/adapters/feishu/reactions.py
src/cccc/ports/im/adapters/feishu/text.py
src/cccc/ports/im/adapters/feishu/webhook.py
src/cccc/ports/im/adapters/feishu/ws.py
src/cccc/ports/mcp/__init__.py
src/cccc/ports/mcp/common.py
src/cccc/ports/mcp/group_bridge.py
src/cccc/ports/mcp/main.py
src/cccc/ports/mcp/server.py
src/cccc/ports/mcp/task_types.py
src/cccc/ports/mcp/toolspecs.py
src/cccc/ports/mcp/handlers/__init__.py
src/cccc/ports/mcp/handlers/cccc_automation.py
src/cccc/ports/mcp/handlers/cccc_capability.py
src/cccc/ports/mcp/handlers/cccc_core.py
src/cccc/ports/mcp/handlers/cccc_group_actor.py
src/cccc/ports/mcp/handlers/cccc_im.py
src/cccc/ports/mcp/handlers/cccc_messaging.py
src/cccc/ports/mcp/handlers/cccc_repo.py
src/cccc/ports/mcp/handlers/cccc_space.py
src/cccc/ports/mcp/handlers/code_mode.py
src/cccc/ports/mcp/handlers/context.py
src/cccc/ports/mcp/handlers/debug.py
src/cccc/ports/mcp/handlers/group_bridge_client.py
src/cccc/ports/mcp/handlers/headless.py
src/cccc/ports/mcp/handlers/memory.py
src/cccc/ports/mcp/handlers/notify.py
src/cccc/ports/mcp/handlers/presentation.py
src/cccc/ports/mcp/utils/__init__.py
src/cccc/ports/mcp/utils/help_markdown.py
src/cccc/ports/mcp/utils/space_args.py
src/cccc/ports/web/__init__.py
src/cccc/ports/web/actor_avatar.py
src/cccc/ports/web/app.py
src/cccc/ports/web/bind_preflight.py
src/cccc/ports/web/branding.py
src/cccc/ports/web/main.py
src/cccc/ports/web/middleware.py
src/cccc/ports/web/runtime_control.py
src/cccc/ports/web/schemas.py
src/cccc/ports/web/stream_close.py
src/cccc/ports/web/streams.py
src/cccc/ports/web/dist/favicon.ico
src/cccc/ports/web/dist/favicon.png
src/cccc/ports/web/dist/index.html
src/cccc/ports/web/dist/logo-512.png
src/cccc/ports/web/dist/logo-dark.svg
src/cccc/ports/web/dist/logo.png
src/cccc/ports/web/dist/logo.svg
src/cccc/ports/web/dist/manifest.webmanifest
src/cccc/ports/web/dist/assets/ActorProfilesTab-BdZIyNoQ.js
src/cccc/ports/web/dist/assets/AgentTab-DJNEz98g.js
src/cccc/ports/web/dist/assets/AppModals-D39020KE.js
src/cccc/ports/web/dist/assets/AssistantsTab-FQanJjck.js
src/cccc/ports/web/dist/assets/AutomationTab-DZZkGRRb.js
src/cccc/ports/web/dist/assets/BrandingTab-BqSvdfsO.js
src/cccc/ports/web/dist/assets/CapabilitiesTab-BfBMKgAN.js
src/cccc/ports/web/dist/assets/CapabilitiesTab-RkqtYkAd.js
src/cccc/ports/web/dist/assets/CapabilityCenterWorkspace-D8H_ahVX.js
src/cccc/ports/web/dist/assets/ContextModal-C_dzGwSO.js
src/cccc/ports/web/dist/assets/CopyGroupsTab-odr2DEsM.js
src/cccc/ports/web/dist/assets/DeliveryTab-OWXJBVfa.js
src/cccc/ports/web/dist/assets/DeveloperTab-4fFCMOQ4.js
src/cccc/ports/web/dist/assets/GroupBridgeConnectionsSection-BhNhPM3Z.js
src/cccc/ports/web/dist/assets/GroupSpaceTab-BN4A_NlN.js
src/cccc/ports/web/dist/assets/GuidanceTab-CwEtay1q.js
src/cccc/ports/web/dist/assets/HoverTooltip-BVtrD9gG.js
src/cccc/ports/web/dist/assets/IMBridgeTab-C9qSL8FX.js
src/cccc/ports/web/dist/assets/MarkdownRenderer-C22TS_ll.js
src/cccc/ports/web/dist/assets/MessagingTab-VXBeF_r-.js
src/cccc/ports/web/dist/assets/ModalFrame-CLW3tTch.js
src/cccc/ports/web/dist/assets/PresentationRail-D0cg_t0X.js
src/cccc/ports/web/dist/assets/PresentationViewerModal-BO5OZ58i.js
src/cccc/ports/web/dist/assets/ProjectedBrowserSurfacePanel-qGwXmVvO.js
src/cccc/ports/web/dist/assets/SettingsModal-5zeqUryi.js
src/cccc/ports/web/dist/assets/SetupChecklist-DgMAXqb-.js
src/cccc/ports/web/dist/assets/TranscriptTab-B1ZgfVdi.js
src/cccc/ports/web/dist/assets/WebAccessTab-d6Qq9_P1.js
src/cccc/ports/web/dist/assets/WebModelConnectorsTab-B62qCSUM.js
src/cccc/ports/web/dist/assets/abnfDiagram-VRR7QNED-HC6dJ6N-.js
src/cccc/ports/web/dist/assets/app-chrome-6lvXKxNW.js
src/cccc/ports/web/dist/assets/arc-BjSQqbzd.js
src/cccc/ports/web/dist/assets/architecture-TIHT7OUA-DtXO_UzA.js
src/cccc/ports/web/dist/assets/architectureDiagram-ZJ3FMSHR-DVszir0B.js
src/cccc/ports/web/dist/assets/array-BifhSqXX.js
src/cccc/ports/web/dist/assets/blockDiagram-677ZJIJ3-DCiKEO9D.js
src/cccc/ports/web/dist/assets/button-D9Tk-mgP.js
src/cccc/ports/web/dist/assets/button-variants-DnW72yQL.js
src/cccc/ports/web/dist/assets/c4Diagram-LMCZKHZV-D8ZGwDiv.js
src/cccc/ports/web/dist/assets/capabilityAutoload-Cy55PMt5.js
src/cccc/ports/web/dist/assets/capabilityCenterRoute-BPL2wPpV.js
src/cccc/ports/web/dist/assets/capabilityManagementModel-DBTWCftP.js
src/cccc/ports/web/dist/assets/channel-CztZ2vbg.js
src/cccc/ports/web/dist/assets/chat-core-OhkEvSeQ.js
src/cccc/ports/web/dist/assets/chunk-2Q5K7J3B-C1jixKkw.js
src/cccc/ports/web/dist/assets/chunk-32BRIVSS-CcQ9_Ccr.js
src/cccc/ports/web/dist/assets/chunk-52WLFC77-CDxR72B8.js
src/cccc/ports/web/dist/assets/chunk-5FCAYU7R-Dh_mDa6z.js
src/cccc/ports/web/dist/assets/chunk-5HE753X5-zPGfIu1R.js
src/cccc/ports/web/dist/assets/chunk-5JV3BV7I-BoO0HlT9.js
src/cccc/ports/web/dist/assets/chunk-5TONJI2A-nyszRqSb.js
src/cccc/ports/web/dist/assets/chunk-5VM5RSS4-ZNzvKenW.js
src/cccc/ports/web/dist/assets/chunk-7BUUIJ7U-Bb538aSH.js
src/cccc/ports/web/dist/assets/chunk-BIQX33UG-DkWRPZMF.js
src/cccc/ports/web/dist/assets/chunk-C7G6YPKG-CY30G9x0.js
src/cccc/ports/web/dist/assets/chunk-CQNSW5MT-Bjw5MV47.js
src/cccc/ports/web/dist/assets/chunk-CYSBUYHQ-C9Ut2Srr.js
src/cccc/ports/web/dist/assets/chunk-EMLP6XTP-DwDm8B2J.js
src/cccc/ports/web/dist/assets/chunk-EX3LRPZG-DFgM80mV.js
src/cccc/ports/web/dist/assets/chunk-FWX5IMBZ-5gKZuVd9.js
src/cccc/ports/web/dist/assets/chunk-HOUHSVGY-SIvaKL5G.js
src/cccc/ports/web/dist/assets/chunk-ICXQ74PX-D-P7JgFP.js
src/cccc/ports/web/dist/assets/chunk-JG7HCLWE-Dn3i7DI-.js
src/cccc/ports/web/dist/assets/chunk-JWPE2WC7-DVXcaiue.js
src/cccc/ports/web/dist/assets/chunk-KEIR6QF5-BfrZ3jm6.js
src/cccc/ports/web/dist/assets/chunk-MOJQB5TN-wz8Hmv1K.js
src/cccc/ports/web/dist/assets/chunk-MOZMSUNE-CVBq1RNG.js
src/cccc/ports/web/dist/assets/chunk-OGEWGWER-C72oHo7O.js
src/cccc/ports/web/dist/assets/chunk-OSBZ3O6U-Bf3gOl9M.js
src/cccc/ports/web/dist/assets/chunk-PUDLZKDR-DXN7hp7W.js
src/cccc/ports/web/dist/assets/chunk-Q4XR5HBZ-BPD_6K9n.js
src/cccc/ports/web/dist/assets/chunk-QBLGF6JB-BKUDNNEu.js
src/cccc/ports/web/dist/assets/chunk-R7FJI6CG-CxpPJvAz.js
src/cccc/ports/web/dist/assets/chunk-RYQCIY6F-CZ4ia6G4.js
src/cccc/ports/web/dist/assets/chunk-U6XO7XAA-CGdP5BIs.js
src/cccc/ports/web/dist/assets/chunk-V7JOEXUC-DTTXEJKV.js
src/cccc/ports/web/dist/assets/chunk-VAUOI2AC-C2cYAj86.js
src/cccc/ports/web/dist/assets/chunk-VR4S4FIN-XynDOqAn.js
src/cccc/ports/web/dist/assets/chunk-WYO6CB5R-I6wdzGOY.js
src/cccc/ports/web/dist/assets/chunk-XXDRQBXY-BuE3VzE_.js
src/cccc/ports/web/dist/assets/chunk-Y2CYZVJY-DsF7k-Jl.js
src/cccc/ports/web/dist/assets/chunk-YOTPTUD7-BGu72LlA.js
src/cccc/ports/web/dist/assets/chunk-ZGVPDNZ5-DH1XBAOr.js
src/cccc/ports/web/dist/assets/chunk-ZIRB5QZD-C6fEPe3t.js
src/cccc/ports/web/dist/assets/classDiagram-OUVF2IWQ-BoytebnQ.js
src/cccc/ports/web/dist/assets/classDiagram-v2-EOCWNBFH-BoytebnQ.js
src/cccc/ports/web/dist/assets/cose-bilkent-JH36ORCC-CU59zlcZ.js
src/cccc/ports/web/dist/assets/cynefin-VYW2F7L2-CeOrb5B6.js
src/cccc/ports/web/dist/assets/cynefinDiagram-TSTJHNR4-BJ07LfZd.js
src/cccc/ports/web/dist/assets/cytoscape.esm-B3I8pqwA.js
src/cccc/ports/web/dist/assets/dagre-CXRCoUWR.js
src/cccc/ports/web/dist/assets/dagre-VKFMJZFB-Ba8i_4Nq.js
src/cccc/ports/web/dist/assets/defaultLocale-C8Fc0cco.js
src/cccc/ports/web/dist/assets/diagnostics-BbSVgrYZ.js
src/cccc/ports/web/dist/assets/diagram-FQU43EPY-CwkW5l9o.js
src/cccc/ports/web/dist/assets/diagram-G47NLZAW-Co8akpxH.js
src/cccc/ports/web/dist/assets/diagram-NH7WQ7WH-B8EfYLnU.js
src/cccc/ports/web/dist/assets/diagram-OA4YK3LP-C1KP-jLL.js
src/cccc/ports/web/dist/assets/diagram-WEI45ONY-Cr0KEU00.js
src/cccc/ports/web/dist/assets/dist-D9sYb5Oa.js
src/cccc/ports/web/dist/assets/dnd-E58yxgFh.js
src/cccc/ports/web/dist/assets/ebnfDiagram-CCIWWBDH-C7IjZTTc.js
src/cccc/ports/web/dist/assets/erDiagram-Q63AITRT-BGSFwIjU.js
src/cccc/ports/web/dist/assets/eventmodeling-45OFAUF4-Cb9JFwTS.js
src/cccc/ports/web/dist/assets/flowDiagram-23GEKE2U-B-OWFBcX.js
src/cccc/ports/web/dist/assets/ganttDiagram-NO4QXBWP-CIEjMneI.js
src/cccc/ports/web/dist/assets/gitGraph-TEB2WS4Q-B4lsv2BE.js
src/cccc/ports/web/dist/assets/gitGraphDiagram-IHSO6WYX-xYrD8GUI.js
src/cccc/ports/web/dist/assets/graphlib-B8gBHxth.js
src/cccc/ports/web/dist/assets/helpMarkdown-ehGjPvgU.js
src/cccc/ports/web/dist/assets/i18n-CTgBbY9e.js
src/cccc/ports/web/dist/assets/im-B3ynAPPg.js
src/cccc/ports/web/dist/assets/index-692XxGop.js
src/cccc/ports/web/dist/assets/index-CXNW1ULG.css
src/cccc/ports/web/dist/assets/info-DKCQHKI2-tMxezh8p.js
src/cccc/ports/web/dist/assets/infoDiagram-FWYZ7A6U-K2D_ba0i.js
src/cccc/ports/web/dist/assets/init-D6jRqBbL.js
src/cccc/ports/web/dist/assets/ishikawaDiagram-FXEZZL3T-BzyEYuBz.js
src/cccc/ports/web/dist/assets/journeyDiagram-5HDEW3XC-BqZ8UBWG.js
src/cccc/ports/web/dist/assets/kanban-definition-HUTT4EX6-CXo-ETFa.js
src/cccc/ports/web/dist/assets/katex-CddkPoXu.js
src/cccc/ports/web/dist/assets/line-D4tIGsdB.js
src/cccc/ports/web/dist/assets/linear-B7l8qgEw.js
src/cccc/ports/web/dist/assets/map-DsCK-0Cs.js
src/cccc/ports/web/dist/assets/markdown-DrXoryfG.js
src/cccc/ports/web/dist/assets/mermaid-parser.core-Dhm6FXNv.js
src/cccc/ports/web/dist/assets/mermaid.core-B0bInZon.js
src/cccc/ports/web/dist/assets/mindmap-definition-LN4V7U3C-piT2Bpae.js
src/cccc/ports/web/dist/assets/ordinal-hYBb2elL.js
src/cccc/ports/web/dist/assets/packet-7NZHBO7P-B_kwytRC.js
src/cccc/ports/web/dist/assets/path-BWPyau1x.js
src/cccc/ports/web/dist/assets/pegDiagram-2B236MQR-FMf56Dqh.js
src/cccc/ports/web/dist/assets/pie-RZYD4A2V-j1buGlhT.js
src/cccc/ports/web/dist/assets/pieDiagram-ENE6RG2P-blxtEtXJ.js
src/cccc/ports/web/dist/assets/privateEnvInput-CgvD6v_b.js
src/cccc/ports/web/dist/assets/quadrantDiagram-ABIIQ3AL-DPGHzoLG.js
src/cccc/ports/web/dist/assets/radar-I7S5WNFK-Cn0ataFo.js
src/cccc/ports/web/dist/assets/railroad-3IZDKUUU-DFg6iiGT.js
src/cccc/ports/web/dist/assets/railroad-abnf-AHOZXSZD-CZvN6irW.js
src/cccc/ports/web/dist/assets/railroad-ebnf-EBAXGLYW-C97iLB9Y.js
src/cccc/ports/web/dist/assets/railroad-peg-LSFZ7HO6-C9sIJ2kQ.js
src/cccc/ports/web/dist/assets/railroadDiagram-RFXS5EU6-D91Mvtyq.js
src/cccc/ports/web/dist/assets/react-vendor-sI_hoMop.js
src/cccc/ports/web/dist/assets/requirementDiagram-TGXJPOKE-C4btcW4g.js
src/cccc/ports/web/dist/assets/rfb-Dkh4FeVx.js
src/cccc/ports/web/dist/assets/rolldown-runtime-QTnfLwEv.js
src/cccc/ports/web/dist/assets/rough.esm-CSKSodPl.js
src/cccc/ports/web/dist/assets/sankeyDiagram-HTMAVEWB-DdowZn9G.js
src/cccc/ports/web/dist/assets/sequenceDiagram-DBY2YBRQ-DcN60Rkk.js
src/cccc/ports/web/dist/assets/sizeCapture-X5ZJPWSS-B0uUizjq.js
src/cccc/ports/web/dist/assets/src-_wZywoZs.js
src/cccc/ports/web/dist/assets/stateDiagram-2N3HPSRC-41LIoVvb.js
src/cccc/ports/web/dist/assets/stateDiagram-v2-6OUMAXLB-CPmx5iD-.js
src/cccc/ports/web/dist/assets/swimlanes-5IMT3BWC-B4mq1nJp.js
src/cccc/ports/web/dist/assets/swimlanesDiagram-G3AALYLV-CuXF5ipQ.js
src/cccc/ports/web/dist/assets/system-Dg8u95pU.js
src/cccc/ports/web/dist/assets/timeline-definition-FHXFAJF6-CeDDxQjZ.js
src/cccc/ports/web/dist/assets/treeView-QDETBFTQ-DWaHinax.js
src/cccc/ports/web/dist/assets/treemap-6X3UGDF4-BfSjF-Kv.js
src/cccc/ports/web/dist/assets/types-DbO0GO8M.js
src/cccc/ports/web/dist/assets/useSSE-DQItlppC.js
src/cccc/ports/web/dist/assets/useTheme-8Z5yhLv5.js
src/cccc/ports/web/dist/assets/vendor-HRBjI6Y0.js
src/cccc/ports/web/dist/assets/vennDiagram-L72KCM5P-ua3MgQRD.js
src/cccc/ports/web/dist/assets/wardley-OPB4EBWU-DjIsTrje.js
src/cccc/ports/web/dist/assets/wardleyDiagram-EHGQE667-B3cIBWgf.js
src/cccc/ports/web/dist/assets/webModel-Djm-HBvZ.js
src/cccc/ports/web/dist/assets/xterm-CHOd7Rch.css
src/cccc/ports/web/dist/assets/xterm-D0rjqrls.js
src/cccc/ports/web/dist/assets/xychartDiagram-FW5EYKEG-B7gxqIVx.js
src/cccc/ports/web/dist/logos/amp.png
src/cccc/ports/web/dist/logos/antigravity.svg
src/cccc/ports/web/dist/logos/auggie.png
src/cccc/ports/web/dist/logos/claude.png
src/cccc/ports/web/dist/logos/codex.png
src/cccc/ports/web/dist/logos/copilot.svg
src/cccc/ports/web/dist/logos/cursor.svg
src/cccc/ports/web/dist/logos/devin.svg
src/cccc/ports/web/dist/logos/droid.png
src/cccc/ports/web/dist/logos/grok.svg
src/cccc/ports/web/dist/logos/hermes.svg
src/cccc/ports/web/dist/logos/kilo.svg
src/cccc/ports/web/dist/logos/kimi.png
src/cccc/ports/web/dist/logos/kiro.svg
src/cccc/ports/web/dist/logos/opencode.svg
src/cccc/ports/web/routes/__init__.py
src/cccc/ports/web/routes/access_tokens.py
src/cccc/ports/web/routes/actors.py
src/cccc/ports/web/routes/base.py
src/cccc/ports/web/routes/browser_surface_proxy.py
src/cccc/ports/web/routes/group_bridge.py
src/cccc/ports/web/routes/group_copy_uploads.py
src/cccc/ports/web/routes/groups.py
src/cccc/ports/web/routes/im.py
src/cccc/ports/web/routes/messaging.py
src/cccc/ports/web/routes/nomcp.py
src/cccc/ports/web/routes/space.py
src/cccc/providers/__init__.py
src/cccc/providers/notebooklm/__init__.py
src/cccc/providers/notebooklm/adapter.py
src/cccc/providers/notebooklm/compat.py
src/cccc/providers/notebooklm/errors.py
src/cccc/providers/notebooklm/health.py
src/cccc/providers/notebooklm/_vendor/notebooklm/__init__.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_artifacts.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_atomic_io.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_auth_refresh_retry.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_backoff.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_callbacks.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_client_composed.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_client_metrics.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_client_seams.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_conversation_cache.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_cookie_persistence.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_deadline.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_deprecation.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_env.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_error_injection.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_idempotency.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_kernel.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_logging.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_lookup.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_loop_affinity.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_loop_bound.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_mind_map.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_mind_maps_api.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_note_service.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_notebook_metadata.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_notebooks.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_notes.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_polling_registry.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_reqid_counter.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_request_types.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_research.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_research_task_parser.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_rpc_executor.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_settings.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_sharing.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_sharing_manager.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_sources.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_streaming_post.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_transport_drain.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_transport_errors.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_url_utils.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_version_check.py
src/cccc/providers/notebooklm/_vendor/notebooklm/artifacts.py
src/cccc/providers/notebooklm/_vendor/notebooklm/auth.py
src/cccc/providers/notebooklm/_vendor/notebooklm/client.py
src/cccc/providers/notebooklm/_vendor/notebooklm/config.py
src/cccc/providers/notebooklm/_vendor/notebooklm/exceptions.py
src/cccc/providers/notebooklm/_vendor/notebooklm/io.py
src/cccc/providers/notebooklm/_vendor/notebooklm/log.py
src/cccc/providers/notebooklm/_vendor/notebooklm/migration.py
src/cccc/providers/notebooklm/_vendor/notebooklm/paths.py
src/cccc/providers/notebooklm/_vendor/notebooklm/py.typed
src/cccc/providers/notebooklm/_vendor/notebooklm/research.py
src/cccc/providers/notebooklm/_vendor/notebooklm/types.py
src/cccc/providers/notebooklm/_vendor/notebooklm/urls.py
src/cccc/providers/notebooklm/_vendor/notebooklm/utils.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_artifact/__init__.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_artifact/downloads.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_artifact/formatters.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_artifact/listing.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_artifact/payloads.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_artifact/polling.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_auth/__init__.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_auth/account.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_auth/cookie_policy.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_auth/cookies.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_auth/extraction.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_auth/headers.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_auth/keepalive.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_auth/paths.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_auth/psidts_recovery.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_auth/refresh.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_auth/session.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_auth/storage.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_auth/tokens.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_chat/__init__.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_chat/api.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_chat/notes.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_chat/transport.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_chat/wire.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_middleware/__init__.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_middleware/auth_refresh.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_middleware/chain.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_middleware/chain_host.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_middleware/context.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_middleware/core.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_middleware/drain.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_middleware/error_injection.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_middleware/metrics.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_middleware/retry.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_middleware/semaphore.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_middleware/tracing.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_row_adapters/__init__.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_row_adapters/artifacts.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_row_adapters/notes.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_row_adapters/sources.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_runtime/__init__.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_runtime/auth.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_runtime/config.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_runtime/contracts.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_runtime/helpers.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_runtime/init.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_runtime/lifecycle.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_runtime/transport.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_source/__init__.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_source/add.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_source/content.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_source/listing.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_source/polling.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_source/upload.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_source/upload_payloads.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_types/__init__.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_types/artifacts.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_types/chat.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_types/common.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_types/mind_maps.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_types/notebooks.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_types/notes.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_types/research.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_types/sharing.py
src/cccc/providers/notebooklm/_vendor/notebooklm/_types/sources.py
src/cccc/providers/notebooklm/_vendor/notebooklm/rpc/__init__.py
src/cccc/providers/notebooklm/_vendor/notebooklm/rpc/_safe_index.py
src/cccc/providers/notebooklm/_vendor/notebooklm/rpc/decoder.py
src/cccc/providers/notebooklm/_vendor/notebooklm/rpc/encoder.py
src/cccc/providers/notebooklm/_vendor/notebooklm/rpc/overrides.py
src/cccc/providers/notebooklm/_vendor/notebooklm/rpc/types.py
src/cccc/resources/__init__.py
src/cccc/resources/capability-allowlist.default.yaml
src/cccc/resources/cccc-help.md
src/cccc/resources/voice-models.default.json
src/cccc/runners/__init__.py
src/cccc/runners/headless.py
src/cccc/runners/platform_support.py
src/cccc/runners/pty.py
src/cccc/runners/pty_lifecycle.py
src/cccc/runners/pty_snapshot.py
src/cccc/runners/pty_stub.py
src/cccc/runners/pty_win.py
src/cccc/util/__init__.py
src/cccc/util/conv.py
src/cccc/util/file_lock.py
src/cccc/util/fs.py
src/cccc/util/node_env.py
src/cccc/util/obslog.py
src/cccc/util/process.py
src/cccc/util/terminal_render.py
src/cccc/util/time.py
src/cccc/vendor/reme/__init__.py
src/cccc/vendor/reme/core/__init__.py
src/cccc/vendor/reme/core/embedding/__init__.py
src/cccc/vendor/reme/core/embedding/base_embedding_model.py
src/cccc/vendor/reme/core/enumeration/__init__.py
src/cccc/vendor/reme/core/enumeration/memory_source.py
src/cccc/vendor/reme/core/enumeration/role.py
src/cccc/vendor/reme/core/file_store/__init__.py
src/cccc/vendor/reme/core/file_store/base_file_store.py
src/cccc/vendor/reme/core/file_store/local_file_store.py
src/cccc/vendor/reme/core/file_watcher/__init__.py
src/cccc/vendor/reme/core/file_watcher/base_file_watcher.py
src/cccc/vendor/reme/core/file_watcher/full_file_watcher.py
src/cccc/vendor/reme/core/schema/__init__.py
src/cccc/vendor/reme/core/schema/cut_point_result.py
src/cccc/vendor/reme/core/schema/file_metadata.py
src/cccc/vendor/reme/core/schema/memory_chunk.py
src/cccc/vendor/reme/core/schema/memory_search_result.py
src/cccc/vendor/reme/core/schema/message.py
src/cccc/vendor/reme/core/utils/__init__.py
src/cccc/vendor/reme/core/utils/chunking_utils.py
src/cccc/vendor/reme/core/utils/common_utils.py
src/cccc/vendor/reme/memory/__init__.py
src/cccc/vendor/reme/memory/file_based/__init__.py
src/cccc/vendor/reme/memory/file_based/fb_compactor.py
src/cccc/vendor/reme/memory/file_based/fb_context_checker.py
src/cccc/vendor/reme/memory/file_based/fb_summarizer.py
src/cccc/vendor/reme/memory/tools/__init__.py
src/cccc/vendor/reme/memory/tools/chunk/__init__.py
src/cccc/vendor/reme/memory/tools/chunk/memory_get.py
src/cccc/vendor/reme/memory/tools/chunk/memory_search.py
src/cccc_pair.egg-info/PKG-INFO
src/cccc_pair.egg-info/SOURCES.txt
src/cccc_pair.egg-info/dependency_links.txt
src/cccc_pair.egg-info/entry_points.txt
src/cccc_pair.egg-info/requires.txt
src/cccc_pair.egg-info/top_level.txt
tests/test_access_token_routes.py
tests/test_access_tokens.py
tests/test_active_doc_normalization.py
tests/test_actor_delivery_planner.py
tests/test_actor_group_state_contract.py
tests/test_actor_id_validation.py
tests/test_actor_inbound_rendering.py
tests/test_actor_lifecycle_ops.py
tests/test_actor_private_env.py
tests/test_actor_profile_resolver.py
tests/test_actor_profiles_ops.py
tests/test_actor_runtime_ops.py
tests/test_assistant_ops.py
tests/test_automation_help_nudge_mind_context.py
tests/test_automation_idle_standup_suppression.py
tests/test_automation_manage_legacy_shape.py
tests/test_automation_nudge_digest.py
tests/test_automation_rules_constraints.py
tests/test_automation_silence_activity_filter.py
tests/test_automation_tick_cadence.py
tests/test_blob_path_resolution.py
tests/test_bootstrap_actor_ops.py
tests/test_bootstrap_im_ops.py
tests/test_bridge_stream_degradation.py
tests/test_bridge_streaming.py
tests/test_capability_ops.py
tests/test_capability_skillsmp.py
tests/test_cccc_repo_handler.py
tests/test_cccs_core_profile_events.py
tests/test_chat_diagnostics.py
tests/test_chat_ops.py
tests/test_chat_post_commit.py
tests/test_chat_reply_idempotency.py
tests/test_chat_reply_timeout.py
tests/test_cli_common_local_url.py
tests/test_cli_daemon_fallback.py
tests/test_cli_default_entry_ownership.py
tests/test_cli_env_bool_parsing.py
tests/test_cli_group_set_state_stopped.py
tests/test_cli_main.py
tests/test_cli_space_commands.py
tests/test_cli_web_binding_resolution.py
tests/test_client_ops.py
tests/test_codex_app_flow.py
tests/test_codex_app_thread_ops.py
tests/test_codex_config_ops.py
tests/test_context_group_space_sync.py
tests/test_context_memory_milestone_hook.py
tests/test_context_storage_dirty_tolerance.py
tests/test_context_sync_atomicity.py
tests/test_context_v2_ops.py
tests/test_daemon_core_ops.py
tests/test_daemon_group_settings_dirty_tolerance.py
tests/test_daemon_ipc_docs_parity.py
tests/test_daemon_lifecycle.py
tests/test_daemon_main.py
tests/test_daemon_main_start_safety.py
tests/test_daemon_transport_diagnostics.py
tests/test_delegation_contract.py
tests/test_delegation_relay.py
tests/test_delivery_async_preamble.py
tests/test_delivery_auto_mark_read_event.py
tests/test_delivery_state_behavior.py
tests/test_delivery_throttle.py
tests/test_diagnostics_ops.py
tests/test_dingtalk_at_mention.py
tests/test_dingtalk_card.py
tests/test_dingtalk_session_store.py
tests/test_dockerfile_node_runtime.py
tests/test_docs_blob_path_consistency.py
tests/test_docs_mcp_architecture_surface.py
tests/test_enabled_flag_coercion.py
tests/test_event_contract_internal_parity.py
tests/test_event_kind_model_parity.py
tests/test_events_stream_resume_filtering.py
tests/test_execution_queues.py
tests/test_global_events.py
tests/test_group_automation_baseline.py
tests/test_group_bootstrap_ops.py
tests/test_group_bridge_auth.py
tests/test_group_bridge_contracts.py
tests/test_group_bridge_daemon_ops.py
tests/test_group_bridge_dispatch.py
tests/test_group_bridge_pairing.py
tests/test_group_bridge_pairing_remote.py
tests/test_group_bridge_receipts.py
tests/test_group_bridge_registration.py
tests/test_group_bridge_remote_mcp.py
tests/test_group_bridge_remote_payloads.py
tests/test_group_bridge_reply_relay.py
tests/test_group_bridge_route_lookup.py
tests/test_group_bridge_transport.py
tests/test_group_copy_ops.py
tests/test_group_core_ops.py
tests/test_group_lifecycle_invariants.py
tests/test_group_lifecycle_ops.py
tests/test_group_space_contract.py
tests/test_group_space_file_sync.py
tests/test_group_space_memory_sync.py
tests/test_group_space_ops.py
tests/test_group_space_projection.py
tests/test_group_space_runtime.py
tests/test_group_state_ops.py
tests/test_headless_bootstrap_control_turns.py
tests/test_help_markdown_legacy_tags.py
tests/test_hermes_runtime.py
tests/test_im_auth.py
tests/test_im_bridge_lock.py
tests/test_im_bridge_ops.py
tests/test_im_bridge_startup_filter.py
tests/test_im_commands.py
tests/test_im_discord_adapter.py
tests/test_im_lifecycle.py
tests/test_im_sender_identity.py
tests/test_im_start_env.py
tests/test_im_subscribers_tolerance.py
tests/test_im_telegram_adapter.py
tests/test_im_weixin_adapter.py
tests/test_inbox_read_ops.py
tests/test_inbox_reverse_lookup.py
tests/test_install_slash_command.py
tests/test_ledger_index_schema_upgrade.py
tests/test_ledger_search_index.py
tests/test_ledger_segments.py
tests/test_ledger_tail_read.py
tests/test_lifecycle_tests_headless_runner.py
tests/test_maintenance_ops.py
tests/test_mcp_actor_caller_target_resolution.py
tests/test_mcp_actor_runner_surface.py
tests/test_mcp_agent_state_update.py
tests/test_mcp_automation_manage_actor_id_alias.py
tests/test_mcp_bootstrap_defaults.py
tests/test_mcp_bootstrap_inbox_preview.py
tests/test_mcp_bootstrap_memory_recall_gate.py
tests/test_mcp_capability_import.py
tests/test_mcp_capability_surface.py
tests/test_mcp_capability_use.py
tests/test_mcp_code_mode.py
tests/test_mcp_context_permission_enforcement.py
tests/test_mcp_dynamic_capability_tools.py
tests/test_mcp_group_bridge_pairing.py
tests/test_mcp_group_resolve.py
tests/test_mcp_group_set_state_stopped.py
tests/test_mcp_help_skills_digest.py
tests/test_mcp_install.py
tests/test_mcp_message_reply_idempotency.py
tests/test_mcp_message_send_reply_required.py
tests/test_mcp_normalize_to_arg.py
tests/test_mcp_presentation.py
tests/test_mcp_runtime_context.py
tests/test_mcp_stdio_utf8.py
tests/test_mcp_task_update_status_wrapper.py
tests/test_mcp_tool_bool_coercion.py
tests/test_mcp_tools_list_changed.py
tests/test_mcp_tools_list_pagination.py
tests/test_mcp_toolspec_dispatch_parity.py
tests/test_mcp_toolspec_schema_guard.py
tests/test_memory_reme_auto_trigger.py
tests/test_memory_reme_ops.py
tests/test_message_obligation.py
tests/test_message_request_lanes.py
tests/test_node_env.py
tests/test_nomcp_sessions.py
tests/test_notebooklm_provider_scaffold.py
tests/test_notebooklm_resource_ingest_modes.py
tests/test_observability_logging.py
tests/test_peer_insight.py
tests/test_permissions_action_parity.py
tests/test_permissions_actor_restart.py
tests/test_permissions_group_settings_update.py
tests/test_presentation_browser_ops.py
tests/test_presentation_browser_runtime.py
tests/test_presentation_ops.py
tests/test_process_utils.py
tests/test_projected_browser_runtime.py
tests/test_prompt_defaults.py
tests/test_pty_activity_probe.py
tests/test_pty_attach_selector_events.py
tests/test_pty_history.py
tests/test_pty_lifecycle_concurrency.py
tests/test_pty_win_teardown.py
tests/test_quality_ci_workflow.py
tests/test_quality_configuration.py
tests/test_quality_pytest_shards.py
tests/test_query_projections.py
tests/test_registry_doc_normalization.py
tests/test_registry_reconcile_and_autowake.py
tests/test_remote_access_ops.py
tests/test_runner_kind_no_fallback.py
tests/test_runtime_command_defaults.py
tests/test_runtime_log_diagnostics.py
tests/test_runtime_mcp_failfast.py
tests/test_runtime_pool_defaults_immutable.py
tests/test_runtime_session_ops.py
tests/test_runtime_state_source.py
tests/test_runtime_thread_cleanup.py
tests/test_serve_ops.py
tests/test_serve_ops_automation_thread.py
tests/test_server_pty_exit.py
tests/test_server_request_queue_routing.py
tests/test_settings_cache.py
tests/test_sherpa_diarization.py
tests/test_sherpa_worker_jsonl.py
tests/test_slash_skill_dispatch.py
tests/test_socket_accept_ops.py
tests/test_socket_special_ops.py
tests/test_stream_emit.py
tests/test_system_cmds_doctor.py
tests/test_system_cmds_setup.py
tests/test_system_notify_ops.py
tests/test_system_prompt_group_space.py
tests/test_system_prompt_memory.py
tests/test_t197_fixes.py
tests/test_terminal_render.py
tests/test_unread_index.py
tests/test_voice_final_asr.py
tests/test_voice_final_document_apply.py
tests/test_voice_pcm_segments.py
tests/test_voice_secretary_service.py
tests/test_voice_speaker_identity.py
tests/test_voice_speaker_transcript_windows.py
tests/test_voice_speaker_transcripts.py
tests/test_web_access_auth.py
tests/test_web_actor_avatar_api.py
tests/test_web_actor_profiles_api.py
tests/test_web_actor_restart_schema.py
tests/test_web_actor_routes_cache.py
tests/test_web_assistant_routes.py
tests/test_web_bind_preflight.py
tests/test_web_capability_use_api.py
tests/test_web_context_routes_cache.py
tests/test_web_daemon_transport_details.py
tests/test_web_fs_routes.py
tests/test_web_group_bridge_pairing_routes.py
tests/test_web_group_bridge_routes.py
tests/test_web_group_routes_local.py
tests/test_web_group_settings_dirty_tolerance.py
tests/test_web_group_settings_partial_update.py
tests/test_web_group_space_api.py
tests/test_web_groups_local_projection.py
tests/test_web_help_prompt_notify.py
tests/test_web_i18n_locales_parity.py
tests/test_web_im_config_canonicalization.py
tests/test_web_im_start.py
tests/test_web_ledger_tail_api.py
tests/test_web_manifest_static.py
tests/test_web_messaging_client_id.py
tests/test_web_messaging_submit_semantics.py
tests/test_web_model_actor_lifecycle.py
tests/test_web_model_browser_recovery_watcher.py
tests/test_web_model_browser_sidecar.py
tests/test_web_model_runtime_ops.py
tests/test_web_presentation_api.py
tests/test_web_presentation_browser_api.py
tests/test_web_principal_guards.py
tests/test_web_remote_access_apply.py
tests/test_web_remote_mcp_endpoint.py
tests/test_web_runtime_control.py
tests/test_web_stream_close.py
tests/test_web_streams_tailer_cleanup.py
tests/test_wecom_adapter_core.py
tests/test_windows_pty_backend.py
tests/test_windows_support_diagnostics.py
tests/test_working_state.py