Anthony

442 posts

Anthony banner
Anthony

Anthony

@anthohad

Building @elitra_xyz | Prev Product @Ledger | Self-custody, Sovereignty and Freedom | Writing on https://t.co/y2c4pcc0ov

เข้าร่วม Ocak 2023
420 กำลังติดตาม183 ผู้ติดตาม
ทวีตที่ปักหมุด
Anthony
Anthony@anthohad·
It turns out capable agents will be filling all the abundant blockspace we currently have. I looked at pre-2025 data and crypto was already prescient: ~86% of DEX volume on ETH came from MEV + other bots ~50% of Solana non-vote transactions were created by bots It’s ironic how much of the blocksize war era was framed around being ready for billions of humans transacting. We’ve spent years improving infrastructure and UX, only to probably swing back to optimizing at the API and CLI level. Turns out the real scaling question is how we handle billions of agents bidding, routing, arbitraging, coordinating, generating yield nonstop. Fun and exciting times ahead.
English
1
0
1
113
Anthony
Anthony@anthohad·
Best decision I've made recently is paying @AnthropicAI a few more dollars.
English
0
0
0
17
Anthony
Anthony@anthohad·
Some recent optimizations I made to Shadow 影 my Claw that greatly improved the Telegram experience: - Switched from GPT-5.3 Codex to 5.4 - Added a Brave API key for web search - Added a Voyager API key for embeddings - Created a group with topics to separate jobs - Added response streaming
English
0
0
0
65
Anthony
Anthony@anthohad·
Nouvelle technique de négociation qui d’ailleurs fonctionne très bien.
Anthony tweet media
Français
0
0
0
20
Anthony
Anthony@anthohad·
@Pol_Lanski Happened to me with two accounts I knew, it’s the Calendly without email and then the Microsoft teams link in TG that pushed me to think twice
English
0
0
1
298
Pol Lanski 🥩,🤖
Pol Lanski 🥩,🤖@Pol_Lanski·
I almost got phished by someone I've met IRL multiple times. Real chat history, met IRL, calendly... the whole thing looked LEGIT What saved me was muscle memory from seeing you all post scams constantly. Here's what happened:
English
5
3
38
6.3K
Anthony
Anthony@anthohad·
What caught my attention, besides this potentially saving me 2+ hours of OpenClaw setup every time, is that I thought this was @comet but turns out it isn't. Still surprised no one fully built vertical tabs with spaces like Arc...
Anthony tweet media
Perplexity@perplexity_ai

Announcing Personal Computer. Personal Computer is an always on, local merge with Perplexity Computer that works for you 24/7. It's personal, secure, and works across your files, apps, and sessions through a continuously running Mac mini.

English
0
0
0
42
Anthony
Anthony@anthohad·
15+ years using @googlemaps and saved lists still have no search bar.
Anthony tweet media
English
0
0
0
37
Anthony
Anthony@anthohad·
I’ve been pairing Claude Code with a command Garry Tan shared for reviewing the plan before touching code and it’s been working beautifully. My flow now: Plan mode → Review Plan → Implementation → Testing → Codex agent code review Command: /plan-review To add a custom command: Global (all projects) mkdir -p ~/.claude/commands nano ~/.claude/commands/plan-review.md Project-specific mkdir -p .claude/commands nano .claude/commands/plan-review.md Full command:
Anthony tweet media
Anthony@anthohad

Saw a couple posts from people trying to wire Claude Code to delegate code reviews to Codex, so I tested it too and got to a relatively clean, simple setup. ( No MCP or Claude.md updates) Here’s how I did it. I use Claude Code in terminal as the main interface, but I have a dedicated reviewer agent that always runs Codex for: - code review - security review - diff analysis The pattern is: Claude subagent -> Bash -> codex exec -> Codex output -> Claude summary No MCP needed or complicated routing. Setup 1) Install Codex CLI Install it, then test it. A quick test is: codex exec "say ok" If that works, you’re good. 2) Create a Claude Code subagent In Claude Code: /agents Create a Personal agent (so it persists across repos), then choose Manual configuration. I named mine: codex-runner 3) Configure the agent properly I gave it: Bash tool (mandatory) optional read-only tools I also used a system prompt so it always shells out to Codex via CLI, then adds a short summary. I set this subagent to Haiku because it’s mostly orchestration. The correct way is to invoke the subagent directly with: /agent:codex-runner review this repo for security issues or you can also just tell Claude to use codex-runner to review recent code changes. Another issue I hit was that the agent showed up in one terminal, but not another. It just needed a terminal/session refresh for Claude Code to pick up the newly created agent. There are 2 separate model layers here: Claude Code model (Haiku / Sonnet / Opus) Codex CLI model (whatever Codex is configured to use) So when the subagent runs codex exec, it uses the Codex model, not Claude’s model. In my case, Codex was set to: gpt-5.3-codex medium So the split is basically: Claude subagent model = orchestration Codex model = actual code review Codex CLI now does the heavy review work Claude summarizes findings and helps with next steps And honestly it’s good! Been really enjoying coding with AI lately and hope this helps someone trying to set up the same flow.

