pp-infotbm
Every Bordeaux tram, bus, and ferry schedule offline in SQLite, plus real-time arrivals, ghost service detection Trigger phrases: `next tram Bordeaux`, `TBM arrivals`, `Bordeaux bus schedule`, `check disruptions TBM`, `plan transit Bordeaux`.
What this skill does
<!-- GENERATED FILE — DO NOT EDIT.
This file is a verbatim mirror of library/travel/infotbm/SKILL.md,
regenerated post-merge by tools/generate-skills/. Hand-edits here are
silently overwritten on the next regen. Edit the library/ source instead.
See the repository agent guide, section "Generated artifacts: registry.json, cli-skills/". -->
# TBM Bordeaux — Printing Press CLI
## Prerequisites: Install the CLI
This skill drives the `infotbm-pp-cli` binary. **You must verify the CLI is installed before invoking any command from this skill.** If it is missing, install it first:
1. Install via the Printing Press installer. It defaults binaries to `$HOME/.local/bin` on macOS/Linux and `%LOCALAPPDATA%\Programs\PrintingPress\bin` on Windows:
```bash
npx -y @mvanhorn/printing-press-library install infotbm --cli-only
```
2. Verify: `infotbm-pp-cli --version`
3. Ensure the reported install directory is on `$PATH` for the agent/runtime that will invoke this skill.
If the `npx` install fails (no Node, offline, etc.), fall back to a direct Go install (requires Go 1.26.3 or newer):
```bash
go install github.com/mvanhorn/printing-press-library/library/travel/infotbm/cmd/infotbm-pp-cli@latest
```
If `--version` reports "command not found" after install, the runtime cannot see the binary directory on `$PATH`. Do not proceed with skill commands until verification succeeds.
## When to Use This CLI
Use when an agent needs Bordeaux transit information — schedules, real-time arrivals, route planning, or disruption monitoring. Ideal for commute automation, travel planning, and transit-aware applications in the Bordeaux Métropole area.
## Anti-triggers
Do not use this CLI for:
- Journey planning outside Bordeaux Métropole
- Ticket purchase or fare payment
- Real-time traffic or driving directions
- Historical ridership or usage statistics
## Unique Capabilities
These capabilities aren't available in any other tool for this API.
### Schedule intelligence
- **`schedule diff`** — Surface trips that are scheduled in GTFS but absent from live real-time data — the buses that exist on paper but never showed up
_When an agent needs to know whether a scheduled service is actually running today, this is the only command that answers definitively_
```bash
infotbm-pp-cli schedule diff --stop BEQUI --line A --json
```
- **`lines stops`** — Print the ordered stop list for a line and direction, optionally with scheduled departure times
_When an agent needs the exact stop order for a tram line to plan boarding points or give directions, this is the canonical answer_
```bash
infotbm-pp-cli lines stops --line A --direction 0 --json
```
- **`schedule changes`** — Compare GTFS sync snapshots to detect added, removed, or modified routes on a line
_When an agent manages a commuter's routine, this proactively detects schedule changes that would break their timing_
```bash
infotbm-pp-cli schedule changes --line C --since 7d --json
```
- **`lines frequency`** — Compute average headways per hour from the SIRI estimated timetable
_When an agent evaluates transit reliability for scheduling, this shows the real-world gaps between departures by time of day_
```bash
infotbm-pp-cli lines frequency --line B --json
```
### Journey intelligence
- **`trips last-departure`** — Find the latest departure from a stop that still reaches your destination before a cutoff time
_When an agent plans evening activities, this answers 'what is the absolute latest I can leave and still get home by transit'_
```bash
infotbm-pp-cli trips last-departure --from Victoire --to Pessac --before 23:30 --json
```
- **`trips reroute`** — When your current connection is delayed, compute the best alternate onward path using live vehicle data
_When an agent detects a delay notification, this computes the optimal recovery without re-planning from scratch_
```bash
infotbm-pp-cli trips reroute --at "Gare Saint-Jean" --to Meriadeck --delay 8 --json
```
- **`trips plan`** — Plan multi-modal journeys across tram, bus, and ferry using local GTFS data with live disruption awareness
_When an agent needs transit directions in Bordeaux without relying on third-party map APIs, this plans the route locally_
```bash
infotbm-pp-cli trips plan --from Victoire --to "Gare Saint-Jean" --depart 08:15 --json
```
### Commute intelligence
- **`alerts impact`** — Filter all active disruptions to only those affecting your specific lines or stops
_When an agent monitors a commuter's daily lines, this filters noise to only relevant disruptions_
```bash
infotbm-pp-cli alerts impact --lines A,C,15 --json
```
## Command Reference
**agencies** —
- `infotbm-pp-cli agencies` — Transit agencies in the Bordeaux network
**alerts** —
- `infotbm-pp-cli alerts` — Active service disruption alerts
**fares** —
- `infotbm-pp-cli fares` — Fare structure including pricing and transfer rules
**feed-info** —
- `infotbm-pp-cli feed-info` — GTFS feed metadata including validity dates and timestamps
**kml** —
- `infotbm-pp-cli kml` — KML geographic data export with route geometry and stop locations
**realtime** —
- `infotbm-pp-cli realtime stop` — Real-time departure information at a specific stop
- `infotbm-pp-cli realtime vehicles` — Real-time vehicle positions across the network
**routes** —
- `infotbm-pp-cli routes` — All transit routes/lines in the TBM network
**server-info** —
- `infotbm-pp-cli server-info` — API version and build information
**siri** —
- `infotbm-pp-cli siri check-status` — SIRI service health check
- `infotbm-pp-cli siri estimated-timetable` — Estimated real-time timetable for a line
- `infotbm-pp-cli siri general-message` — General service messages and disruption information
- `infotbm-pp-cli siri lines-discovery` — Discover all lines with destinations and transport modes
- `infotbm-pp-cli siri stop-monitoring` — Real-time arrival/departure monitoring at a stop
- `infotbm-pp-cli siri stoppoints-discovery` — Discover all stop points with coordinates and serving lines
**stops** —
- `infotbm-pp-cli stops` — All transit stops in the TBM network
### Finding the right command
When you know what you want to do but not which command does it, ask the CLI directly:
```bash
infotbm-pp-cli which "<capability in your own words>"
```
`which` resolves a natural-language capability query to the best matching command from this CLI's curated feature index. Exit code `0` means at least one match; exit code `2` means no confident match — fall back to `--help` or use a narrower query.
## Hand-written Extensions
These command groups are hand-wired outside the generated endpoint surface. They are listed here for discoverability and are intentionally outside `## Command Reference` so the verify-skill unknown-command check does not treat them as generator-owned paths.
- `infotbm-pp-cli schedule` — Offline schedule lookups from local GTFS data (subcommands: `diff`, `changes`)
- `infotbm-pp-cli trips` — Journey planning commands (subcommands: `plan`, `last-departure`, `reroute`)
- `infotbm-pp-cli lines` — Line analysis commands (subcommands: `stops`, `frequency`)
## Recipes
### Morning commute check
```bash
infotbm-pp-cli realtime stop --stop-id bordeaux:StopPoint:BP:3648:LOC --json --select items.lineName,items.destinationName,items.expectedDepartureTime
```
Check next departures at your stop with only the fields that matter
### Weekend disruption audit
```bash
infotbm-pp-cli alerts impact --lines A,B,C --json
```
Filter alerts to only tram lines before a weekend outing
### Late night last train
```bash
infotbm-pp-cli trips last-departure --from Victoire --to Pessac --before 23:30 --json
```
Find the latest departure that still gets you home
### Detect ghost services
```bash
infotbm-pp-cli schedule diff --stop BEQUI --line A --agent
```
Surface scheduled trams that are not showing up in real-time data
### WeeklRelated in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.