ZEE

1.2K posts

ZEE banner
ZEE

ZEE

@CodeWithZeee

building all the things.

Katılım Mayıs 2023
212 Takip Edilen128 Takipçiler
ZEE
ZEE@CodeWithZeee·
@threepointone exactly, I’ve recently been letting my remote orchestration agents tunnel in and open us Claude sessions on my machine so I can be in the loop with what’s happening. It’s the reverse of what everyone’s doing
English
0
0
1
128
sunil pai
sunil pai@threepointone·
if you want an agent to be able to work locally/remote, switching whenever however, you probably want the harness to be running remote (and tunnelling _into_ your laptop) etc.
English
17
0
129
12.7K
Thomas Trimoreau
Thomas Trimoreau@TTrimoreau·
Be honest… How many unfinished SaaS projects do you have?
English
109
1
73
6.3K
Thomas Trimoreau
Thomas Trimoreau@TTrimoreau·
Founders, Is AI helping you think better or think less ?
English
58
0
36
4K
fks
fks@FredKSchott·
some thoughts on eve, especially re: @flueai and the larger agent builder space. The biggest surprise: eve is vercel-only. You can't deploy it outside of vercel and it requires a full bet on their stack -- vercel runtime, vercel sandbox, vercel workflows, vercel cron jobs, etc. etc. short-term limitation, or the start of a larger "managed agents" play by vercel? eve is filesystemmaxxing. this feels specifically optimized for agents, who love the codebase consistency and have no trouble keeping track of 10+ magic file and folder conventions as the project scales to 100s of files. (^^ this is probably the most interesting design decision here. I have a ton of respect for anyone taking a big swing like this if this is intentionally optimized for agents. makes total sense.) eve has a custom-built harness. probably not interesting to most people. I'm curious if they will leverage the new ai sdk HarnessAgent concept to swap different harnesses. otherwise there's a lot of great stuff here. lots of good features. The dev-server-as-TUI is great. you can tell how much attention and care went into this. excited to see our two projects continue to explore the same space from different directions!
Vercel@vercel

Introducing eve, an agent framework. 𝚊𝚐𝚎𝚗𝚝/ 𝚊𝚐𝚎𝚗𝚝.𝚝𝚜 𝚒𝚗𝚜𝚝𝚛𝚞𝚌𝚝𝚒𝚘𝚗𝚜.𝚖𝚍 𝚝𝚘𝚘𝚕𝚜/ 𝚜𝚔𝚒𝚕𝚕𝚜/ 𝚜𝚊𝚗𝚍𝚋𝚘𝚡/ 𝚜𝚌𝚑𝚎𝚍𝚞𝚕𝚎𝚜/ Like Next.js, for agents. vercel.com/blog/introduci…

