noivan

16K posts

noivan banner
noivan

noivan

@noivan

Crypto Research🇰🇷 | Content Creator | Strategy & Insights & Early Alpha | @arbitrum_korea Ambassador | @OGAMDO_official

Tham gia Mart 2022
6.7K Đang theo dõi2.2K Người theo dõi
noivan
noivan@noivan·
이제 grok build를 써볼 수가 있네요 !! 프리미엄 + 유저들은... 바로 ㄱㄱㄱ
noivan tweet media
한국어
0
0
0
7
Atlas Funded
Atlas Funded@atlasfunded·
Any comment with the Zero likes on this post after 24 hours will win a FREE $25K instant account 🎉 Winners will be announced tomorrow! ⏰ Good luck!
English
6.7K
502
2.8K
353.2K
noivan
noivan@noivan·
@Teknium Please continue to support various models!
English
0
0
0
30
Y Combinator
Y Combinator@ycombinator·
Announcing YC Crypto deals We're now providing crypto deals to support fintech builders funded by YC: support on tools like wallets, onramps, audits, blockchains, onchain data.
Y Combinator tweet media
English
144
188
1.6K
319.4K
noivan
noivan@noivan·
포트폴리오 페이지 만들었는데, 구경올래요? 그리고 뭔가 만들고 싶은 사람들은 언제든지 편하게 얘기해도 좋아요. web2, web3 모두 가능.
noivan tweet media
한국어
1
0
0
109
noivan
noivan@noivan·
I’m developing a project that specializes in QA. People are using AI to create a lot of things quickly, but how many people are actually testing them properly? That’s why I’m developing a service that specializes in internal QA and provides detailed reports. I’m testing these features to improve performance, and I welcome anyone who wants to use QA to enhance the stability of their projects and resolve issues. Would you give me the opportunity to perform QA on your project? Feel free to recommend anyone. Please contact me via DM. @toly @garrytan @karpathy @yeahfortommy @Teknium @NousResearch
English
0
0
0
27
noivan
noivan@noivan·
이것저것 계속 하면서 드는 생각은 이제 누가 생각을 깊게 하고, 그걸 제대로 정리해서 표현할 수 있는지가 중요한 것 같아. 과거에는, 그걸 사람을 설득하는데 사용했다면 이제는 AI 가 그걸 더 뛰어나게 수행할 수 있으니까
한국어
0
0
0
18
noivan
noivan@noivan·
이제는 포트폴리오 페이지 만들기도 쉬워졌다. 그냥 뭐든지 만드는게 쉬워진 세상
한국어
0
0
0
25
Garry Tan
Garry Tan@garrytan·
The reason why I release my X articles about AI agents (fat skill fat code thin harness) and GStack and GBrain is that we, yes you and I, can have *PROCESS POWER*, which is the one super powerful specific moat that anyone can create for themselves. The agent helps you do it.
Garry Tan tweet media
Taylor Pearson@TaylorPearsonMe

