Skip to content

Commit bbc04a1

Browse files
committed
consolidate sample data
1 parent 32e69f7 commit bbc04a1

19 files changed

+13
-13
lines changed

CLAUDE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This file provides context and guidelines for working with the bluebox-sdk codeb
2323

2424
- `bluebox-monitor --host 127.0.0.1 --port 9222 --output-dir ./cdp_captures --url about:blank --incognito` - Start browser monitoring
2525
- `bluebox-discover --task "your task description" --cdp-captures-dir ./cdp_captures --output-dir ./routine_discovery_output --llm-model gpt-5.1` - Discover routines from captures
26-
- `bluebox-execute --routine-path example_routines/amtrak_one_way_train_search_routine.json --parameters-path example_routines/amtrak_one_way_train_search_input.json` - Execute a routine
26+
- `bluebox-execute --routine-path example_data/example_routines/amtrak_one_way_train_search_routine.json --parameters-path example_data/example_routines/amtrak_one_way_train_search_input.json` - Execute a routine
2727

2828
### Chrome Debug Mode
2929

@@ -202,8 +202,8 @@ from bluebox.llms.infra.data_store import DiscoveryDataStore, LocalDiscoveryData
202202

203203
## Example Routines
204204

205-
- `example_routines/amtrak_one_way_train_search_routine.json` - Train search example
206-
- `example_routines/download_arxive_paper_routine.json` - Paper download example
207-
- `example_routines/massachusetts_corp_search_routine.json` - Corporate search example
205+
- `example_data/example_routines/amtrak_one_way_train_search_routine.json` - Train search example
206+
- `example_data/example_routines/download_arxive_paper_routine.json` - Paper download example
207+
- `example_data/example_routines/massachusetts_corp_search_routine.json` - Corporate search example
208208

209209
Use these as references when creating new routines or understanding the routine format.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -534,13 +534,13 @@ Run the example routine:
534534
# Using a parameters file:
535535

536536
bluebox-execute \
537-
--routine-path example_routines/amtrak_one_way_train_search_routine.json \
538-
--parameters-path example_routines/amtrak_one_way_train_search_input.json
537+
--routine-path example_data/example_routines/amtrak_one_way_train_search_routine.json \
538+
--parameters-path example_data/example_routines/amtrak_one_way_train_search_input.json
539539

540540
# Or pass parameters inline (JSON string):
541541

542542
bluebox-execute \
543-
--routine-path example_routines/amtrak_one_way_train_search_routine.json \
543+
--routine-path example_data/example_routines/amtrak_one_way_train_search_routine.json \
544544
--parameters-dict '{"origin": "BOS", "destination": "NYP", "departureDate": "2026-03-22"}'
545545
```
546546

bluebox/agent_docs/examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Example Routines
22

3-
Example routines are in [example_routines/](example_routines/). Each has a `*_routine.json` and `*_input.json` file.
3+
Example routines are in [example_data/example_routines/](example_data/example_routines/). Each has a `*_routine.json` and `*_input.json` file.
44

55
## Amtrak Train Search
66

bluebox/scripts/execute_routine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
bluebox-execute --routine-path <path> --parameters-dict '<json>' [--output <path>] [--download-dir <dir>] [--keep-open]
77
88
Examples:
9-
bluebox-execute --routine-path example_routines/amtrak_one_way_train_search_routine.json --parameters-path example_routines/amtrak_one_way_train_search_input.json
10-
bluebox-execute --routine-path example_routines/amtrak_one_way_train_search_routine.json --parameters-dict '{"origin": "boston", "destination": "new york", "departureDate": "2026-03-22"}' --output output.json --keep-open
9+
bluebox-execute --routine-path example_data/example_routines/amtrak_one_way_train_search_routine.json --parameters-path example_data/example_routines/amtrak_one_way_train_search_input.json
10+
bluebox-execute --routine-path example_data/example_routines/amtrak_one_way_train_search_routine.json --parameters-dict '{"origin": "boston", "destination": "new york", "departureDate": "2026-03-22"}' --output output.json --keep-open
1111
"""
1212

1313
import argparse
File renamed without changes.

cdp_samples/network_consolidated_transactions.json renamed to example_data/cdp_samples/network_consolidated_transactions.json

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

example_routines/amtrak_one_way_train_search_input.json renamed to example_data/example_routines/amtrak_one_way_train_search_input.json

File renamed without changes.

0 commit comments

Comments
 (0)