@vellumai/assistant 0.3.19 → 0.3.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ARCHITECTURE.md +151 -15
- package/Dockerfile +1 -0
- package/README.md +40 -4
- package/bun.lock +139 -2
- package/docs/architecture/integrations.md +7 -11
- package/package.json +2 -1
- package/src/__tests__/__snapshots__/ipc-snapshot.test.ts.snap +54 -0
- package/src/__tests__/approval-primitive.test.ts +540 -0
- package/src/__tests__/assistant-feature-flag-guard.test.ts +206 -0
- package/src/__tests__/assistant-feature-flag-guardrails.test.ts +198 -0
- package/src/__tests__/assistant-feature-flags-integration.test.ts +272 -0
- package/src/__tests__/call-controller.test.ts +439 -108
- package/src/__tests__/channel-invite-transport.test.ts +264 -0
- package/src/__tests__/cli.test.ts +42 -1
- package/src/__tests__/config-schema.test.ts +11 -127
- package/src/__tests__/config-watcher.test.ts +0 -8
- package/src/__tests__/daemon-lifecycle.test.ts +1 -0
- package/src/__tests__/daemon-server-session-init.test.ts +8 -2
- package/src/__tests__/diff.test.ts +22 -0
- package/src/__tests__/guardian-action-copy-generator.test.ts +5 -0
- package/src/__tests__/guardian-action-grant-mint-consume.test.ts +300 -32
- package/src/__tests__/guardian-action-late-reply.test.ts +546 -1
- package/src/__tests__/guardian-actions-endpoint.test.ts +774 -0
- package/src/__tests__/guardian-control-plane-policy.test.ts +36 -3
- package/src/__tests__/guardian-dispatch.test.ts +124 -0
- package/src/__tests__/guardian-grant-minting.test.ts +6 -17
- package/src/__tests__/inbound-invite-redemption.test.ts +367 -0
- package/src/__tests__/invite-redemption-service.test.ts +306 -0
- package/src/__tests__/ipc-snapshot.test.ts +57 -0
- package/src/__tests__/notification-decision-fallback.test.ts +88 -0
- package/src/__tests__/sandbox-diagnostics.test.ts +6 -249
- package/src/__tests__/sandbox-host-parity.test.ts +6 -13
- package/src/__tests__/scoped-approval-grants.test.ts +6 -6
- package/src/__tests__/scoped-grant-security-matrix.test.ts +5 -4
- package/src/__tests__/script-proxy-session-manager.test.ts +1 -19
- package/src/__tests__/session-load-history-repair.test.ts +169 -2
- package/src/__tests__/session-runtime-assembly.test.ts +33 -5
- package/src/__tests__/skill-feature-flags-integration.test.ts +171 -0
- package/src/__tests__/skill-feature-flags.test.ts +188 -0
- package/src/__tests__/skill-load-feature-flag.test.ts +141 -0
- package/src/__tests__/skill-mirror-parity.test.ts +1 -0
- package/src/__tests__/skill-projection-feature-flag.test.ts +363 -0
- package/src/__tests__/system-prompt.test.ts +1 -1
- package/src/__tests__/terminal-sandbox.test.ts +142 -9
- package/src/__tests__/terminal-tools.test.ts +2 -93
- package/src/__tests__/thread-seed-composer.test.ts +18 -0
- package/src/__tests__/tool-approval-handler.test.ts +350 -0
- package/src/__tests__/trusted-contact-lifecycle-notifications.test.ts +8 -10
- package/src/__tests__/voice-scoped-grant-consumer.test.ts +46 -84
- package/src/agent/loop.ts +36 -1
- package/src/approvals/approval-primitive.ts +381 -0
- package/src/approvals/guardian-decision-primitive.ts +191 -0
- package/src/calls/call-controller.ts +252 -209
- package/src/calls/call-domain.ts +44 -6
- package/src/calls/guardian-dispatch.ts +48 -0
- package/src/calls/types.ts +1 -1
- package/src/calls/voice-session-bridge.ts +46 -30
- package/src/cli/core-commands.ts +0 -4
- package/src/cli/mcp.ts +58 -0
- package/src/cli.ts +76 -34
- package/src/config/__tests__/feature-flag-registry-guard.test.ts +179 -0
- package/src/config/assistant-feature-flags.ts +162 -0
- package/src/config/bundled-skills/api-mapping/icon.svg +18 -0
- package/src/config/bundled-skills/messaging/TOOLS.json +30 -0
- package/src/config/bundled-skills/messaging/tools/slack-delete-message.ts +24 -0
- package/src/config/bundled-skills/notifications/SKILL.md +1 -1
- package/src/config/bundled-skills/reminder/SKILL.md +49 -2
- package/src/config/bundled-skills/time-based-actions/SKILL.md +49 -2
- package/src/config/bundled-skills/voice-setup/SKILL.md +122 -0
- package/src/config/core-schema.ts +1 -1
- package/src/config/env-registry.ts +10 -0
- package/src/config/feature-flag-registry.json +61 -0
- package/src/config/loader.ts +22 -1
- package/src/config/mcp-schema.ts +46 -0
- package/src/config/sandbox-schema.ts +0 -39
- package/src/config/schema.ts +18 -2
- package/src/config/skill-state.ts +34 -0
- package/src/config/skills-schema.ts +0 -1
- package/src/config/skills.ts +9 -0
- package/src/config/system-prompt.ts +110 -46
- package/src/config/templates/SOUL.md +1 -1
- package/src/config/types.ts +19 -1
- package/src/config/vellum-skills/catalog.json +1 -1
- package/src/config/vellum-skills/guardian-verify-setup/SKILL.md +1 -0
- package/src/config/vellum-skills/sms-setup/SKILL.md +1 -1
- package/src/config/vellum-skills/telegram-setup/SKILL.md +6 -5
- package/src/config/vellum-skills/trusted-contacts/SKILL.md +105 -3
- package/src/config/vellum-skills/twilio-setup/SKILL.md +1 -1
- package/src/daemon/config-watcher.ts +0 -1
- package/src/daemon/daemon-control.ts +1 -1
- package/src/daemon/guardian-invite-intent.ts +124 -0
- package/src/daemon/handlers/avatar.ts +68 -0
- package/src/daemon/handlers/browser.ts +2 -2
- package/src/daemon/handlers/guardian-actions.ts +120 -0
- package/src/daemon/handlers/index.ts +4 -0
- package/src/daemon/handlers/sessions.ts +19 -0
- package/src/daemon/handlers/shared.ts +3 -1
- package/src/daemon/install-cli-launchers.ts +58 -13
- package/src/daemon/ipc-contract/guardian-actions.ts +53 -0
- package/src/daemon/ipc-contract/sessions.ts +8 -2
- package/src/daemon/ipc-contract/settings.ts +25 -2
- package/src/daemon/ipc-contract-inventory.json +10 -0
- package/src/daemon/ipc-contract.ts +4 -0
- package/src/daemon/lifecycle.ts +14 -2
- package/src/daemon/main.ts +1 -0
- package/src/daemon/providers-setup.ts +26 -1
- package/src/daemon/server.ts +1 -0
- package/src/daemon/session-lifecycle.ts +52 -7
- package/src/daemon/session-memory.ts +45 -0
- package/src/daemon/session-process.ts +258 -432
- package/src/daemon/session-runtime-assembly.ts +12 -0
- package/src/daemon/session-skill-tools.ts +14 -1
- package/src/daemon/session-tool-setup.ts +5 -0
- package/src/daemon/session.ts +11 -0
- package/src/daemon/shutdown-handlers.ts +11 -0
- package/src/daemon/tool-side-effects.ts +35 -9
- package/src/index.ts +2 -2
- package/src/mcp/client.ts +152 -0
- package/src/mcp/manager.ts +139 -0
- package/src/memory/conversation-display-order-migration.ts +44 -0
- package/src/memory/conversation-queries.ts +2 -0
- package/src/memory/conversation-store.ts +91 -0
- package/src/memory/db-init.ts +5 -1
- package/src/memory/embedding-local.ts +13 -8
- package/src/memory/guardian-action-store.ts +125 -2
- package/src/memory/ingress-invite-store.ts +95 -1
- package/src/memory/migrations/035-guardian-action-supersession.ts +23 -0
- package/src/memory/migrations/index.ts +2 -1
- package/src/memory/schema.ts +5 -1
- package/src/memory/scoped-approval-grants.ts +14 -5
- package/src/messaging/providers/slack/client.ts +12 -0
- package/src/messaging/providers/slack/types.ts +5 -0
- package/src/notifications/decision-engine.ts +49 -12
- package/src/notifications/emit-signal.ts +7 -0
- package/src/notifications/signal.ts +7 -0
- package/src/notifications/thread-seed-composer.ts +2 -1
- package/src/runtime/channel-approval-types.ts +16 -6
- package/src/runtime/channel-approvals.ts +19 -15
- package/src/runtime/channel-invite-transport.ts +85 -0
- package/src/runtime/channel-invite-transports/telegram.ts +105 -0
- package/src/runtime/guardian-action-grant-minter.ts +92 -35
- package/src/runtime/guardian-action-message-composer.ts +30 -0
- package/src/runtime/guardian-decision-types.ts +91 -0
- package/src/runtime/http-server.ts +23 -1
- package/src/runtime/ingress-service.ts +22 -0
- package/src/runtime/invite-redemption-service.ts +181 -0
- package/src/runtime/invite-redemption-templates.ts +39 -0
- package/src/runtime/routes/call-routes.ts +2 -1
- package/src/runtime/routes/guardian-action-routes.ts +206 -0
- package/src/runtime/routes/guardian-approval-interception.ts +66 -190
- package/src/runtime/routes/identity-routes.ts +73 -0
- package/src/runtime/routes/inbound-message-handler.ts +486 -394
- package/src/runtime/routes/pairing-routes.ts +4 -0
- package/src/security/encrypted-store.ts +31 -17
- package/src/security/keychain.ts +176 -2
- package/src/security/secure-keys.ts +97 -0
- package/src/security/tool-approval-digest.ts +1 -1
- package/src/tools/browser/browser-execution.ts +2 -2
- package/src/tools/browser/browser-manager.ts +46 -32
- package/src/tools/browser/browser-screencast.ts +2 -2
- package/src/tools/calls/call-start.ts +1 -1
- package/src/tools/executor.ts +22 -17
- package/src/tools/mcp/mcp-tool-factory.ts +100 -0
- package/src/tools/network/script-proxy/session-manager.ts +1 -5
- package/src/tools/registry.ts +64 -1
- package/src/tools/skills/load.ts +22 -8
- package/src/tools/system/avatar-generator.ts +119 -0
- package/src/tools/system/navigate-settings.ts +65 -0
- package/src/tools/system/open-system-settings.ts +75 -0
- package/src/tools/system/voice-config.ts +121 -32
- package/src/tools/terminal/backends/native.ts +40 -19
- package/src/tools/terminal/backends/types.ts +3 -3
- package/src/tools/terminal/parser.ts +1 -1
- package/src/tools/terminal/sandbox-diagnostics.ts +6 -87
- package/src/tools/terminal/sandbox.ts +1 -12
- package/src/tools/terminal/shell.ts +3 -31
- package/src/tools/tool-approval-handler.ts +141 -3
- package/src/tools/tool-manifest.ts +6 -0
- package/src/tools/types.ts +10 -2
- package/src/util/diff.ts +36 -13
- package/Dockerfile.sandbox +0 -5
- package/src/__tests__/doordash-client.test.ts +0 -187
- package/src/__tests__/doordash-session.test.ts +0 -154
- package/src/__tests__/signup-e2e.test.ts +0 -354
- package/src/__tests__/terminal-sandbox-docker.test.ts +0 -1065
- package/src/__tests__/terminal-sandbox.integration.test.ts +0 -180
- package/src/cli/doordash.ts +0 -1057
- package/src/config/bundled-skills/doordash/SKILL.md +0 -163
- package/src/config/templates/LOOKS.md +0 -25
- package/src/doordash/cart-queries.ts +0 -787
- package/src/doordash/client.ts +0 -1016
- package/src/doordash/order-queries.ts +0 -85
- package/src/doordash/queries.ts +0 -13
- package/src/doordash/query-extractor.ts +0 -94
- package/src/doordash/search-queries.ts +0 -203
- package/src/doordash/session.ts +0 -84
- package/src/doordash/store-queries.ts +0 -246
- package/src/doordash/types.ts +0 -367
- package/src/tools/terminal/backends/docker.ts +0 -379
|
@@ -1,163 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: "DoorDash"
|
|
3
|
-
description: "Order food, groceries, and convenience items from DoorDash using the built-in CLI integration"
|
|
4
|
-
user-invocable: true
|
|
5
|
-
metadata: {"vellum": {"emoji": "\uD83C\uDF55"}}
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
You can order food from DoorDash for the user using the `doordash` CLI.
|
|
9
|
-
|
|
10
|
-
## CLI Setup
|
|
11
|
-
|
|
12
|
-
**IMPORTANT: Always use `host_bash` (not `bash`) for all `doordash` commands.** The DoorDash CLI needs host access for Chrome CDP, session cookies, and the CLI binary — none of which are available inside the sandbox.
|
|
13
|
-
|
|
14
|
-
`doordash` is a standalone CLI tool installed at `~/.vellum/bin/doordash`. It should already be on your PATH. If `doordash` is not found, prepend `PATH="$HOME/.vellum/bin:$PATH"` to the command. Do NOT search for the binary, inspect wrapper scripts, or try to discover how the CLI works. Just run the commands as documented below.
|
|
15
|
-
|
|
16
|
-
## Task Progress Widget
|
|
17
|
-
|
|
18
|
-
A task progress card is shown automatically when you run your first `doordash` command. Its surface ID is `doordash-progress`. As each step completes, call `ui_update` with surface ID `doordash-progress` to update step statuses. Update `data.templateData.steps` — set completed steps to `"status": "completed"` with a `"detail"` string, the current step to `"status": "in_progress"`, and future steps to `"status": "pending"`. Adapt the steps to the actual flow (e.g. skip "Search restaurants" if the user named a specific store).
|
|
19
|
-
|
|
20
|
-
## Typical Flow
|
|
21
|
-
|
|
22
|
-
When the user asks you to order food (e.g. "Order pizza from Andiamo's"):
|
|
23
|
-
|
|
24
|
-
1. **Check session** — run `doordash status --json`. If `loggedIn` is false or the session is expired, tell the user: "A Chrome window will open to the DoorDash login page. Please sign in there — I'll detect your login automatically and minimize the window." Then run `doordash refresh --json`. This starts a Ride Shotgun learn session that records your login and auto-stops once it detects you've signed in. The session is imported automatically. **This command blocks until login is complete — just wait for it.**
|
|
25
|
-
|
|
26
|
-
Keep the DoorDash Chrome window open in the background — it's needed for API requests.
|
|
27
|
-
|
|
28
|
-
2. **Search** — run `doordash search "<query>" --json` to find matching restaurants. Present the top results to the user with name, rating, and delivery info. If the user named a specific restaurant, pick the best match. If ambiguous, ask.
|
|
29
|
-
|
|
30
|
-
3. **Browse menu** — run `doordash menu <storeId> --json` to get the menu. Show the user the categories and items with prices. If the user already said what they want (e.g. "pepperoni pizza"), find the matching item(s). **For convenience/pharmacy stores** (CVS, Duane Reade, Walgreens etc.), the response will have `isRetail: true` and empty items — use `store-search` instead (see step 3b).
|
|
31
|
-
|
|
32
|
-
3b. **Search within a retail store** — for convenience/pharmacy stores, run `doordash store-search <storeId> "<query>" --json` to find specific products. This returns items with IDs, prices, and menuIds that can be added to cart directly.
|
|
33
|
-
|
|
34
|
-
4. **Get item details** (if needed) — run `doordash item <storeId> <itemId> --json` to see options/customizations. The response includes:
|
|
35
|
-
- `options`: each option group has `minSelections`/`maxSelections` indicating how many choices are required
|
|
36
|
-
- Each choice has `unitAmount` (price impact in cents), `defaultQuantity`, and possibly `nestedOptions` (sub-choices like milk type within a size selection)
|
|
37
|
-
- `specialInstructionsConfig`: whether special instructions are accepted, max length, and placeholder text
|
|
38
|
-
|
|
39
|
-
If the item has required options (like size or toppings), construct the `nestedOptions` JSON from the option/choice IDs and pass it via `--options`. Ask the user for preferences or pick sensible defaults.
|
|
40
|
-
|
|
41
|
-
5. **Add to cart** — run `doordash cart add --store-id <id> --menu-id <id> --item-id <id> --item-name "<name>" --unit-price <cents> [--options '<json>'] [--special-instructions "<text>"] --json`. For subsequent items at the same store, pass `--cart-id <id>` from the first add response. Use `--special-instructions` for requests like "extra hot", "no ice", etc. Use `--options` to pass customization choices (see Customization Options below).
|
|
42
|
-
|
|
43
|
-
6. **Review cart** — run `doordash cart view <cartId> --json` and show the user what's in their cart with prices. Ask if they want to add anything else or proceed.
|
|
44
|
-
|
|
45
|
-
7. **Checkout** — run `doordash checkout <cartId> --json` to get delivery options. Present them to the user.
|
|
46
|
-
|
|
47
|
-
8. **Payment methods** — run `doordash payment-methods --json` to see saved cards. Show the user which card will be used (the default one).
|
|
48
|
-
|
|
49
|
-
9. **Place order** — after the user explicitly confirms, run `doordash order place --cart-id <id> --store-id <id> --total <cents> [--tip <cents>] [--dropoff-option <id>] --json`. The command auto-selects the default payment method if `--payment-uuid` is not provided. The response contains `orderUuid` on success.
|
|
50
|
-
|
|
51
|
-
## Important Behavior
|
|
52
|
-
|
|
53
|
-
- **Always confirm before checkout.** Never place an order without explicit user approval.
|
|
54
|
-
- **Be proactive.** If the user says "order pizza from Andiamo's", don't ask clarifying questions upfront — search, find the store, show the menu, and suggest items. Only ask when you need a choice the user hasn't specified.
|
|
55
|
-
- **Handle expired sessions gracefully.** If any command returns `"error": "session_expired"`, run `doordash refresh --json` to re-capture the session.
|
|
56
|
-
- **Show prices.** Always show prices when presenting items or the cart summary.
|
|
57
|
-
- **Use `--json` flag** on all commands for reliable parsing.
|
|
58
|
-
- **Do NOT use the browser skill.** All DoorDash interaction goes through the CLI, not browser automation.
|
|
59
|
-
- **Rate limiting.** DoorDash rate-limits rapid sequential requests. When adding multiple items (e.g. a team order), wait 8–10 seconds between `cart add` calls. If you get a 403 error, wait 15–20 seconds and retry. For large orders (5+ items), consider running `doordash refresh --json` midway through if you hit repeated 403s.
|
|
60
|
-
- **Special instructions are unreliable.** Some merchants disable special instructions entirely. Always prefer `--options` for customizations (size, milk type, etc.). Only use `--special-instructions` for free-text requests that aren't covered by the item's option groups. If the merchant rejects special instructions, drop them and proceed without.
|
|
61
|
-
- **Customization fallback.** If `cart add` with `--options` fails, or if the item details show options that are hard to construct (deeply nested, unusual format), proactively offer to use `cart learn` so the user can customize the item visually in the browser. Don't silently drop customizations — tell the user what happened and offer alternatives.
|
|
62
|
-
- **Always-allow tip.** At the start of an ordering flow, suggest the user enable "always allow" for `doordash` commands: "Tip: You can type 'a' to always allow `doordash` commands for this session so you won't be prompted each time."
|
|
63
|
-
- **Error attribution.** When errors occur, assume it's more likely a bug in our query/parsing than a DoorDash API change. Suggest running `doordash record` to capture fresh queries before assuming the schema changed.
|
|
64
|
-
|
|
65
|
-
## Customization Options
|
|
66
|
-
|
|
67
|
-
Many items (especially coffee, boba, sandwiches) have required customization options like size, milk type, or toppings. Here's how to handle them:
|
|
68
|
-
|
|
69
|
-
### Constructing nestedOptions JSON
|
|
70
|
-
|
|
71
|
-
1. Run `doordash item <storeId> <itemId> --json` to get the item's option groups
|
|
72
|
-
2. Each option group has `id`, `name`, `required`, `minSelections`, `maxSelections`, and `choices`
|
|
73
|
-
3. Build a JSON array of selections matching the DoorDash format:
|
|
74
|
-
|
|
75
|
-
```json
|
|
76
|
-
[
|
|
77
|
-
{
|
|
78
|
-
"optionId": "<option-group-id>",
|
|
79
|
-
"optionChoiceId": "<choice-id>",
|
|
80
|
-
"quantity": 1,
|
|
81
|
-
"nestedOptions": []
|
|
82
|
-
}
|
|
83
|
-
]
|
|
84
|
-
```
|
|
85
|
-
|
|
86
|
-
For choices with nested sub-options (e.g., selecting "Oat Milk" under the "Milk" option within a size), add them to the `nestedOptions` array of the parent choice.
|
|
87
|
-
|
|
88
|
-
4. Pass the JSON string to `cart add --options '<json>'`
|
|
89
|
-
|
|
90
|
-
### Special Instructions
|
|
91
|
-
|
|
92
|
-
Use `--special-instructions` on `cart add` for free-text requests like "extra hot", "no ice", "light foam". The `item` command response includes `specialInstructionsConfig` with the max length and whether instructions are supported.
|
|
93
|
-
|
|
94
|
-
**Warning:** Some merchants disable special instructions entirely. If `specialInstructionsConfig.isEnabled` is false, or if the add-to-cart call returns an error about special requests, drop the instructions and retry without them. Always prefer `--options` for customizations — special instructions are a last resort for requests not covered by the item's option groups.
|
|
95
|
-
|
|
96
|
-
### Learning Customizations via Ride Shotgun
|
|
97
|
-
|
|
98
|
-
For complex items where constructing the JSON manually is difficult, use `cart learn`:
|
|
99
|
-
|
|
100
|
-
1. Run `doordash cart learn --json`
|
|
101
|
-
2. A Chrome window opens — navigate to the item, customize it visually, and click "Add to Cart"
|
|
102
|
-
3. The command auto-detects the `updateCartItem` operation and extracts the exact `nestedOptions` and `specialInstructions`
|
|
103
|
-
4. Use the extracted options directly with `cart add --options '<json>'`
|
|
104
|
-
|
|
105
|
-
You can also extract options from an existing recording with `doordash inspect <recordingId> --extract-options --json`.
|
|
106
|
-
|
|
107
|
-
### Coffee Order Example
|
|
108
|
-
|
|
109
|
-
**User**: "Order a large oat milk latte with an extra shot from Blue Bottle"
|
|
110
|
-
|
|
111
|
-
1. `doordash search "Blue Bottle" --json` -> finds store
|
|
112
|
-
2. `doordash menu <storeId> --json` -> finds "Latte" item
|
|
113
|
-
3. `doordash item <storeId> <latteItemId> --json` -> returns options:
|
|
114
|
-
- Size (required, min:1, max:1): Small (id:101), Medium (id:102), Large (id:103, +$1.00)
|
|
115
|
-
- Milk (required, min:1, max:1): Whole (id:201), Oat (id:202, +$0.70), Almond (id:203, +$0.70)
|
|
116
|
-
- Extras (optional, min:0, max:5): Extra Shot (id:301, +$0.90), Vanilla Syrup (id:302, +$0.60)
|
|
117
|
-
4. Construct options JSON and add to cart:
|
|
118
|
-
```
|
|
119
|
-
doordash cart add --store-id <id> --menu-id <id> --item-id <id> --item-name "Latte" --unit-price 550 --options '[{"optionId":"size-group-id","optionChoiceId":"103","quantity":1,"nestedOptions":[]},{"optionId":"milk-group-id","optionChoiceId":"202","quantity":1,"nestedOptions":[]},{"optionId":"extras-group-id","optionChoiceId":"301","quantity":1,"nestedOptions":[]}]' --special-instructions "Extra hot" --json
|
|
120
|
-
```
|
|
121
|
-
|
|
122
|
-
## Command Reference
|
|
123
|
-
|
|
124
|
-
```
|
|
125
|
-
doordash status --json # Check if logged in
|
|
126
|
-
doordash refresh --json # Capture fresh session via Ride Shotgun (auto-stops after login)
|
|
127
|
-
doordash login --recording <path> # Import session from a recording file manually
|
|
128
|
-
doordash logout --json # Clear session
|
|
129
|
-
doordash search "<query>" --json # Search restaurants
|
|
130
|
-
doordash menu <storeId> --json # Get store menu (auto-detects retail stores)
|
|
131
|
-
doordash store-search <storeId> "<query>" --json # Search items within a convenience/pharmacy store
|
|
132
|
-
doordash item <storeId> <itemId> --json # Get item details + options
|
|
133
|
-
doordash cart add --store-id <id> --menu-id <id> --item-id <id> --item-name "<name>" --unit-price <cents> [--quantity <n>] [--cart-id <id>] [--options '<json>'] [--special-instructions "<text>"] --json
|
|
134
|
-
doordash cart remove --cart-id <id> --item-id <orderItemId> --json
|
|
135
|
-
doordash cart view <cartId> --json
|
|
136
|
-
doordash cart list [--store-id <id>] --json
|
|
137
|
-
doordash cart learn --json # Learn customization options by recording browser interaction
|
|
138
|
-
doordash inspect <recordingId> --extract-options --json # Extract nestedOptions from a recording
|
|
139
|
-
doordash checkout <cartId> [--address-id <id>] --json
|
|
140
|
-
doordash payment-methods --json # List saved payment methods
|
|
141
|
-
doordash order place --cart-id <id> --store-id <id> --total <cents> [--tip <cents>] [--delivery-option <type>] [--dropoff-option <id>] [--payment-uuid <uuid>] --json
|
|
142
|
-
```
|
|
143
|
-
|
|
144
|
-
## Example Interaction
|
|
145
|
-
|
|
146
|
-
**User**: "Order a pepperoni pizza from Andiamo's"
|
|
147
|
-
|
|
148
|
-
1. `doordash status --json` -> logged in
|
|
149
|
-
2. `doordash search "Andiamo's" --json` -> finds store 22926474
|
|
150
|
-
3. `doordash menu 22926474 --json` -> finds "Pepperoni Pizza Pie" (item 2956709006, $28.00)
|
|
151
|
-
4. Tell user: "I found Pepperoni Pizza Pie at Andiamo's for $28.00. Adding it to your cart."
|
|
152
|
-
5. `doordash cart add --store-id 22926474 --menu-id 12847574 --item-id 2956709006 --item-name "Pepperoni Pizza Pie" --unit-price 2800 --json`
|
|
153
|
-
6. `doordash cart view <cartId> --json` -> show summary
|
|
154
|
-
7. "Your cart has 1x Pepperoni Pizza Pie ($28.00), total $28.00. Ready to check out?"
|
|
155
|
-
|
|
156
|
-
**User**: "I need Tylenol from CVS"
|
|
157
|
-
|
|
158
|
-
1. `doordash status --json` -> logged in
|
|
159
|
-
2. `doordash search "CVS" --json` -> finds store 1231787
|
|
160
|
-
3. `doordash menu 1231787 --json` -> isRetail: true, categories but no items
|
|
161
|
-
4. `doordash store-search 1231787 "tylenol" --json` -> finds results
|
|
162
|
-
5. Show top results: "Tylenol Extra Strength Gelcaps (24 ct) - $8.79, Tylenol Extra Strength Caplets (100 ct) - $13.49..."
|
|
163
|
-
6. User picks one -> add to cart with the item's `id`, `menuId`, and `unitAmount`
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
_ Lines starting with _ are comments — they won't appear in the system prompt
|
|
2
|
-
|
|
3
|
-
# LOOKS.md
|
|
4
|
-
|
|
5
|
-
## Purpose of this file
|
|
6
|
-
|
|
7
|
-
_ This file defines your avatar's appearance. Edit it to change how you look.
|
|
8
|
-
_ Available body/cheek colors: violet, emerald, rose, amber, indigo, slate, cyan, blue, green, red, orange, pink
|
|
9
|
-
_ Available hats: none, top_hat, crown, cap, beanie, wizard_hat, cowboy_hat
|
|
10
|
-
_ Available shirts: none, tshirt, suit, hoodie, tank_top, sweater
|
|
11
|
-
_ Available accessories: none, sunglasses, monocle, bowtie, necklace, scarf, cape
|
|
12
|
-
_ Available held items: none, sword, staff, shield, balloon
|
|
13
|
-
_ Available outfit colors: red, blue, yellow, purple, orange, pink, cyan, brown, black, white, gold, silver
|
|
14
|
-
|
|
15
|
-
## Appearance
|
|
16
|
-
|
|
17
|
-
- **Body:** violet
|
|
18
|
-
- **Cheeks:** rose
|
|
19
|
-
|
|
20
|
-
## Outfit
|
|
21
|
-
|
|
22
|
-
- **Hat:** none
|
|
23
|
-
- **Shirt:** none
|
|
24
|
-
- **Accessory:** none
|
|
25
|
-
- **Held Item:** none
|