Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SpiderApp
Submodule SpiderApp updated 46 files
+34 −0 build.zig
+10 −3 src/cli/args.zig
+616 −0 src/cli/client_context.zig
+84 −0 src/cli/commands/agent.zig
+159 −0 src/cli/commands/auth.zig
+320 −0 src/cli/commands/chat.zig
+286 −0 src/cli/commands/complete.zig
+172 −0 src/cli/commands/fs.zig
+1,171 −0 src/cli/commands/node.zig
+353 −0 src/cli/commands/session.zig
+929 −0 src/cli/commands/workspace.zig
+424 −0 src/cli/fsrpc.zig
+109 −4,807 src/cli/main.zig
+173 −0 src/cli/output.zig
+353 −0 src/cli/repl.zig
+273 −0 src/cli/tui.zig
+292 −0 src/cli/venom_discovery.zig
+357 −0 src/cli/wizards/workspace_setup.zig
+188 −0 src/client/health_checks.zig
+176 −0 src/client/workspace_operations.zig
+180 −0 src/gui/panel_hosts/dashboard.zig
+1,364 −0 src/gui/panel_hosts/debug_host.zig
+159 −0 src/gui/panel_hosts/filesystem_host.zig
+237 −0 src/gui/panel_hosts/mcp_config.zig
+236 −0 src/gui/panel_hosts/mcp_host.zig
+534 −0 src/gui/panel_hosts/mission_host.zig
+419 −0 src/gui/panel_hosts/mission_workboard.zig
+236 −0 src/gui/panel_hosts/node_topology.zig
+234 −0 src/gui/panel_hosts/node_topology_host.zig
+146 −0 src/gui/panel_hosts/settings_host.zig
+356 −0 src/gui/panel_hosts/terminal_host.zig
+195 −0 src/gui/panel_hosts/venom_manager.zig
+1,454 −0 src/gui/panel_hosts/workspace_host.zig
+3,234 −1,749 src/gui/root.zig
+83 −0 src/gui/state/mission_helpers.zig
+260 −0 src/gui/state/mission_types.zig
+132 −0 src/gui/state/venom_types.zig
+23 −0 themes/zsc_modern_ai/layouts/workspace.json
+17 −0 themes/zsc_modern_ai/manifest.json
+9 −0 themes/zsc_modern_ai/profiles/fullscreen.json
+9 −0 themes/zsc_modern_ai/profiles/phone.json
+9 −0 themes/zsc_modern_ai/profiles/tablet.json
+306 −0 themes/zsc_modern_ai/styles/components.json
+28 −0 themes/zsc_modern_ai/tokens/base.json
+10 −0 themes/zsc_modern_ai/tokens/dark.json
+14 −0 themes/zsc_modern_ai/tokens/light.json
2 changes: 1 addition & 1 deletion Spiderweb
Submodule Spiderweb updated 89 files
+40 −2 .github/workflows/ci.yml
+3 −0 .github/workflows/codex-review-gate.yml
+3 −0 .github/workflows/enable-automerge-deanoc.yml
+105 −0 .github/workflows/release.yml
+3 −0 .github/workflows/ziggy-shared-ci.yml
+60 −0 CHANGELOG.md
+10 −1 README.md
+96 −0 VENOM_RELEASES.md
+12 −52 build.zig
+2 −1 build.zig.zon
+1 −1 deps/spider-node
+1 −1 deps/spider-protocol
+1 −1 docs
+265 −1 install.sh
+4 −4 platform/macos/SpiderwebFSKit.xcodeproj/project.pbxproj
+1 −1 platform/macos/SpiderwebFSKitApp/SpiderwebAppController.swift
+98 −3 platform/macos/scripts/package-spiderweb-macos-release.sh
+42 −0 scripts/README.md
+150 −0 scripts/bump-version.sh
+30 −0 scripts/check-spidervenoms-release-pin.sh
+77 −0 scripts/check-version-sync.sh
+197 −0 scripts/package-spiderweb-linux-release.sh
+99 −0 scripts/spidervenoms-release.sh
+3,201 −510 src/acheron/control_plane.zig
+40 −9 src/acheron/namespace_mount_provider.zig
+691 −101 src/acheron/session.zig
+1 −1 src/acheron/session_bound_venoms.zig
+1 −5 src/acheron/session_catalog_bindings.zig
+4 −1 src/acheron/session_node_venoms.zig
+439 −8 src/acheron/session_service_discovery.zig
+57 −1 src/acheron/session_workspace_contract.zig
+8 −0 src/c/fuse_compat.c
+2 −0 src/c/fuse_compat.h
+129 −12 src/config.zig
+152 −1 src/control_cli.zig
+0 −726 src/local_node_service_main.zig
+2 −2 src/main.zig
+368 −0 src/managed_bundle_signatures.zig
+14 −5 src/mcp_bridge_main.zig
+17 −0 src/runtime/README.md
+5 −4 src/runtime/fs/README.md
+0 −0 src/runtime/fs/fs_cache.zig
+51 −0 src/runtime/fs/fs_fuse_adapter.zig
+0 −0 src/runtime/fs/fs_fuse_path_cache.zig
+0 −0 src/runtime/fs/fs_helper_client.zig
+0 −0 src/runtime/fs/fs_lib.zig
+0 −0 src/runtime/fs/fs_source_policy.zig
+0 −0 src/runtime/fs/shared/fs_gdrive_backend.zig
+0 −0 src/runtime/fs/shared/fs_gdrive_source_adapter.zig
+0 −0 src/runtime/fs/shared/fs_linux_source_adapter.zig
+0 −0 src/runtime/fs/shared/fs_local_source_adapter.zig
+0 −0 src/runtime/fs/shared/fs_namespace_source_adapter.zig
+0 −0 src/runtime/fs/shared/fs_node_main.zig
+0 −0 src/runtime/fs/shared/fs_node_ops.zig
+0 −0 src/runtime/fs/shared/fs_node_server.zig
+0 −0 src/runtime/fs/shared/fs_node_service.zig
+0 −0 src/runtime/fs/shared/fs_posix_source_adapter.zig
+0 −0 src/runtime/fs/shared/fs_source_adapter.zig
+0 −0 src/runtime/fs/shared/fs_source_adapter_factory.zig
+0 −0 src/runtime/fs/shared/fs_watch_runtime.zig
+0 −0 src/runtime/fs/shared/fs_windows_source_adapter.zig
+0 −0 src/runtime/git_namespace.zig
+110 −12 src/runtime/mcp_client.zig
+0 −0 src/runtime/terminal_namespace.zig
+44 −41 src/server.zig
+1,143 −156 src/server_local_node_supervisor.zig
+53 −3 src/venom_model.zig
+79 −2 src/venom_package.zig
+50 −17 src/venom_packages.zig
+1,093 −0 src/venom_registry.zig
+284 −0 src/venom_registry_signatures.zig
+44 −0 src/venoms/README.md
+7 −5 src/venoms/mounts.zig
+383 −19 src/venoms/packages.zig
+22 −1 test-env/test-external-codex-workspace.sh
+48 −7 test-env/test-install.sh
+1 −1 test-env/test-unified-v2-protocol.sh
+ tests/fixtures/venom-registry/artifacts/spidervenoms-managed-local-linux-arm64.tar.gz
+1 −0 tests/fixtures/venom-registry/artifacts/spidervenoms-managed-local-linux-arm64.tar.gz.sha256
+ tests/fixtures/venom-registry/artifacts/spidervenoms-managed-local-linux-x86_64.tar.gz
+1 −0 tests/fixtures/venom-registry/artifacts/spidervenoms-managed-local-linux-x86_64.tar.gz.sha256
+ tests/fixtures/venom-registry/artifacts/spidervenoms-managed-local-macos-arm64.tar.gz
+1 −0 tests/fixtures/venom-registry/artifacts/spidervenoms-managed-local-macos-arm64.tar.gz.sha256
+150 −0 tests/fixtures/venom-registry/release-facts.json
+141 −0 tests/fixtures/venom-registry/v1/bundles/managed-local/0.5.8.json
+11 −0 tests/fixtures/venom-registry/v1/channels/beta.json
+11 −0 tests/fixtures/venom-registry/v1/channels/dev.json
+20 −0 tests/fixtures/venom-registry/v1/channels/stable.json
+49 −0 tests/fixtures/venom-registry/v1/index.json