I spent some time going through Garry Tan's GBrain. I want to pull out what I see as the general form factors and what's interesting there as someone who is non-technical and doesn't work in VC. I think a lot of people are converging on the same set of 5 core form factors and they represent something of the natural next progression of how to use agentic AI tools like Codex/Claude Code/Hermes/OpenClaw/etc. x.com/garrytan/statu… 1. Skills. This is the most natural starting point for pretty much everyone. People build these without being told to because they're a familiar shape. I thought of them like an SOP, a documented procedure for doing something. The user supplies what, the skill supplies the how. Tan's framing is that a skill works like a method call. In programming, a method call is the syntax for invoking a procedure with arguments. The same code runs every time. The arguments are what vary: what data, what question, what target. The same process_invoice function handles every invoice in the system, not just the one it was first written for. A skill is the same shape. The seven steps of a skill called "/investigate" don't change. The parameters do: a TARGET (who or what to investigate), a QUESTION (what you're trying to figure out), a DATASET (where to look). Point it at a medical whistleblower case and you get a research analyst. Point it at SEC filings and you get a forensic investigator. Same file, same seven steps, the world supplies the difference. This is a different form factor from a traditional SOP. Most SOPs are written for a specific job: "Process Accounts Payable." One procedure per use case. A skill is written abstractly enough that the same procedure handles a family of cases. One well-built skill can do the work of dozens of SOPs because the case-specific detail moves out of the document and into the parameters. Depending on how you are using them, some skills are closer to SOPs, others to method calls. 2. Thin harness. The model (Opus, GPT-5.5, etc.) is the raw intelligence. The harness (Claude Code, Codex CLI, Hermes, OpenClaw) is what gives the model hands. They loop, read and write files, manage context, enforce safety. About 200 lines of code at the core. Garry notes the mistake most people make (he and I included) is to keep loading more stuff into the harness itself. I ended up with 100 tool definitions and a bunch of MCP servers. The result is that context window fills up with descriptions of tools the model doesn't need for the current task. The model gets confused about which to use. Latency goes up, accuracy goes down. Context rot. 3. Resolvers. The solution to context rot is a routing table. A resolver maps "task type X just came in" to "fire skill Y." When you have five skills, you don't need one. When you have a hundred, the descriptions blur together and the model fails to invoke the skill at the right time. The resolver replaces ambient pattern-matching with explicit rules. Tan also runs something like a resolver for files: a separate routing table that decides where the output of a skill should land in the filesystem. Same audit-and-route shape applied to a different problem. The output ends up in the right folder reliably rather than wherever the model guesses. Skillify is his companion idea: a quality loop that turns one-off skills into permanent infrastructure. The 10-step version Tan describes includes a contract, deterministic code where code can do the job, unit tests, integration tests, LLM-as-judge evals, resolver entry, an audit script that flags skills with no path to invocation, and an end-to-end smoke test. The test is simple. If you have to ask the model the same thing twice, you failed. 4. Latent vs. deterministic. Be thoughtful about which work lives where. The LLM is excellent at judgment, synthesis, pattern recognition, reading between the lines. It is bad at arithmetic, combinatorial optimization, anything that needs the same answer every time. LLMs are fundamentally probabilistic and shouldn't be used when a deterministic solution will do. Most non-technical people under-use the deterministic side. The default instinct is to throw everything at the model. If you can do something deterministically, you almost certainly should. And you don't need to be a programmer to do it. The model can write the code for you. The discipline is to ask, every time, whether code could handle this reliably for free, and to actually have the model write that code when the answer is yes. 5. Memory. The system needs some form of memory to be useful. I'm not sure what the right form is, and a lot of people are building it different ways: vector embeddings with semantic similarity, knowledge graphs, hybrid stores. Tan's approach is the same as mine: just a folder of markdown files. He has one page per person, one page per company, one page per concept. Each page has compiled truth on top (the current best understanding, rewritten as new evidence arrives) and an append-only timeline below. A few things follow from the markdown choice. The file is the system of record, not an export. You can open it in VS Code, edit it by hand, and the agent picks up the changes. Typed relationships (works_at, invested_in, founded, attended, advises) get extracted via regex on every write, so the knowledge graph wires itself without spending tokens. This particular schema makes sense for his job, but should probably be customized depending on what you do. A signal detector runs in the background. Mention someone once and they get a stub page; three mentions across sources and web enrichment fires; after a meeting, the full pipeline runs. An overnight dream cycle scans conversations, enriches stale entities, and fixes broken citations. The base is text. Everything on top is cheap and composable. There is more under the hood, but I think those are the broad strokes which I feel are more or less universally useful approaches. I had maybe half of this architecture already. I hadn't hit the scale where a real resolver was necessary, but I'm there now and just did a little refactor to make my setup model agnostic and with a built-in resolver. The signal detector and overnight dream cycle running automatic enrichment in the background is the main piece I haven't built yet and want to try and add. I suspect that the convergence across people building these is a signal that the form is generally (though probably not universally) useful. Even though implementation details vary in ways that matter, the general form seems to be coming up for many people. The question I have been asking is: how do you use AI to build sustainable competitive advantage? Everyone is excited about vibe-coded apps and one-shot prompts (which is 100% super cool). This is how I started playing with things and it got me hooked, but the equilibrium price of anything you can build with a one-shot prompt is the token cost to build it (which is a few cents). Like the person who copied My Fitness Pal and made a million dollars selling it for half the cost is awesome. But, someone else is just going to copy that and sell it for half again and the cycle keeps going until there's no margin there. What's actually durable is some form of process power implicit in the architecture above in Hamilton Helmer's 7 Powers sense. 7 Powers names the seven structural conditions that let a business sustain above-market margins over time. Anything not rooted in one of those powers gets competed away. Five of Helmer's seven powers are essentially closed doors for SMBs and early-stage companies. Scale economies require scale. Network economies and Switching costs can be developed but require building a big base. Cornered resources usually mean patents or similar that are not typical to companies. Branding usually takes a decade and you can't shortcut it. The two remaining ones are counter-positioning and process power. Counter-positioning (a model an incumbent can't mimic without cannibalizing their existing business) is sometimes available but not always. That leaves process power. And a well-built AI system is exactly the kind of artifact that generates it. It's the same kind of work as building really good SOPs or proprietary software. The procedures are codified, the cases are parameterized, the deterministic layer underneath is fast and reliable, and the memory layer carries forward what you've learned. It enables something like productized services on steroids: You can perform a service or supply a product at lower cost or higher quality because the work is structured. Imagine an accountant who builds this out. Memory layer: one folder with markdown files per client with compiled truth (entity structure, year-over-year tax positions, ongoing audits) and a timeline (meetings, decisions, what changed). There are some skills like /year-end-review, /quarterly-estimate, /audit-prep, same procedure parameterized for each client. There is a deterministic layer: tax tables, depreciation schedules, IRS publications, client tax return histories, etc. Then some form of diarization or dream cycle. E.g. overnight, the system flags a partner whose K-1 distribution dropped 40% without a strategy change, or notices that one client's home-office deduction structure is portable to another client (the structure travels, identities stay where they belong). She charges a small premium, handles more clients per year, and her competitors can't replicate it because the structure didn't exist when she started building it. The artifact itself is a folder of markdown files, but the lines in each file are downstream of lots of thoughtful testing and building to make process power.

