Summary
The current Google ADK (Agent Development Kit) documentation primarily uses Linux command (touch) for file creation in examples. This creates friction for developers on Windows who may not be familiar with these commands. We request expanding the documentation to include equivalent methods for all major platforms (Windows, macOS, Linux).
Proposed Solution
Add platform-agnostic file/folder creation instructions in all relevant documentation sections. Each example should show:
- The Linux commands (current approach)
- Windows equivalent (CMD)
- macOS is similar to Linux commands in many ways
Example Implementation
- Create an empty file agent.py
type nul > multi_tool_agent\agent.py
Additional context
Everything works except creation of a file using touch command.
Summary
The current Google ADK (Agent Development Kit) documentation primarily uses Linux command (
touch) for file creation in examples. This creates friction for developers on Windows who may not be familiar with these commands. We request expanding the documentation to include equivalent methods for all major platforms (Windows, macOS, Linux).Proposed Solution
Add platform-agnostic file/folder creation instructions in all relevant documentation sections. Each example should show:
Example Implementation
type nul > multi_tool_agent\agent.pyAdditional context
Everything works except creation of a file using
touchcommand.