English
0
0
1
139
Anthony
Anthony@anthohad·
After way too many attempts, I finally got Shadow (影) my @openclaw bot running. Setup: -Hostinger VPS -OpenClaw in a Docker container -Telegram for messaging Excited to start testing this. I’ll share the setup + the issues I hit.
Anthony tweet media
English
1
0
1
338
Anthony รีทวีตแล้ว
Spicenet
Spicenet@spicenet·
Why did Elitra choose Spice Flow? Hear it straight from @anthohad, CEO & Co-Founder of @elitra_xyz 👇
English
236
218
446
8.8K
Anthony
Anthony@anthohad·
Saw a couple posts from people trying to wire Claude Code to delegate code reviews to Codex, so I tested it too and got to a relatively clean, simple setup. ( No MCP or Claude.md updates) Here’s how I did it. I use Claude Code in terminal as the main interface, but I have a dedicated reviewer agent that always runs Codex for: - code review - security review - diff analysis The pattern is: Claude subagent -> Bash -> codex exec -> Codex output -> Claude summary No MCP needed or complicated routing. Setup 1) Install Codex CLI Install it, then test it. A quick test is: codex exec "say ok" If that works, you’re good. 2) Create a Claude Code subagent In Claude Code: /agents Create a Personal agent (so it persists across repos), then choose Manual configuration. I named mine: codex-runner 3) Configure the agent properly I gave it: Bash tool (mandatory) optional read-only tools I also used a system prompt so it always shells out to Codex via CLI, then adds a short summary. I set this subagent to Haiku because it’s mostly orchestration. The correct way is to invoke the subagent directly with: /agent:codex-runner review this repo for security issues or you can also just tell Claude to use codex-runner to review recent code changes. Another issue I hit was that the agent showed up in one terminal, but not another. It just needed a terminal/session refresh for Claude Code to pick up the newly created agent. There are 2 separate model layers here: Claude Code model (Haiku / Sonnet / Opus) Codex CLI model (whatever Codex is configured to use) So when the subagent runs codex exec, it uses the Codex model, not Claude’s model. In my case, Codex was set to: gpt-5.3-codex medium So the split is basically: Claude subagent model = orchestration Codex model = actual code review Codex CLI now does the heavy review work Claude summarizes findings and helps with next steps And honestly it’s good! Been really enjoying coding with AI lately and hope this helps someone trying to set up the same flow.
Anthony tweet mediaAnthony tweet media
English
0
0
1
297
Anthony
Anthony@anthohad·
Just got forced to a dopamine reset I didn’t know I needed
Anthony tweet media
English
0
0
0
127
Anthony
Anthony@anthohad·
ok i caved
Anthony tweet media
English
0
0
0
30
Anthony รีทวีตแล้ว
Spicenet
Spicenet@spicenet·
New Devnet incoming! 🔥 We’re partnering with @elitra_xyz on @citrea_xyz to show how Spice Flow transforms cross-chain UX. Devnet goes live tomorrow - check out all the details in the thread ↓
English
257
219
696
20.3K
Anthony
Anthony@anthohad·
Feature requests for @OpenAI @sama Using it so much I had to write this wishlist: • Show date + time inside chats • Bring back date and maybe time in chat history • Allow collapsing/expanding projects to navigate chats easily • Copying messages shouldn’t include GPT meta-comments • Add context/memory hints so we don’t lose key info mid-convo and manage chats better • Branching UI should look like the screenshot below (yes, Nano Banana...)
Anthony tweet media
English
0
0
0
114
Anthony
Anthony@anthohad·
Vaults deserve product-level UX
Elitra@elitra_xyz

We're teaming up with @spicenet! Elitra is integrating Spice Flow to allow seamless cross-chain vault deposits - making onboarding faster and frictionless. Seamless deposits. Automated yield. No extra steps.⚡️🌍

English
0
0
1
150