George Gakeez

570 posts

George Gakeez banner
George Gakeez

George Gakeez

@gakeez1

Exploring SaaS features as AI agents with little to no UI. Independent dev building Abyss Glow, an AI speaking practice agent.

Katılım Mayıs 2022
274 Takip Edilen76 Takipçiler
George Gakeez
George Gakeez@gakeez1·
Build in public Day 10 I spent less time building the product today because I came across Every’s AI Product Management Guide, and it really resonated with me. One idea from the article stood out: AI-era product and engineering work should not just be about making agents write code faster. It should connect strategy, ideation, planning, review, and learning, so that every unit of work makes the next one easier. I strongly agree with that, and I want to apply it to my own project. But Every’s open-source compound engineering plugin feels a bit heavy for a solo developer. It has many skills, agents, reviewers, product pulse workflows, PR workflows, and organizational context search. Very powerful for teams, but if a solo dev adopts the whole thing at once, it can easily become process overhead. So today I spent some time making a trimmed-down version for my own workflow. For now, I’m calling it: Compound Lite The core idea is simple: Keep the compounding engineering loop, but remove the team-level complexity. The current structure looks roughly like this: STRATEGY.md docs/ideation/ docs/brainstorms/ docs/plans/ docs/solutions/ docs/evals/ docs/pulse-reports/ And the workflow is: Strategy → Ideate → Brainstorm → Plan → Work → Verify → Compound There are three things I care about most: 1. Ideas should be challenged first - I don’t want an AI to hear a feature idea and immediately start coding. First, it should ask whether the feature is worth building, whether there is a smaller version, and what long-term maintenance cost it might create. 2. Building and verification should be separated - The builder handles implementation. The verifier independently reviews the diff, tests, and risks. I don’t fully trust one agent to build everything and then justify its own work from start to finish. 3. Lessons should compound - Bugs I fixed, agent behavior changes, testing strategies, tool permissions, failure recovery patterns, and other hard-won lessons should go into docs/solutions/ or docs/evals/, instead of being scattered across chat history. This is not fully autonomous. For now, it only goes up to Level 1 semi-automation: it can read local files, write code, add tests, run verification, and create local docs. But it does not automatically commit, push, open PRs, deploy, or touch external systems. I’m going to use it myself for a few days and see whether it actually makes development more stable and clearer, instead of just adding more process. If it feels useful, I’ll open it up in a couple of days for other solo developers building with AI coding agents. Also highly recommend reading Every’s article. The ideas around agent-native product management are really worth thinking about: every.to/guides/ai-prod…
English
0
0
1
29
小互
小互@xiaohu·
Claude code有时候会替你做错误假设,不主动要求澄清;该反驳时不反驳...敷衍迎合奉承你... 有人把 Karpathy 对 AI 写代码常见问题的观察,整理成一份可以直接放进项目里的 CLAUDE.md 文档。 压缩成了四条原则,让AI能更认真干活: 第一,Think Before Coding 写代码前先想清楚。不要默默假设,不要隐藏不确定性。遇到歧义时要明确列出可能解释,必要时要求澄清。如果存在更简单的方案,也要主动指出。 第二,Simplicity First 优先用最少代码解决问题。不要加用户没要求的功能,不要为了单次使用写抽象,不要为了所谓“灵活性”搞配置化。项目里有一句判断标准很实用:如果 200 行可以变成 50 行,那就重写。 第三,Surgical Changes 只改必须改的地方。不要顺手优化旁边的代码、注释和格式,不要重构没坏的东西。每一行 diff 都应该能对应到用户的需求。这个原则对 Claude Code 特别关键,因为很多 AI 编程工具最烦人的地方就是“修一个 bug,顺手改半个项目”。 第四,Goal-Driven Execution 不要只给命令,要给可验证目标。比如“修复 bug”应该变成“先写一个能复现 bug 的测试,再让测试通过”;“加 validation”应该变成“先写非法输入测试,再实现逻辑”。项目强调,LLM 很擅长围绕明确目标反复循环,关键是你要给它成功标准。 这套规则真正解决的,是现在 AI 编程里最让人头疼的问题: 模型太积极 太自信 太爱脑补 太喜欢顺手“优化” 最后修一个 bug,diff 改得像重写项目 它的价值不是让 AI 更会写代码,而是让 AI 更像一个靠谱工程师。 对 Claude Code 用户来说,这类 CLAUDE.md 其实就是项目宪法。 把它放进项目根目录,相当于先给 AI 立规矩: 少废话 少脑补 少加戏 先澄清 再动手 最后验证 现在 AI 写代码已经不缺执行力,真正稀缺的是工程纪律。
小互 tweet media
中文
18
4
45
5K
Jason Zhu
Jason Zhu@GoSailGlobal·
你花钱买 AI 课的时候 Google 在偷偷把同一套东西免费给出来 推上 @RoyAmal 整理了一份 Google 官方 10 门免费 AI 课的清单 路径都在 skills.google(Google Cloud Skills Boost)上 注册 Google 账号就能学 一分钱不要 我把 10 门课整理一版中文索引 链接在每条下面 1)Generative AI Basics(生成式 AI 基础) 入门第一课 讲清楚什么是 GenAI 应用场景有哪些 cloudskillsboost.google/course_templat… 2)Large Language Models(大语言模型) ChatGPT 这类系统底层怎么跑的 cloudskillsboost.google/course_templat… 3)Responsible AI(负责任的 AI) 伦理 偏见 真实世界的风险 这门很多人会跳 但它其实是 AI 工程师的护城河 cloudskillsboost.google/course_templat… 4)Full Learning Path(完整学习路径) Google 官方排好顺序的 AI 学习路线 step by step 不知道从哪开始就直接走这条 cloudskillsboost.google/paths/118 5)Encoder-Decoder(编码器-解码器) 模型怎么把输入转成输出 翻译类模型的底层 cloudskillsboost.google/course_templat… 6)Attention Mechanism(注意力机制) Transformer 的核心 现代所有大模型的根基 这门是分水岭 听懂了再往后走 轻松一倍 cloudskillsboost.google/course_templat… 7)Image Generation(图像生成) 文生图系统的原理 Stable Diffusion / Midjourney 那一套底层 cloudskillsboost.google/course_templat… 8)GenAI Tools(生成式 AI 工具) 动手实验课 不光看视频 cloudskillsboost.google/course_templat… 9)AI Applications(AI 应用) 真实业务场景里 AI 怎么落地 cloudskillsboost.google/course_templat… 10)Vertex AI Google Cloud 上怎么把 AI 模型 build + deploy 上线 这门最实用 直接对应工作技能 cloudskillsboost.google/course_templat… 总入口 skills.google 所有课程集合 也可以从第 4 条「Full Learning Path」那门进去 一条线学下来 @RoyAmal 在原推里的那句金句 大多数人的学习是 watch → forget(看完就忘) 这套路径给你的是 learn → practice → build(学 → 练 → 造东西) 如果你真打算认真学 AI,这是你免费版的 roadmap
Jason Zhu tweet media
Amal Roy@RoyAmal

