Register and share your invite link to earn from video plays and referrals.

Search results for Timeout
Timeout community
One keyword maps to one global community path.
Create community
People
Not Found
Tweets including Timeout
Kas triple forces a timeout 👌
Davion steal + Herro dish + Bam bucket = TIMEOUT
Bam triple forces an early timeout 😤
Aaron Nesmith's triple forces a Magic timeout 🔥
Back-to-back Herro 3's forces a timeout 😤
Pascal Siakam drills his third triple to force a timeout 👏
Back to back threes for OKC from Wallace and McCain at the top of the key - excellent response coming out of that timeout
hermes agent is already the best on local models. but i'm working on more edges to make it fly even harder. before that, if your agent keeps crashing on local inference here's what to check: > max_turns: default is tuned for fast frontier models. bump from 30 to 50. slow local models need more breathing room per agentic loop. >gateway_timeout: raise from 600 to 1200. local inference at 12-17 tok/s will timeout silently and look like crashes. > context accumulation: auto-reset is off by default. your session grows until you /reset. long convos choke the agent. reset between major tasks. if you're running anything under 20 tok/s locally, these three settings are the difference between "broken" and "flying." tune your config before you blame the tool.
Show more
If you wanna switch to @Cloudflare Email Sending today, here's my prompt for you, as always I'm unaffiliated, not paid, not sponsored, but I like it, make sure you remove the space before the .com in the API url I added to avoid it becoming a link in this tweet: # Prompt: Migrate transactional email to Cloudflare Email Service Paste this into Claude Code (or Cursor, or any agent) running inside your project. --- I want to migrate this codebase's outbound email from its current provider (Postmark / SES / Resend / SendGrid / Mailgun / etc.) to Cloudflare Email Service (public beta, launched April 2026). Help me do this carefully. ## Context: what Cloudflare Email Service is A new transactional email API from Cloudflare. Endpoint: ``` POST .com/client/v4/accounts/{ACCOUNT_ID}/email/sending/send Authorization: Bearer {API_TOKEN} Content-Type: application/json ``` Request body: ```json { "to": "user@example.com", // string OR array of strings "from": "no-reply@yourdomain.com", // string OR {"address":"x@y","name":"Display"} "subject": "...", "html": "

...

