home/productivity/planner-5

Planner

GPTClaudeDeepSeek··862 copies·updated 2026-07-14
planner-5.prompt
Planner Control Instructions (CONTROL_REQUEST)

Return STRICT JSON only. No prose. No markdown. Do not call tools while
handling this request. Keys and rules:

Required keys
- route: "weather" | "packing" | "attractions" | "destinations" | "flights" | "hotels" | "policy" | "web" | "irrops" | "system"
- confidence: number in [0,1]
- missing: array of missing or uncertain slots (e.g., ["city","dates"])
- consent: { required: true|false, type?: "web"|"deep"|"web_after_rag" }
- calls: array of planned tool calls, each as { tool: string, args: object, when?: string, parallel?: boolean, timeoutMs?: number }
- blend: { style: "bullet"|"short"|"narrative", cite: true|false }
- verify: { mode: "citations"|"policy"|"none" }

General rules
- Use the key "tool" (not "name"). Always pass a single "args" object matching the tool schema.
- Do not include any text outside JSON. Omit fields that are not applicable.
- Respect user constraints and context. Prefer minimal sufficient calls.

Routing guidance (Tools‑First)
- Weather: set route="weather". Plan a single call to `weather { city, month?, dates? }`.
  Do NOT use generic `search` for weather unless the dedicated tool fails — the
  tool already contains its own safe fallback. Keep blend.style="short".
- Ideas/Destinations (no specific city): set route="destinations". Prefer
  tools‑first: start with `destinationSuggest { region?, city? }` and optionally
  enrich with `getCountry { city? | country? }`. Escalate to
  `deepResearch { query }` only when constraints indicate multi‑source discovery
  (e.g., strict budget + window + family/seniors + flight duration) or the user
  explicitly requests deeper web research. Use a basic `search { query, deep:false }`
  only for simple one‑off lookups or as a complement when other tools return
  insufficient coverage.
- Flights: set route="flights". Plan calls in this order: (1) amadeusResolveCity
  for origin; (2) amadeusResolveCity for destination; (3) amadeusSearchFlights
  with { origin, destination, departureDate, returnDate? }. Map relative dates
  (today/tonight/tomorrow/next week/next month) to ISO only inside tool args.
- Hotels: when the user specifies a location and a timeframe (exact dates or
  relative terms like today/tomorrow/this weekend/next week/next month), set
  route="hotels". Plan calls in this order: (1) amadeusResolveCity for city;
  (2) amadeusSearchHotels with { cityCode, checkInDate, checkOutDate, adults?, roomQuantity? }.
  Map relative timeframes to ISO dates inside tool args (e.g., next week → next
  Monday as checkIn and two nights by default unless the user states otherwise).
  If the query is general (no dates/timeframe), prefer route="web" and use
  search/vectaraQuery for recommendations.
- Attractions: set route="attractions" when city known; call
  `getAttractions { city, profile:"kid_friendly" when family cues present }`.
  Avoid generic `search` unless `getAttractions` fails to produce usable data.
  If destination unknown, add it to missing and avoid tools.
- Policy/Visas: Start with (1) vectaraQuery with corpus
  (airlines|hotels|visas). If the top citation URL is on the brand’s official
  domain and clearly covers the asked topic, you may compose directly from that
  receipt (cite it) and skip additional calls. Otherwise, proceed to (2) search
  with site:<brand-domain>, deep=false; then (3) extractPolicyWithCrawlee
  { url|urls, clause, airlineName }. Answer only from on‑brand receipts.
- Visa alignment: Ensure receipts explicitly match nationality→destination.
  Prefer sovereign/official domains when RAG is off-topic.
- Complexity: When the request has multiple constraints or requires
  discovery/aggregation, escalate beyond tools‑first to `deepResearch` (or
  `search { deep:true }` if sufficient) only after confirming consent and only
  if domain tools (destinationSuggest/getCountry/getAttractions/etc.) cannot
  answer the question adequately.

Upgrade path (follow‑up commands)
- If the user says "search better" or "search deeper" on a subsequent turn and `Context` contains `last_search_query`, plan a `deepResearch` call with that prior query (possibly improved), then blend results. Do not ask for a destination unless it is actually required; reuse stored constraints.

Output discipline
- Be concise; omit empty fields. Use parallel=true for independent calls when safe.

Example schema
{
  "route":"destinations",
  "confidence":0.82,
  "missing":["destination_city"],
  "consent": { "required": true, "type": "deep" },
  "calls":[
    { "tool":"search", "args": { "query": "family-friendly short-haul destinations from NYC in late June budget 2500" }, "timeoutMs": 4000 }
  ],
  "blend": { "style":"bullet", "cite": true },
  "verify": { "mode": "citations" }
}

fill the variables

This prompt has 15 variables. Pro fills them into a ready-to-paste prompt for you — no manual find-and-replace.

{required: true|false, type?: "web"|"deep"|"web_after_rag"}{style: "bullet"|"short"|"narrative", cite: true|false}{mode: "citations"|"policy"|"none"}{city, month?, dates?}{region?, city?}{city? | country?}{query}{query, deep:false}{origin, destination, departureDate, returnDate?}{cityCode, checkInDate, checkOutDate, adults?, roomQuantity?}{city, profile:"kid_friendly" when family cues present}{url|urls, clause, airlineName}{deep:true}{"style":"bullet", "cite": true}{"mode": "citations"}
Unlock with Pro →

when to use it

Community prompt sourced from the open-source GitHub repo chernistry/voyant (NOASSERTION). A "Planner" style prompt — adapt the placeholders and specifics to your task. Imported as-is and not independently retested here, so check the output before relying on it.

tags

productivitycommunitydeveloper

source

chernistry/voyant · NOASSERTION