AI Agent Hub
Back to plugins
🧰

dsh-taxi-fare

Web Tools Updated 2026.08.20

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-taxi-fare

Paste the following prompt into your AI chat to install this plugin:

Run dsh plugin install uckkk/dsh-taxi-fare in your DeepSeek Harness to install this taxi fare estimator plugin; full source is available at https://github.com/uckkk/dsh-taxi-fare .

About this plugin

Estimating a taxi fare for a given route, vehicle class, or time window is a recurring need in travel planning, ride-hailing dashboards, and local business logic. Most existing solutions lean on external APIs or pull in heavy SDKs, which makes them impractical for offline or air-gapped scenarios. dsh-taxi-fare is a deliberately lean answer: a pure-Node, zero-network fare estimator that runs entirely on the host machine.

The plugin registers a single taxi_fare tool. You supply structured parameters such as distance, vehicle class, and time of day; it computes a precise fare locally and returns an itemized breakdown covering base fare, per-kilometer charge, time-based surcharge, and any applicable extras. No HTTP calls are made, so the output is deterministic and reproducible even when the machine is fully offline.

If you are building offline DeepSeek Harness workflows, preparing a no-internet demo, or embedding a deterministic cost-projection step into a larger application, this plugin is small, fast, and dependency-free. The MIT license keeps downstream reuse and modification friction-free.

Use Cases

  • Calculate precise taxi fares from structured parameters in a fully offline environment
  • Embed a deterministic cost-estimation step into a larger application workflow
  • Quickly compare fares across vehicle classes and time slots without any network access

Best For

  • Developers who need offline, deterministic fare computation
  • DeepSeek Harness users preparing no-internet demo scenarios
  • Engineers integrating cost projection into business or operational systems