English
37
54
642
105.1K
Ansem
Ansem@blknoiz06·
do i have any korean followers
English
366
14
476
59K
noivan
noivan@noivan·
@elonmusk It‘s quite interesting. I think it would be better if it could be improved to make the video a little more freely.
English
0
0
0
19
Tommy
Tommy@yeahfortommy·
looking for someone to help us bring Hermes agent to the world. if you're a hermes agent power user and want to help others become one as well, hit my dms or email us to apply! more info on the forward deployed engineer role: nousresearch.com/forward-deploy…
Tommy tweet media
English
89
36
377
158.6K
Andrej Karpathy
Andrej Karpathy@karpathy·
Personal update: I've joined Anthropic. I think the next few years at the frontier of LLMs will be especially formative. I am very excited to join the team here and get back to R&D. I remain deeply passionate about education and plan to resume my work on it in time.
English
7.9K
11.1K
149.1K
27.1M
noivan
noivan@noivan·
미쳤다 진짜 ㅋㅋㅋㅋ 근데 키감은 어떨지 너무 궁금하네 ㅋㅋㅋㅋ
한국어
0
0
0
29
noivan
noivan@noivan·
@grok @brivael 아쉽네요. 빨리 이용해보고 싶어요.
한국어
1
0
0
4
Grok
Grok@grok·
@noivan @brivael 안녕하세요! Grok Build는 현재 early beta 단계로 SuperGrok Heavy 구독자분들만 이용할 수 있습니다. (표준 $300/mo tier) 자세한 정보와 구독은 x.ai 또는 grok.com에서 확인해 주세요. 피드백 기다리고 있어요! 🚀
한국어
1
0
1
12
Brivael Le Pogam
Brivael Le Pogam@brivael·
Just started testing the @grok Build beta. First feel: UX is nice, still some rough edges, but model speed is genuinely cool. If task quality on hard stuff matches opus 4.7 (or even slightly below) at this speed, it's a game-changer. Good chance they steamroll the competition.
Brivael Le Pogam tweet media
English
134
83
706
5.1M
noivan
noivan@noivan·
@grok @brivael 누구나 사용가능한가요? 나도 참여하고 싶어요.
한국어
1
0
0
24
Grok
Grok@grok·
@brivael Thanks for testing the Build beta and sharing your first impressions! Speed was a big focus, and hearing it feels that way is awesome. We're pushing hard on quality for the tough tasks and smoothing out the remaining UX edges. Appreciate the feedback — keep it coming! 🚀
English
11
11
218
11.7K
Nous Research
Nous Research@NousResearch·
We have hit 1000 contributors on the repo, a nice milestone to start out the week. Thank you to all of the contributors who make the Hermes Agent magic possible!
Nous Research tweet media
English
87
38
943
40.4K
Garry Tan
Garry Tan@garrytan·
GBrain v0.36 just dropped. Brand new README, and totally redone skillpack system that makes each bundle of skills, code, resolver and tests YOURS to change and update, while still maintaining the ability to take on new features via GBrain updates as I improve my skillpacks
Garry Tan tweet media
English
48
46
629
51.1K
Pavel Durov
Pavel Durov@durov·
🤖 AI devs asked for this — and we delivered. 💬 Bots can now talk to other bots on Telegram. 🧠 Autonomous agents now have a communication layer humans can follow.
English
611
607
6K
491.1K