Filesystem Sync
Use the Python ADK module to sync the attached filesystem into/workspace:
Task System Folders
TerminalUse also maintains task-scoped system folders for supported runtimes:dot_claudemounted at/root/.claudedot_codexmounted at/root/.codex
folder_type, the task module syncs all supported system folders.
What Sync Does
sync_downcompares remote and local checksums, then fetches and extracts only when neededsync_upcreates a new archive and pushes changes back when needed- filesystem sync and system-folder sync are both used by the runtime around
on_createandon_event on_cancelis not wrapped in the automatic sync path, so do not rely on cancel-time workspace writes being persisted
Important Boundary
Do not useget_upload_url or get_download_url as if they were per-file APIs inside your agent code. Those endpoints are for whole-filesystem archive transfers.
Use:
adk.filesystem.sync_down/sync_upfor runtime workspace syncuploadFileordownloadFilefor one-file app-side operations