Most people are paying for AI courses… while Google is quietly giving them for free. Here’s a complete breakdown 👇 Generative AI Basics → fundamentals + use cases skills.google/course_templat… Large Language Models → how ChatGPT-type systems work skills.google/course_templat… Responsible AI → ethics, bias, real-world risks skills.google/course_templat… Full Learning Path → structured roadmap (step-by-step) skills.google/paths/118/cour… Encoder-Decoder → how models convert input → output skills.google/course_templat… Attention Mechanism → core of transformers skills.google/course_templat… Image Generation → text → image systems skills.google/course_templat… GenAI Tools → hands-on experimentation skills.google/course_templat… AI Applications → real-world use cases + business skills.google/course_templat… Vertex AI → build + deploy AI products skills.google/course_templat… Most people learn like this: watch → forget This gives you: learn → practice → build If you’re serious about AI— this is your free roadmap.

中文
6
19
122
125.9K
ziyu
ziyu@ziyu1224·
@Jack1158713 @gakeez1 worker上个月显示60万请求,一亿一千的CPU,正常嘛😂,5美金套餐额度完全不行了
中文
1
0
0
47
Meepo
Meepo@Jack1158713·
4月份的三个新站UV都破 3千了,HuntifyAI 的这个今天居然来了 1千用户!得推荐一下 Fox 的新模板 tanstarter.dev 了,限时优惠码 MEEPO,我4月份的七个站都是用的这套框架,all in cloudflare ,真的爱不释手❤️ 我从 3 月份开始从 Next.js 都搬迁到 Cloudflare 的,刚好 Tanstarter 推出,我就直接梭哈了,all in cloudflare 对我来说是最舒服的上站组合了😄 R2 存储 + D1 数据库 + KV 缓存 + 域名托管 + Worker + Queue 负责队列 + Workflows 长任务 + Email + Turnstile 安全盾,用过的都说好,免费额度就能托管很多项目了 从 Mkdirs 到 Mksaas,再到 Tanstarter ,一路过来每个模板我都买了,Discord 社群满分,文档满分,代码质量也非常高,关键能长期稳定更新
Meepo tweet media
中文
8
7
59
7.8K
张小珺 Xiaojun Zhang
张小珺 Xiaojun Zhang@zhang_benita·
The era of large language models has moved past its first act—the chat era—and entered its second act: the age of Agents. On this show, we’ll dive deep into the core technical principles of Agents and break down the technology for you, offering a clear overview of its evolutionary trajectory. If you enjoy our show, we’d appreciate it if you could leave us a 5‑star rating on Apple Podcasts🤓🤓 podcasts.apple.com/cn/podcast/%E5…
English
14
44
232
44.6K
肖师傅
肖师傅@xiaojietongxue·
👺Codex真是量大管饱外加性能强大,现在我从CC转投Codex了,外加AI studio,我今晚花了5个小时手搓一个超强的工具。
肖师傅 tweet media
中文
51
1
30
13.8K
George Gakeez
George Gakeez@gakeez1·
This is Day 9 of my Build in Public journey. Over the past two days, I focused on one feature: a gentle English-learning report after a spoken conversation. Last time, I added a separate post-session STT layer. Gemini Live still handles the real-time conversation. Google STT re-listens to what the user said after the session ends. The feedback report only gives suggestions for that session. It does not write to long-term memory. This time, I worked on the next step: don’t trust a transcript directly. First decide whether it is usable. Voice products have a very real problem: Real-time transcripts can be messy. High-quality STT can be too clean. The real-time transcript may reveal where the user paused, broke words apart, or sounded unclear. STT is usually better at recovering what the user was trying to say. So I added an internal judgment layer. It compares what STT and the real-time transcript can each tell us, then decides whether a sentence is suitable for feedback. The final user experience stays simple: a few more natural English alternatives, with one or two short Chinese explanations. I’m also keeping one principle clear: STT is evidence, not truth. It can help generate feedback for this session. But it should not automatically become user memory, or change how the next conversation behaves. That matters. A bad suggestion affects one report. A bad memory affects every future conversation. Next, I’ll work on two things: 1. Better turn detection, so user audio is cut more accurately. 2. Memory candidate review, so long-term memory stays conservative. My biggest takeaway today: Building AI products is not about connecting as many models as possible. It is about deciding what each model is responsible for, and how much trust its output deserves. Model output is not truth. It is evidence. Product design is the work of deciding when to trust it, and when to stay skeptical.
English
0
0
0
39
歸藏(guizang.ai)
这个 html-in-canvas和 Three.js 做的动画太炫了 html-in-canvas 允许开发者将真实的、可交互的 HTML 和 CSS 直接渲染到 <canvas>(包括 2D、WebGL 和 WebGPU)中。
中文
54
141
1.8K
309.3K
Bill The Investor
Bill The Investor@billtheinvestor·
有人刚刚开发出了一款仅需使用 iPhone 就能创建交互式 3D 漫游的工具。你只需在房间里走动,应用就会进行扫描,并在几分钟内生成一个完全可交互的 3D 漫游。完全免费。
中文
19
53
315
31.4K
天策
天策@Leobai825·
这两天被母校请回来给学弟学妹做个演讲 主题是:如何过好我们的大学生活? 1.用AI解决问题,能问AI的,绝不问人类 2.做自媒体个人IP,记录成长,收获伙伴 3.学雅思,提升英语能力 4.抓紧时间谈恋爱,大学恋爱很美好 5.做投资交易,拿五千块进场,输光为止 6.少上课,多读书,多睡觉,多健身
天策 tweet media
中文
54
11
171
16.5K
Ding
Ding@dingyi·
Obsidian 这家公司真的是借着 AI 浪潮成功翻身的最佳案例了。以前只有少数极客、程序员、Linux 用户喜欢用,之前 Notion、Logseq、Apple Notes 还抢走了不少用户,没想到现在不仅普及到普通人群了,连周边产业都赚疯了。
Ding tweet media
中文
34
5
46
11.9K
George Gakeez
George Gakeez@gakeez1·
@oviswang 我现在判断一个东西值不值得学,就两个标准:1、我做的项目能不能用到?2、理论知识够不够底层?
中文
0
0
1
439
Wang xin
Wang xin@oviswang·
这两年真正动手做 Agent 以后,我有一个很反直觉的感受:这个领域最重要的能力,可能不是学习能力,而是“不乱学”的能力。不是说学习不重要,而是现在的新东西太多了,框架、工具、榜单、概念,每天都在刷新。我们这些创业者也一样,很容易被这种节奏带着走,看到别人做了一个很炫的 demo,就觉得自己是不是落后了;看到一个新框架被很多人转发,就忍不住想研究一下;看到一个新名词火起来,就担心自己不懂会不会错过机会。结果忙了很久,收藏夹满了,群聊也参加了不少,真正能放到真实世界里跑的东西反而没几个。 AI 时代对每个人都很公平,也很残酷。公平在于,它把很多过去需要多年积累的执行能力压缩到了很短的时间里,年轻人、创业者、资深工程师,突然都被推到一个新的起跑线上。残酷在于,旧的经验不再天然值钱,新的噪音又特别多。我们过去习惯的那套路径:先学很多东西,等自己准备好了,再找机会做一个大东西,可能已经不太适用了。现在更有效的方式,可能是先抓住一个真实问题,做出一个小闭环,放到真实用户面前,让反馈来逼着我们学习。 这也是我最近做几个小项目最大的体会。AI 写代码已经不稀奇了,甚至一个人周末折腾一下,也能做出一个看起来不错的东西。但真正难的,是让它变成一个真实系统:坏了能知道哪里坏,出错能复盘,用户反馈能沉淀成测试,工具调用不会乱来,多轮任务不会突然失忆,成本和权限不会失控。很多 demo 看起来都很热闹,但一到生产环境,就会暴露这些最朴素的问题。所以到最后,我们比拼的不是谁追了更多新概念,而是谁更能把基础打牢,把一个东西长期稳定地跑下去。 我现在判断一个新东西值不值得投入,也变得越来越朴素:它半年以后还重要吗?它能不能帮我们解决一个真实问题?它能不能进生产环境?它出了问题能不能追踪、回滚、复盘?它到底提升了结果,还是只是让我们看起来更懂 AI?很多热点一问到这里,其实就不需要马上追了。不是说它们没价值,而是我们的注意力太贵了,尤其是创业的时候,最怕的不是少学了一个框架,而是把学习变成了行动的替代品。 真正值得长期投入的,反而是那些看起来没那么性感的东西。比如怎么理解用户真实需求,怎么设计工具,怎么管理上下文和记忆,怎么保存状态,怎么处理失败,怎么做评估,怎么让 Agent 在权限和安全上不犯低级错误,怎么让它和人、和其他 Agent 形成真实协作。这些东西听起来不够炫,也不适合发一条很酷的推文,但它们会复利。上面的框架会换,模型会换,热点会换,但这些底层能力不会轻易过时。 所以我越来越觉得,AI 时代最好的学习方式,是围绕作品学习。我们不是先把所有知识学完再开始,而是在做一个真实东西的过程中,哪里卡住就补哪里,哪里失败就复盘哪里,哪里用户不满意就优化哪里。这样学到的东西才会长在身上,而不是停在收藏夹里。一个正在运行的小产品,一个有人使用的工具,一个能持续迭代的社区,一个被真实世界检验过的系统,可能比我们说自己懂多少 AI 概念更有说服力。 过去我们相信履历、资历、头衔、公司背景,但接下来,作品会越来越重要。不是年轻人要被我们教育,也不是创业者要被谁指点,而是我们所有人都要重新适应这个变化。AI 把很多门槛拆掉了,也把很多借口拆掉了。我们不需要追上每一个新名词,也不需要假装自己什么都懂。更重要的是,找到那些会复利的底层能力,围绕一个真实问题持续出货、持续复盘、持续迭代。 少一点追新,多一点出货;少一点焦虑,多一点验证;少一点“等我再研究一下”,多一点“我们先做出来试试”。这个时代可能不会奖励最会收藏信息的人,但一定会奖励那些能把想法变成作品、把作品放进真实世界、再从真实世界里长出来的人。
Wang xin tweet media
中文
16
16
98
20.8K
0xFunky
0xFunky@0x0funky·
看到越來越多人開始使用我做的 agent-sprite-forge skill ,真的滿開心的。 原本一開始只是我自己嘗試製作 2D 遊戲的一個小工具,沒想到越來越多人開始用它做出自己的遊戲,甚至各種奇怪又有趣的作品。 謝謝大家的支持,Github突破1.5K,我正在利用這個Skill做一個更大的東西,各位敬請期待。
0xFunky tweet media
Dmitry@elephantarmy_ai

Made my first game ever using ChatGPT, Codex + Agent-Sprite-Forge (saw it from @0x0funky) Zero programming knowledge. The main weapon? Literally your own body. Just wanted to bring this weird idea to life - and it actually worked. Might turn this into a full game 👀

中文
17
32
394
31.3K
Sac
Sac@Saccc_c·
Codex + Remotion 插件这个组合有点无敌 我一个视频剪辑小白,不到 1h 做出了下面这个电影票房排行榜短视频 Codex 负责找素材、下载片段,Remotion 负责衔接动画和画面编排 只需要表达清楚目标效果,就能做出完成度还不错的动画成片🤩 视频创作的门槛又一次被拉低了
中文
48
111
742
100.2K