openclaw/apps/ios
ronitchidara 56926e73ec security: wire transformation phase audit fixes
Fix all 7 issues identified in the ChatGPT audit of transformation work:

1. Android build break: Remove duplicate normalizeMainKey/isCanonicalMainSessionKey
   from NodeGatewaySync.kt (they're already in SessionKey.kt). Align both Android
   and iOS implementations to use "main" as canonical (case-insensitive match).

2. Rate limiting: Wire rateLimiter through GatewayRequestContext and enforce:
   - Auth failure backoff (recordAuthFailure on auth failure, clearAuthFailure on success)
   - Request rate limiting before handleGatewayRequest
   - Channel message rate limiting in send handler
   - Add TOO_MANY_REQUESTS error code

3. Injection defenses: Call sanitizeIncomingMessage in chat.send and chat.inject
   handlers to detect prompt injection attempts.

4. RBAC enforcement: Add canAccessAgent check in chat.send handler and
   canExecuteCommand check in node-host runner for exec commands.

5. WhatsApp encrypted backup restore: Update maybeRestoreCredsFromBackup to
   handle encrypted backup files (.bak.enc -> .json.enc restoration).

6. Exec blocklist bypass: Add evaluateBlocklist check in argv-only code path
   in runner.ts (previously only checked for rawCommand path).

7. iOS voice transcript: Fix line 329 in NodeAppModel.swift to use computed
   'key' variable instead of original 'sessionKey' parameter.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-28 17:01:41 +05:30
..
fastlane Branding: update bot.molt bundle IDs + launchd labels 2026-01-27 14:46:50 -06:00
Sources security: wire transformation phase audit fixes 2026-01-28 17:01:41 +05:30
Tests mobile: Phase 4 polish - refactoring, app store prep, and infrastructure 2026-01-28 17:01:20 +05:30
.swiftlint.yml feat: add prek pre-commit hooks and dependabot (#1720) 2026-01-25 10:53:23 +00:00
project.yml mobile: Phase 4 polish - refactoring, app store prep, and infrastructure 2026-01-28 17:01:20 +05:30
README.md Mac: finish Moltbot rename 2026-01-27 14:12:17 -06:00
SwiftSources.input.xcfilelist Mac: finish Moltbot rename 2026-01-27 14:12:17 -06:00

Clawdbot (iOS)

Internal-only SwiftUI app scaffold.

Lint/format (required)

brew install swiftformat swiftlint

Generate the Xcode project

cd apps/ios
xcodegen generate
open Clawdbot.xcodeproj

Shared packages

  • ../shared/MoltbotKit — shared types/constants used by iOS (and later macOS bridge + gateway routing).

fastlane

brew install fastlane

cd apps/ios
fastlane lanes

See apps/ios/fastlane/SETUP.md for App Store Connect auth + upload lanes.