Setup Agent Playground
Deprecated (demo-data seeding): As of the dynamic-tools change, the three
demo tools (TOOL_CATCHMENT, TOOL_DELIVERY_OPTIMIZATION,
TOOL_NETWORK_OPTIMIZATION) source live, region-scoped Overture data
(FLEET_INTELLIGENCE.CATCHMENT.POIS / REGIONAL_ADDRESSES, BOUNDARY-constrained
and routable-filtered) and read the active region from
FLEET_INTELLIGENCE.CATCHMENT.CONFIG. They no longer read the static DEMO_*
tables. A fresh install-fleet-apps already uploads agent-demos.json (step
4.6), so this skill is needed only to re-upload agent-demos.json standalone.
Retired (universal generation): The static DEMO_* tables are fully
superseded and should NOT be seeded for new deployments. Their content is now
produced, region-scoped and config-driven, by Data Studio's universal-generation
engines (Overture + free Marketplace) and read via V_*_CURRENT projection views:
| Legacy static table |
Universal-generation replacement |
DEMO_KEY_SITES, DEMO_DELIVERY_STOPS, DEMO_DEPOT |
SYNTHETIC_DATASETS.UNIFIED.V_DIM_ANCHORS_CURRENT (ANCHOR_TYPE = KEY_SITE / DELIVERY_STOP / DEPOT) |
DEMO_AREA_DEMOGRAPHICS |
SYNTHETIC_DATASETS.UNIFIED.V_DIM_AREA_DEMOGRAPHICS_CURRENT (SafeGraph Open Census) |
DEMO_DEMAND_CATALOG |
SYNTHETIC_DATASETS.UNIFIED.V_DIM_DEMAND_CATALOG_CURRENT (neutral category tiers) |
references/deploy-demo-data.sql is retained only for legacy standalone demos
that still hard-reference DEMO_*; it is not part of the install-fleet-apps
path and is slated for deletion once no demo references it.
Deploys the industry-agnostic SF catchment/delivery/network demo data and uploads the
Agent Playground scenario config (agent-demos.json) to the ORS stage. After
this skill runs, the Routing Agent's three demo tools (TOOL_NETWORK_OPTIMIZATION,
TOOL_DELIVERY_OPTIMIZATION, TOOL_CATCHMENT) become functional and the
control-app Agent Playground page shows all three scenarios (Catchment &
Delivery, Site & Catchment, Fleet Logistics).
Important: The demo stored procedures themselves are created by
$routing-agent. This skill only seeds the data tables and uploads the
scenario config - it does NOT create procedures.
Configuration
| Parameter |
Default |
Description |
DATABASE |
FLEET_INTELLIGENCE |
Demo database (created by install-fleet-apps) |
DATA_SCHEMA |
ROUTE_OPTIMIZATION |
Schema that holds the demo data tables |
WAREHOUSE |
ROUTING_ANALYTICS |
Warehouse for setup statements |
STAGE |
OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE |
Stage receiving agent-demos.json |
REGION |
SanFrancisco |
Region the demo data is geocoded for |
VEHICLE_TYPE |
ebike |
Default vehicle for the 6 fleet CONFIG tables |
Prerequisites
$install-fleet-apps deployed (creates OPENROUTESERVICE_APP,
ORS_SPCS_STAGE, the 6 fleet CONFIG tables, and the SanFrancisco region).
$routing-agent deployed (creates the 3 demo stored procedures along with
the multi-region tools).
- A role that can read/write the schemas listed in Required Privileges.
Required Privileges
| Privilege |
Scope |
Reason |
| USAGE |
DATABASE FLEET_INTELLIGENCE |
Access the fleet schemas |
| USAGE |
SCHEMA FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION |
Create the demo data tables |
| CREATE TABLE |
SCHEMA FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION |
Create the demo data tables |
| INSERT, UPDATE |
All 6 CONFIG tables |
Update vehicle/region defaults |
| CREATE VIEW |
SCHEMA FLEET_INTELLIGENCE.FLEET_INTELLIGENCE_EBIKE |
Create DELIVERIES view |
| USAGE |
DATABASE OPENROUTESERVICE_APP |
Upload agent-demos.json to stage |
| WRITE |
STAGE OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE |
PUT agent-demos.json |
| CREATE FILE FORMAT |
SCHEMA OPENROUTESERVICE_APP.CORE |
Create JSON_FORMAT (idempotent) |
Note: ACCOUNTADMIN is not required. Use a role with the privileges
above, or escalate to ACCOUNTADMIN only for the duration of this skill.
Error Logging
Follow the Error Logging convention in AGENTS.md. Log file prefix:
setup-agent-playground.
Step 1 - Run the SQL pipeline
Execute every statement in references/deploy-demo-data.sql end-to-end. The
file:
- Sets the session
query_tag.
- Updates the 6 fleet CONFIG tables to
VEHICLE_TYPE = 'ebike' and
REGION = 'SanFrancisco'.
- Creates the
FLEET_INTELLIGENCE_EBIKE.DELIVERIES view.
- Creates and seeds the demo data tables:
FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DELIVERY_STOPS (30 rows)
FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_AREA_DEMOGRAPHICS (55 rows)
FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DEMAND_CATALOG (25 rows)
FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_KEY_SITES (6 rows)
FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DEPOT (1 row - depot + region)
- Creates
OPENROUTESERVICE_APP.CORE.JSON_FORMAT (idempotent).
Every CREATE statement carries the standard oss-setup-agent-playground
COMMENT tracking tag.
Step 2 - Upload agent-demos.json to the ORS stage
The Agent Playground's /api/agent/config endpoint reads scenarios from
@OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE/config/agent-demos.json. Upload it
from the repo:
snow stage copy \
.cortex/skills/install-fleet-apps/openrouteservice_app/config/agent-demos.json \
@OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE/config/ \
--overwrite \
-c <connection>
Or from a Workspace, via SQL:
COPY FILES INTO @OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE/config/
FROM 'snow://workspace/USER$.PUBLIC."<workspace-name>"/versions/live/.cortex/skills/install-fleet-apps/openrouteservice_app/config/'
FILES=('agent-demos.json');
Verification
After both steps complete, all of the following must be true:
- 6 CONFIG tables updated:
SELECT 'FLEET_INTELLIGENCE_EBIKE' AS NAME, REGION, VEHICLE_TYPE FROM FLEET_INTELLIGENCE.FLEET_INTELLIGENCE_EBIKE.CONFIG
UNION ALL SELECT 'FLEET_INTELLIGENCE_CAR', REGION, VEHICLE_TYPE FROM FLEET_INTELLIGENCE.FLEET_INTELLIGENCE_CAR.CONFIG
UNION ALL SELECT 'DWELL_ANALYSIS', REGION, VEHICLE_TYPE FROM FLEET_INTELLIGENCE.DWELL_ANALYSIS.CONFIG
UNION ALL SELECT 'ROUTE_DEVIATION', REGION, VEHICLE_TYPE FROM FLEET_INTELLIGENCE.ROUTE_DEVIATION.CONFIG
UNION ALL SELECT 'ROUTE_OPTIMIZATION', REGION, VEHICLE_TYPE FROM FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.CONFIG
UNION ALL SELECT 'CATCHMENT', REGION, VEHICLE_TYPE FROM FLEET_INTELLIGENCE.CATCHMENT.CONFIG;
- Demo data tables with correct row counts:
SELECT 'DEMO_DELIVERY_STOPS' AS TBL, COUNT(*) AS CNT FROM FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DELIVERY_STOPS
UNION ALL SELECT 'DEMO_AREA_DEMOGRAPHICS', COUNT(*) FROM FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_AREA_DEMOGRAPHICS
UNION ALL SELECT 'DEMO_DEMAND_CATALOG', COUNT(*) FROM FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DEMAND_CATALOG
UNION ALL SELECT 'DEMO_KEY_SITES', COUNT(*) FROM FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_KEY_SITES
UNION ALL SELECT 'DEMO_DEPOT', COUNT(*) FROM FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DEPOT;
Expected counts: 30, 55, 25, 6, 1.
agent-demos.json is on the stage:LIST @OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE/config/;
- The endpoint returns the scenarios:
SELECT $1 AS CONFIG FROM @OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE/config/agent-demos.json (FILE_FORMAT => 'OPENROUTESERVICE_APP.CORE.JSON_FORMAT');
Troubleshooting
| Issue |
Fix |
| "Object does not exist" for CONFIG tables |
$install-fleet-apps has not completed - run it first. |
| "Unknown function TOOL_CATCHMENT" |
$routing-agent not run - run it before this skill. |
| Scenarios not appearing in the Agent Playground |
agent-demos.json not on stage - re-run Step 2. |
| "OPTIMIZATION returned no results" |
VROOM service suspended - CALL OPENROUTESERVICE_APP.CORE.RESUME_ALL_SERVICES(). |
| "Isochrone geometry is null" |
ORS not ready - SELECT SYSTEM$GET_SERVICE_STATUS('OPENROUTESERVICE_APP.CORE.ORS_SERVICE_SANFRANCISCO'); |
Cleanup
ALTER SESSION SET query_tag = '{"origin":"sf_sit-is-fleet","name":"oss-setup-agent-playground","version":{"major":1,"minor":0},"attributes":{"is_quickstart":1,"source":"sql"}}';
DROP TABLE IF EXISTS FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DELIVERY_STOPS;
DROP TABLE IF EXISTS FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_AREA_DEMOGRAPHICS;
DROP TABLE IF EXISTS FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DEMAND_CATALOG;
DROP TABLE IF EXISTS FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_KEY_SITES;
DROP TABLE IF EXISTS FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DEPOT;
DROP VIEW IF EXISTS FLEET_INTELLIGENCE.FLEET_INTELLIGENCE_EBIKE.DELIVERIES;
REMOVE @OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE/config/agent-demos.json;
The 6 fleet CONFIG rows are reset by re-running the relevant deploy skill or
by manually UPDATE-ing them back to the user's preferred defaults.
1---2name: setup-agent-playground3description: Deploy industry-agnostic SF demo data tables required by the Agent Playground's catchment/delivery/network scenarios (TOOL_NETWORK_OPTIMIZATION, TOOL_DELIVERY_OPTIMIZATION, TOOL_CATCHMENT). Run AFTER $install-fleet-apps and $routing-agent. Creates DEMO_DELIVERY_STOPS (30), DEMO_AREA_DEMOGRAPHICS (55), DEMO_DEMAND_CATALOG (25), DEMO_KEY_SITES (6), DEMO_DEPOT (1), the FOOD_DELIVERY DELIVERIES view, updates the 6 fleet CONFIG tables to SanFrancisco/ebike defaults, and uploads agent-demos.json to the ORS stage. Triggers: setup agent playground, install agent demo data, deploy demo data, missing demo data, agent playground scenarios missing, agent-demos.json missing, catchment demo, delivery optimization demo, network optimization demo, DEMO_DELIVERY_STOPS, DEMO_AREA_DEMOGRAPHICS, DEMO_DEMAND_CATALOG, DEMO_KEY_SITES.4---56# Setup Agent Playground78> **Deprecated (demo-data seeding):** As of the dynamic-tools change, the three9> demo tools (`TOOL_CATCHMENT`, `TOOL_DELIVERY_OPTIMIZATION`,10> `TOOL_NETWORK_OPTIMIZATION`) source **live, region-scoped Overture data**11> (`FLEET_INTELLIGENCE.CATCHMENT.POIS` / `REGIONAL_ADDRESSES`, BOUNDARY-constrained12> and routable-filtered) and read the active region from13> `FLEET_INTELLIGENCE.CATCHMENT.CONFIG`. They **no longer read the static `DEMO_*`14> tables**. A fresh `install-fleet-apps` already uploads `agent-demos.json` (step15> 4.6), so this skill is needed **only** to re-upload `agent-demos.json` standalone.16>17> **Retired (universal generation):** The static `DEMO_*` tables are fully18> superseded and should NOT be seeded for new deployments. Their content is now19> produced, region-scoped and config-driven, by Data Studio's universal-generation20> engines (Overture + free Marketplace) and read via `V_*_CURRENT` projection views:21>22> | Legacy static table | Universal-generation replacement |23> |---|---|24> | `DEMO_KEY_SITES`, `DEMO_DELIVERY_STOPS`, `DEMO_DEPOT` | `SYNTHETIC_DATASETS.UNIFIED.V_DIM_ANCHORS_CURRENT` (`ANCHOR_TYPE` = KEY_SITE / DELIVERY_STOP / DEPOT) |25> | `DEMO_AREA_DEMOGRAPHICS` | `SYNTHETIC_DATASETS.UNIFIED.V_DIM_AREA_DEMOGRAPHICS_CURRENT` (SafeGraph Open Census) |26> | `DEMO_DEMAND_CATALOG` | `SYNTHETIC_DATASETS.UNIFIED.V_DIM_DEMAND_CATALOG_CURRENT` (neutral category tiers) |27>28> `references/deploy-demo-data.sql` is retained only for legacy standalone demos29> that still hard-reference `DEMO_*`; it is not part of the `install-fleet-apps`30> path and is slated for deletion once no demo references it.3132Deploys the industry-agnostic SF catchment/delivery/network demo data and uploads the33Agent Playground scenario config (`agent-demos.json`) to the ORS stage. After34this skill runs, the Routing Agent's three demo tools (`TOOL_NETWORK_OPTIMIZATION`,35`TOOL_DELIVERY_OPTIMIZATION`, `TOOL_CATCHMENT`) become functional and the36control-app Agent Playground page shows all three scenarios (Catchment &37Delivery, Site & Catchment, Fleet Logistics).3839> **Important:** The demo stored procedures themselves are created by40> `$routing-agent`. This skill only seeds the data tables and uploads the41> scenario config - it does NOT create procedures.4243## Configuration4445| Parameter | Default | Description |46|-----------|---------|-------------|47| `DATABASE` | `FLEET_INTELLIGENCE` | Demo database (created by install-fleet-apps) |48| `DATA_SCHEMA` | `ROUTE_OPTIMIZATION` | Schema that holds the demo data tables |49| `WAREHOUSE` | `ROUTING_ANALYTICS` | Warehouse for setup statements |50| `STAGE` | `OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE` | Stage receiving `agent-demos.json` |51| `REGION` | `SanFrancisco` | Region the demo data is geocoded for |52| `VEHICLE_TYPE` | `ebike` | Default vehicle for the 6 fleet CONFIG tables |5354## Prerequisites5556- `$install-fleet-apps` deployed (creates `OPENROUTESERVICE_APP`,57 `ORS_SPCS_STAGE`, the 6 fleet CONFIG tables, and the SanFrancisco region).58- `$routing-agent` deployed (creates the 3 demo stored procedures along with59 the multi-region tools).60- A role that can read/write the schemas listed in **Required Privileges**.6162## Required Privileges6364| Privilege | Scope | Reason |65|-----------|-------|--------|66| USAGE | DATABASE FLEET_INTELLIGENCE | Access the fleet schemas |67| USAGE | SCHEMA FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION | Create the demo data tables |68| CREATE TABLE | SCHEMA FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION | Create the demo data tables |69| INSERT, UPDATE | All 6 CONFIG tables | Update vehicle/region defaults |70| CREATE VIEW | SCHEMA FLEET_INTELLIGENCE.FLEET_INTELLIGENCE_EBIKE | Create DELIVERIES view |71| USAGE | DATABASE OPENROUTESERVICE_APP | Upload agent-demos.json to stage |72| WRITE | STAGE OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE | PUT agent-demos.json |73| CREATE FILE FORMAT | SCHEMA OPENROUTESERVICE_APP.CORE | Create JSON_FORMAT (idempotent) |7475> **Note:** ACCOUNTADMIN is **not** required. Use a role with the privileges76> above, or escalate to ACCOUNTADMIN only for the duration of this skill.7778## Error Logging7980> Follow the Error Logging convention in AGENTS.md. Log file prefix:81> `setup-agent-playground`.8283## Step 1 - Run the SQL pipeline8485Execute every statement in `references/deploy-demo-data.sql` end-to-end. The86file:87881. Sets the session `query_tag`.892. Updates the 6 fleet CONFIG tables to `VEHICLE_TYPE = 'ebike'` and90 `REGION = 'SanFrancisco'`.913. Creates the `FLEET_INTELLIGENCE_EBIKE.DELIVERIES` view.924. Creates and seeds the demo data tables:93 - `FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DELIVERY_STOPS` (30 rows)94 - `FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_AREA_DEMOGRAPHICS` (55 rows)95 - `FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DEMAND_CATALOG` (25 rows)96 - `FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_KEY_SITES` (6 rows)97 - `FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DEPOT` (1 row - depot + region)985. Creates `OPENROUTESERVICE_APP.CORE.JSON_FORMAT` (idempotent).99100Every CREATE statement carries the standard `oss-setup-agent-playground`101COMMENT tracking tag.102103## Step 2 - Upload `agent-demos.json` to the ORS stage104105The Agent Playground's `/api/agent/config` endpoint reads scenarios from106`@OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE/config/agent-demos.json`. Upload it107from the repo:108109```bash110snow stage copy \111 .cortex/skills/install-fleet-apps/openrouteservice_app/config/agent-demos.json \112 @OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE/config/ \113 --overwrite \114 -c <connection>115```116117Or from a Workspace, via SQL:118119```sql120COPY FILES INTO @OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE/config/121FROM 'snow://workspace/USER$.PUBLIC."<workspace-name>"/versions/live/.cortex/skills/install-fleet-apps/openrouteservice_app/config/'122FILES=('agent-demos.json');123```124125## Verification126127After both steps complete, all of the following must be true:1281291. 6 CONFIG tables updated:130 ```sql131 SELECT 'FLEET_INTELLIGENCE_EBIKE' AS NAME, REGION, VEHICLE_TYPE FROM FLEET_INTELLIGENCE.FLEET_INTELLIGENCE_EBIKE.CONFIG132 UNION ALL SELECT 'FLEET_INTELLIGENCE_CAR', REGION, VEHICLE_TYPE FROM FLEET_INTELLIGENCE.FLEET_INTELLIGENCE_CAR.CONFIG133 UNION ALL SELECT 'DWELL_ANALYSIS', REGION, VEHICLE_TYPE FROM FLEET_INTELLIGENCE.DWELL_ANALYSIS.CONFIG134 UNION ALL SELECT 'ROUTE_DEVIATION', REGION, VEHICLE_TYPE FROM FLEET_INTELLIGENCE.ROUTE_DEVIATION.CONFIG135 UNION ALL SELECT 'ROUTE_OPTIMIZATION', REGION, VEHICLE_TYPE FROM FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.CONFIG136 UNION ALL SELECT 'CATCHMENT', REGION, VEHICLE_TYPE FROM FLEET_INTELLIGENCE.CATCHMENT.CONFIG;137 ```1382. Demo data tables with correct row counts:139 ```sql140 SELECT 'DEMO_DELIVERY_STOPS' AS TBL, COUNT(*) AS CNT FROM FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DELIVERY_STOPS141 UNION ALL SELECT 'DEMO_AREA_DEMOGRAPHICS', COUNT(*) FROM FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_AREA_DEMOGRAPHICS142 UNION ALL SELECT 'DEMO_DEMAND_CATALOG', COUNT(*) FROM FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DEMAND_CATALOG143 UNION ALL SELECT 'DEMO_KEY_SITES', COUNT(*) FROM FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_KEY_SITES144 UNION ALL SELECT 'DEMO_DEPOT', COUNT(*) FROM FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DEPOT;145 ```146 Expected counts: 30, 55, 25, 6, 1.1473. `agent-demos.json` is on the stage:148 ```sql149 LIST @OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE/config/;150 ```1514. The endpoint returns the scenarios:152 ```sql153 SELECT $1 AS CONFIG FROM @OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE/config/agent-demos.json (FILE_FORMAT => 'OPENROUTESERVICE_APP.CORE.JSON_FORMAT');154 ```155156## Troubleshooting157158| Issue | Fix |159|-------|-----|160| "Object does not exist" for CONFIG tables | `$install-fleet-apps` has not completed - run it first. |161| "Unknown function TOOL_CATCHMENT" | `$routing-agent` not run - run it before this skill. |162| Scenarios not appearing in the Agent Playground | `agent-demos.json` not on stage - re-run Step 2. |163| "OPTIMIZATION returned no results" | VROOM service suspended - `CALL OPENROUTESERVICE_APP.CORE.RESUME_ALL_SERVICES()`. |164| "Isochrone geometry is null" | ORS not ready - `SELECT SYSTEM$GET_SERVICE_STATUS('OPENROUTESERVICE_APP.CORE.ORS_SERVICE_SANFRANCISCO');` |165166## Cleanup167168```sql169ALTER SESSION SET query_tag = '{"origin":"sf_sit-is-fleet","name":"oss-setup-agent-playground","version":{"major":1,"minor":0},"attributes":{"is_quickstart":1,"source":"sql"}}';170171DROP TABLE IF EXISTS FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DELIVERY_STOPS;172DROP TABLE IF EXISTS FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_AREA_DEMOGRAPHICS;173DROP TABLE IF EXISTS FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DEMAND_CATALOG;174DROP TABLE IF EXISTS FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_KEY_SITES;175DROP TABLE IF EXISTS FLEET_INTELLIGENCE.ROUTE_OPTIMIZATION.DEMO_DEPOT;176DROP VIEW IF EXISTS FLEET_INTELLIGENCE.FLEET_INTELLIGENCE_EBIKE.DELIVERIES;177REMOVE @OPENROUTESERVICE_APP.CORE.ORS_SPCS_STAGE/config/agent-demos.json;178```179180> The 6 fleet CONFIG rows are reset by re-running the relevant deploy skill or181> by manually `UPDATE`-ing them back to the user's preferred defaults.