English
33
16
480
87K
ZEE
ZEE@CodeWithZeee·
@gregisenberg sometimes I avoid working till everyone’s left the office so I can go full stream of consciousness down the mic to Claude
English
0
0
1
93
GREG ISENBERG
GREG ISENBERG@gregisenberg·
Once you get used to using voice-to-text AI to get your computer to do things, typing on a keyboard feels kinda painful.
English
219
27
770
68.5K
ZEE
ZEE@CodeWithZeee·
@MrBeast you never watched any vampire movies bro? those mother fuckers depressed
English
0
0
0
55
MrBeast
MrBeast@MrBeast·
Would you rather stop aging for 100 years or receive 1 billion dollars right now?
English
4.5K
451
7.2K
2.2M
Clifton Sellers
Clifton Sellers@CliftonSellers·
Need opinions: Is passive income a myth?
English
112
1
64
49.7K
ThePrimeagen
ThePrimeagen@ThePrimeagen·
What the fuck is a graph?
English
382
65
2.8K
330.6K
ZEE
ZEE@CodeWithZeee·
not sure there’s ever been a more appropriate time for this meme - the best “AI engineering” cross over
ZEE tweet media
English
1
0
1
58
ZEE
ZEE@CodeWithZeee·
@KentonVarda I can’t work out of this is a good or a bad thing, I hate the sound of it but if it worked…
English
1
0
4
1.5K
Kenton Varda
Kenton Varda@KentonVarda·
I asked Sol to debug a very specific bug with a provided reproduction. It spawned a tree of dozens of sub-agents, 6-8 layers deep, asking itself to do things like write a report on all RPC interfaces in the project. It's like watching a government agency at work.
English
36
5
440
35.3K
Onur Solmaz
Onur Solmaz@onusoz·
acpx v0.4 ships Agentic Workflows, or as I like to call them "Agentic Graphs" It let's you create node-based workflows on top of ACP (Agent Client Protocol), to drive any coding agent (Codex, Claude Code, pi) through deterministic steps This let's you automate routine, mechanical legwork like triaging incoming PRs, bugs in error reporting, and so on... For example, OpenClaw receives 300~500 new PRs per day. A lot of them are low quality, but they still relate to real issues, so you have to address them somehow You need to: - extract the intent - cluster them based on intent - figure out if the proposed changes are legit, or whether they are slop local solutions, like trying to catch flies instead of drying out the swamp - if the PR is too low quality or the intent is not clear, close them - run AI review on them them and address any issues that come up - refactor them if the changes are half-baked - resolve conflicts - and so on... So that when the PR is presented to the attention of the maintainer, all the routine legwork is done and the only remaining thing is the decision to (a) merge, (b) give feedback to the PR author, or (c) take over the PR work yourself I wanted to build this feature since a couple months now, since Codex got so good. OpenAI models are now good at judging implementation quality, so I found myself repeating the same steps I wrote above over and over I also tried putting all this in a single prompt. But I believe there are workflows that should not be a single prompt, but a sequence of prompts in the same session That is because like humans, LLMs are prone to PRIMING. I claim that putting all steps in the same prompt at the beginning of the context will generally give suboptimal results, compared to revealing the intention to the model step by step Creating such a workflow also gives more OBSERVABILITY into the each step that an agent is supposed to take. Agent generates JSON at the end of each step, and that structured data can be used to monitor thousands of agents running at the same time in an easier way, on a dashboard Similar features have been introduced in e.g. n8n, langflow. But AFAIK they are not integrating ACP like the way I do I wanted to have a fresh approach, and to build an API that I can develop freely the way I want, so I created a new workflow API inside acpx The video is from the workflow run viewer, but that is not where you build the workflow. You build it by using the acpx flow typescript API. See examples/pr-triage in acpx repo Before building that, I started from a Markdown file with a Mermaid chart of the flow I had in mind. The Markdown file acts as a spec for the flow, and I have built the workflow through trial and error. I call this process "workflow tuning" I started working on acpx repo PRs one by one, tuning the flow, slowly scaling to more PRs. Finally, when I felt confident, I ran it in parallel over all external open PRs in the acpx repo. I believe it already saved me hours this week My next goal, if well received, is to set this up on a cloud agent so that it can process the 300~500 PRs the OpenClaw repo receives every day, in real time, as they come in I believe this will save all open source maintainers around the world countless hours and make it much easier to herd and absorb external contributions from everyone!
English
83
105
1.2K
148.7K
ZEE
ZEE@CodeWithZeee·
@dexhorthy say “working backwards” in the mirror 3 times and Jeff will appear and grant you 1 wish
English
0
0
5
1.1K
dex
dex@dexhorthy·
today's fun ai coding tricking - when doing the high-level part of your plan, do an amazon-style "working backwards" approach - write the customer-facing blog post about the feature BEFORE you start building this can surface so many edge cases and help you dial in on prioritizing the important parts, and just is much nicer to read (plus you can post it after you ship 🙂)
English
48
26
766
68K
Kelvin Celso
Kelvin Celso@kelvinbuildss·
Name an app that literally nobody hates
English
135
2
59
9.8K
ZEE
ZEE@CodeWithZeee·
going to launch 7 start ups in a week, not sure which week but it’s going to be a week that’s for sure
English
0
0
1
42