", // optional "text": "...", // optional (one of html/text required) "cc": ["..."], // optional, array "bcc": ["..."], // optional, array "reply_to": "...", // optional, single string "headers": {"List-Unsubscribe": "<...>"} // optional, e.g. for newsletters } ``` Success response: HTTP 200 + `{"success":true,"result":{"delivered":[],"queued":[],"permanent_bounces":[]}}`. Failure: non-200 OR `success:false` OR non-empty `permanent_bounces`. Always check all three. Pricing: $5/mo Workers Paid plan + 3,000 emails free + $0.35 per 1k after. Roughly 5× cheaper than Postmark. No batch send endpoint — loop single sends. ## Steps you should follow ### 1. Verify prerequisites with me Before writing any code, ask me to confirm: - I have a Cloudflare Workers Paid plan ($5/mo) - I've onboarded my sender domain(s) in Cloudflare dashboard → Email → Email Sending → Onboard Domain (this auto-adds SPF/DKIM/DMARC + cf-bounce MX records) - I have an API token with `email_sending:write` scope (created at → Custom Token) - I have my Cloudflare account ID Don't proceed until you have these. ### 2. Recommend a domain reputation strategy Most apps should split senders across 2-3 subdomains so spam complaints on one don't drag down deliverability on others: - `mail.` or `members.` → transactional (login, receipts, password reset, in-app notifications) - `e.` → cold/recovery (abandoned cart, win-back campaigns) - `newsletter.` → opt-in newsletters with List-Unsubscribe headers Each subdomain needs to be onboarded separately in Cloudflare. Ask me which I want. ### 3. Audit existing email sends Use grep/search to find every place in this codebase that sends email. Look for: - The current provider's SDK class names, API URLs, env/config vars - Generic patterns like `mail()`, SMTP usage, `nodemailer`, etc. Group findings by email type/purpose (e.g. "magic-link login", "payment receipt", "weekly newsletter") rather than by file. Tell me what you found before changing anything. ### 4. Add a single helper function Don't sprinkle Cloudflare API calls across the codebase. Add one helper (provider-specific name like `sendEmailViaCloudflare()`) that: - Defaults `from` from a config var (don't hardcode) - Parses `"Name @domain>"` strings into the API's `{address, name}` object form - Accepts `cc`/`bcc` as either string or array - Accepts a `headers` dict (newsletters need `List-Unsubscribe` + `List-Unsubscribe-Post`) - Returns `bool` (true on success, false on any failure) - On failure, logs/alerts somewhere I can see (Telegram, Sentry, log file — match what the codebase already does) - Sets curl/fetch timeouts (5s connect, 15s total) so a stuck CF API can't hang the request - Treats `permanent_bounces: [...]` non-empty as a soft failure ### 5. Migrate one low-stakes email type first Don't migrate everything at once. Pick the lowest-stakes email type in the audit (something where landing in spam wouldn't lose me money or users — e.g. "internal admin alert", "profile photo rejection") and migrate just that one. Test it end-to-end. Confirm the email actually arrives. Only then propose the next migration. ### 6. Stop me from migrating login email yet If my codebase sends magic-link login or password-reset emails, do not migrate those to Cloudflare yet. Cloudflare Email Service is brand new (~1 month old at writing). Its IP/domain reputation is unproven. Login emails landing in spam = users locked out. Keep those on the current provider until at least 3 months of clean deliverability data on the lower-stakes types. Tell me this explicitly. ### 7. Suggest commit boundaries After each successful migration, suggest a focused git commit with a clear message. Don't bundle unrelated changes. ## Important caveats to surface to me - Beta product. Pricing isn't fully finalized. SLA undefined. Could change. - No batch endpoint. Mass sends (newsletters to 1000+ recipients) need a loop — at ~150ms/send that's ~2.5min per 1000. Fine for crons, bad for sync user-facing flows. - No bounce webhooks yet. Surface failures via the response body's `permanent_bounces` array. - Suppression list auto-managed. Hard bounces, repeated soft bounces, and spam complaints get blocked. Spam-complaint suppressions are hard to remove (anti-abuse). - No per-message logs/dashboard yet. Use the response's `messageId` for tracking if I need it. - List-Unsubscribe headers are passed through verbatim — Gmail's bulk-sender requirement still met, but only if I include them in `headers`. ## Your first action Before writing any code: do step 1 (ask for prerequisites) and step 3 (audit existing sends), then propose the migration order with a brief explanation of the reasoning. Wait for my confirmation before making changes.
Show more
0
52
1.2K
48
Forward to community
We built something that nobody else in this space has even attempted. Let me walk you through everything inside MPP32. The problem is simple. AI agents can call functions. But the second that function costs money, everything breaks. You need accounts at every provider. API keys for each one. Custom billing code. Budget tracking. Payment handlers. For every single service your agent touches. We killed all of that. MPP32 is a universal payment proxy for AI agents. One MCP server install. One line in your config. Your agent now has access to over 4,500 machine payable APIs across every category you can think of. Token intelligence. Market data. Web search. Image generation. DeFi analytics. Wallet scoring. Trading signals. On chain queries. All of it. Here is what makes this different from anything else out there. FIVE payment protocols. Not one. Five. x402 on Solana. x402 on Base. Tempo on Ethereum L2. ACP checkout sessions. AP2 with W3C Verifiable Credentials. AGTP with agent identity certificates. Your agent picks whichever one matches the keys you have configured. You write zero protocol code. The payment flow is dead simple. Agent requests a service. Gets a 402 challenge back. Our MCP server detects which protocol to use, signs the transaction LOCALLY on your machine, retries with proof, and returns the data. Your keys never leave your device. MPP32 never touches the money. Settlement goes directly from your wallet to the provider wallet. On chain. Verified. Auditable forever on Solscan or Basescan. We built an escrow pattern into x402 that nobody else has. The payment signature gets verified immediately but settlement only happens AFTER the upstream service returns a valid response. If the service fails or returns garbage, you do not get charged. Period. No other payment proxy does this. Now the Intelligence Oracle. This is our native Solana token analysis engine pulling from DexScreener, Jupiter, and CoinGecko simultaneously. For eight tenths of a penny per query you get an Alpha Score from 0 to 100, a Rug Risk rating on a 10 point scale, smart money signals including volume spikes and buy pressure and whale accumulation patterns, a 24 hour pump probability percentage, projected ROI ranges, whale activity levels with recent buy and sell counts, full market data including price changes across 1h 24h and 7d windows, volume, liquidity, market cap, FDV, pair age, DEX ID, and Twitter followers. All merged. All real time. All paid automatically through the protocol your agent already has configured. For M32 token holders we built three exclusive APIs that nobody else can access. Hold 1 million M32 and you unlock the Whale Tracker. Top 20 holder analysis. Concentration risk scoring. Buy and sell pressure tracking across 5 minute, 1 hour, 6 hour, and 24 hour windows. Volume spike detection. Whale accumulation versus distribution signals. Composite whale score from 0 to 100. Free for qualifying holders. Hold 2.5 million M32 and you unlock Token Comparison. Head to head intelligence on any two tokens. Alpha scores face off. Rug risk comparison. Volume and liquidity matchup. Pump probability side by side. Buy pressure comparison. Returns a winner verdict with full score breakdown. Also free. Hold 5 million M32 and you unlock the Portfolio Scanner. Point it at any Solana wallet. It automatically detects all SPL tokens, excludes stablecoins, runs full intelligence analysis on the top 10 holdings, aggregates portfolio risk, estimates total value in USD, identifies highest risk and best alpha tokens, scores diversification from 1 to 10, and breaks down holder concentration and buy sell pressure per token. Free. Discount tiers for everyone else. 250K M32 gets you 20% off every query. 1 million M32 gets you 40% off. Once we ship SIWS verification these activate automatically based on your on chain balance. No subscriptions. No accounts. Just hold the token. For API providers this is where it gets wild. Register your service at Fill out the form. Get approved instantly. Start receiving payments directly to your wallet within minutes. The fee we take? Zero percent. Providers keep 100% of revenue. Settlement is direct wallet to wallet. No batching. No minimum thresholds. No monthly payouts. x402 on Solana confirms in roughly 10 seconds. You see the money in your wallet before you finish reading this sentence. Register once and you automatically accept all five payment protocols. You do not need to implement Tempo. You do not need to implement ACP. You do not need to understand AP2 or AGTP. MPP32 handles all verification and settlement for every protocol. You just run your API. Every provider gets a full analytics dashboard. Real time query counts. Requests broken down by 24 hours, 7 days, and all time. Success rate. Average latency. Error counts. Estimated revenue. Per protocol usage metrics. Health monitoring with automatic endpoint checks. Three consecutive failures suspend your listing. Come back online and it auto recovers. Your listing gets published to our federated catalog of 4,500+ services. It gets added to our OpenAPI 3.1 spec that regenerates dynamically. It shows up in our A2A agent card at .well known/agent.json for agent to agent discovery. It appears in our MCP configuration endpoint. Every agent using MPP32 can now find and pay for your service without ever visiting your website. The catalog itself pulls from four sources. Native services registered through us. Curated free APIs like DexScreener and Jupiter and CoinGecko. The x402 Bazaar from Coinbase. And the official Model Context Protocol registry. All searchable. All filterable by category, protocol, source, network, chain, health status, price range, and verification status. Over 50 categories spanning AI inference, image generation, translation, embeddings, web search, news feeds, financial data, crypto analytics, DeFi, NFT intelligence, wallet scoring, OCR, document parsing, identity verification, fraud detection, code intelligence, security scanning, and dozens more. Budget controls are built into the infrastructure. Set a total session cap. Set an hourly velocity limit. Set an alert threshold. If your agent hits the limit a circuit breaker trips automatically and blocks all further spending. You get a clear error with the reason and a remedy. Reset manually when you are ready. Update budgets on the fly. If you raise the limit past current spend the breaker auto resets. Full spending analytics per service and per protocol available through the API. Security is not an afterthought. SSRF protection blocks requests to all private IP ranges, loopback addresses, link local addresses, IPv6 unique local, and cloud metadata endpoints. Applied on provider registration AND on every single proxy request because DNS can drift. All API keys hashed at rest with SHA256. Database leak does not expose live credentials. Management tokens for providers also hashed. Recovery OTPs hashed before storage with 15 minute expiry. Rate limiting on every admin endpoint. Zod schema validation on all inputs. Body size limits at 1MB. Path traversal prevention. URL validation. The server refuses to boot in production if signing secrets are missing or match known defaults. Idempotency is built in from day one. Every paid request gets an automatic idempotency key. LRU bounded cache at 5,000 entries with 10 minute TTL. Network retries cannot cause duplicate charges. Bounded memory so it does not bloat. The MCP server ships with eight tools. list_mpp32_services for browsing the catalog. call_mpp32_endpoint for calling any service with automatic payment. get_solana_token_intelligence for the oracle. get_m32_whale_tracker and compare_tokens_m32 and scan_portfolio_m32 for token gated premium features. manage_agent_budget for circuit breaker and spending controls. get_mpp32_diagnostics for troubleshooting. Works with Claude Desktop. Claude Code. Cursor. Windsurf. One npm install and you are live. We also ship a TypeScript SDK on npm. Import MPP32, pass your Solana key, call analyze() or listServices() or callService(). Automatic 402 handling. Automatic protocol detection. Automatic retry with exponential backoff. Configurable timeouts. Custom headers. Works in any Node.js environment. Agent sessions last 30 days. Full transaction logs showing every call with the service name, protocol used, price quoted, discount applied, price settled, settlement transaction signature, latency, and success status. Per protocol breakdowns with request counts, settled volume, and average latency for each of the five protocols independently. On chain verification means every single dollar that moves through this system is permanently recorded on the blockchain. Solana transactions on Solscan. Base transactions on Basescan. Immutable. Auditable by anyone. We are not asking you to trust us. We are asking you to verify. No subscriptions. No monthly fees. No account fees. No API key fees. No discovery fees. No settlement fees. No early termination fees. No minimums. You pay for what you use, the provider gets paid instantly, and the blockchain proves it happened. This is MPP32. The payment layer for autonomous AI agents. 4,500+ services. Five protocols. Zero platform fee. Instant on chain settlement. Token gated premium intelligence. Infrastructure grade budget controls. And we are just getting started. Ive put everything into this project and will continue to do so no matter what happens with the chart.. The full scale agent economy isn't even here yet. solana:6hKtz8FV7cAQMrbjcBZeTQAcrYep3WCM83164JpJpump
Show more