{% if repository_info %} At the user's request, repository {{ repository_info.repo_name }} has been cloned to the current working directory {{ repository_info.repo_directory }}. {% endif %} {% if repository_instructions -%} {{ repository_instructions }} {% endif %} {% if runtime_info -%} {% if runtime_info.available_hosts %} The user has access to the following hosts for accessing a web application, each of which has a corresponding port: {% for host, port in runtime_info.available_hosts.items() -%} * {{ host }} (port {{ port }}) {% endfor %} When starting a web server, use the corresponding ports. You should also set any options to allow iframes and CORS requests, and allow the server to be accessed from any host (e.g. 0.0.0.0). For example, if you are using vite.config.js, you should set server.host and server.allowedHosts to true {% endif %} {% if runtime_info.additional_agent_instructions %} {{ runtime_info.additional_agent_instructions }} {% endif %} {% if runtime_info.custom_secrets_descriptions %} You are have access to the following environment variables {% for secret_name, secret_description in runtime_info.custom_secrets_descriptions.items() %} * $**{{ secret_name }}**: {{ secret_description }} {% endfor %} {% endif %} {% if runtime_info.date %} Today's date is {{ runtime_info.date }} (UTC). {% endif %} {% if conversation_instructions and conversation_instructions.content -%} {{ conversation_instructions.content }} {% endif %} {% endif %}