Asmir

477 posts

Asmir banner
Asmir

Asmir

@asmirkn

building Mover-OS, documenting what i learn

London Entrou em Eylül 2022
156 Seguindo193 Seguidores
Asmir
Asmir@asmirkn·
@melvynx @Claude check for errors in your setup with npx cchubber
English
0
0
3
612
Melvyn • Builder
Melvyn • Builder@melvynx·
ok btw @claude limits are increasing insanely fast, just make some automation and check, and I am at 8% of my weekly limits. this is too fast, they clearly nerfed it (or big caching issue)
Melvyn • Builder tweet media
English
25
2
103
13.4K
Asmir
Asmir@asmirkn·
i am doing this on steriods bro right now i have a very aligned system (moveros.dev) that takes data from my daily life, all actions i do, every project i work on, what i eat, sleep, how i perform, etc and it creates files within obsidian that are basically my entire conscious life now using those conscious details it extracts what's hidden due to its pattern recognition, and give some underlying patterns about myself, i have had more self reflection through this then doing any other thing in life an even better part about this is that because it knows my downsides, it can help me overcome them when i use it on a day to day basis and generally just allow me to perform better in life, it's quite cool
English
0
0
0
10
Alex Banks
Alex Banks@thealexbanks·
i hate to admit it but i've only just recently converted all of my most used prompts + projects to skills and the time I save now is insane. a good rule of thumb I've found: “Who am I?” → Context files (about-me.md, voice-and-style.md, working-rules.md) “How should Claude talk to me?” → Global instructions (set once in Settings) “What am I working on?” → Projects (dedicated workspaces with scoped memory) “How should this specific task be done?” → Skills (reusable task recipes)
The Signal@thesignalAI_

Claude Skills are the most underused feature Anthropic has shipped. You write a set of instructions once, save them as a file, and Claude follows your exact process every time. No code. Built entirely through conversation. Here's the setup guide: thesignal.substack.com/p/how-to-build…

English
11
15
209
35.8K
Asmir
Asmir@asmirkn·
@levelsio i know this is unrelated but if any of you have issues with claude code limits, run npx cchubber to pinpoint what's wrong and get recommendations for fixes
English
0
0
0
26
Asmir
Asmir@asmirkn·
@AlxTurovski i checked, its because i was running sessions for too long instead of compacting them quicker, my usage limits are way better now, claude also had an issue with token caching so sometimes it used to result in usage spikes.
English
0
0
1
39
Alex Turovski
Alex Turovski@AlxTurovski·
@asmirkn I don't think there's anything wrong, it's not like it just vanished. It went down gradually 😁
English
1
0
0
40
Alex Turovski
Alex Turovski@AlxTurovski·
I reached my first Claude Code limit 🥹
Alex Turovski tweet media
English
29
0
33
1.4K
Asmir
Asmir@asmirkn·
bro am i retarded, why aren't we doing this for our personal lives? right now i have a very aligned system (moveros.dev) that takes data from my daily life, all actions i do, every project i work on, what i eat, sleep, how i perform, etc and it creates files within obsidian that are basically my entire conscious life now using those conscious details it extracts what's hidden due to its pattern recognition, and give some underlying patterns about myself, i have had more self reflection through this then doing any other thing in life an even better part about this is that because it knows my downsides, it can help me overcome them when i use it on a day to day basis and generally just allow me to perform better in life, it's quite cool
English
0
0
0
13
Shann³
Shann³@shannholmberg·
how karpathy builds a personal AI knowledge base with obsidian most of his token spend is shifting from code to knowledge management he dumps everything he's researching into one folder. articles, papers, repos, datasets, images then he points claude at the folder. it reads through every source, writes summaries, groups related ideas, links concepts across documents, and builds a structured wiki in markdown all viewable in Obsidian. karpathy rarely edits the wiki himself, the LLM maintains it when he adds something new, it figures out how it connects to whats already there and updates the wiki on its own his wiki is at ~100 articles and ~400K words. at that scale he queries it like a research engine: > "what are the common patterns across these papers" > "what connects this new idea to something I saved weeks ago" > "summarize everything on topic X and tell me whats missing" every answer gets filed back into the wiki. so it grows from both what you save and what you ask he runs "health checks" too. the LLM finds inconsistencies, fills gaps with web searches, and suggests new directions he skipped RAG and vector databases entirely. the LLM auto-maintains index files and reads related docs on its own at this scale right now you need Obsidian, CLI tools, custom scripts, and browser extensions to wire it together "I think there is room here for an incredible new product instead of a hacky collection of scripts"
Shann³ tweet media
Andrej Karpathy@karpathy

LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.

English
24
81
781
80.7K
Asmir
Asmir@asmirkn·
@Amank1412 i actually built something that gives you personalised recommendations for it, super simple to run, just do npx cchubber in your terminal
English
0
0
0
162
Aman
Aman@Amank1412·
How to reduce token usage!
Aman tweet media
English
7
37
301
14K
Asmir
Asmir@asmirkn·
@cgtwts i actually managed to pinpoint why my rate limits are cooked, i built a tool for myself and decided why not make it for everyone, so now you can use npx cchubber in your terminal to diagnose your usage issues
English
0
0
1
136
Asmir
Asmir@asmirkn·
right now i have a very aligned system (moveros.dev) that takes data from my daily life, all actions i do, every project i work on, what i eat, sleep, how i perform, etc and it creates files within obsidian that are basically my entire conscious life now using those conscious details it extracts what's hidden due to its pattern recognition, and give some underlying patterns about myself, i have had more self reflection through this then doing any other thing in life an even better part about this is that because it knows my downsides, it can help me overcome them when i use it on a day to day basis and generally just allow me to perform better in life, it's quite cool
English
1
0
2
75
mscode07
mscode07@mscode07·
DROP YOUR SAAS!! 👇
mscode07 tweet media
English
122
3
55
4.2K
Asmir
Asmir@asmirkn·
bro am i retarded, why aren't we doing this for our personal lives? right now i have a very aligned system (moveros.dev) that takes data from my daily life, all actions i do, every project i work on, what i eat, sleep, how i perform, etc and it creates files within obsidian that are basically my entire conscious life now using those conscious details it extracts what's hidden due to its pattern recognition, and give some underlying patterns about myself, i have had more self reflection through this then doing any other thing in life an even better part about this is that because it knows my downsides, it can help me overcome them when i use it on a day to day basis and generally just allow me to perform better in life, it's quite cool
English
0
0
0
29
Farza 🇵🇰🇺🇸
I've been hacking on a product for myself that does this. If interested, hmu! As you use your computer, it lets you collect inspo (an interesting tweet, a research paper, a screenshot of a page design you like, etc). Then it all gets indexed into an LLM-managed wiki you can chat with. The more you collect, the better your wiki gets, the better your chats get, the better your ideas potentially get. Super early and hacky. Started it a few days ago. DM me if you wanna try it out + plz plz tell me what you'd wanna use it for in your DM! Mac only rn. (P.S: I am also exploring a version where teams can collect context together. Imagine your whole team's inspo + ideas feeding one AI-backed wiki, and then agents working on top of that 24/7 doing research and analysis to help you guys figure new ideas like a new Notion but not trash if you are on a team and wanna try that lmk)
Andrej Karpathy@karpathy

LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.

English
47
5
304
38.9K
Asmir
Asmir@asmirkn·
@kritikakodes check why its happening by running npx cchubber, easiest way to do it rn
English
0
0
0
39
Kritika
Kritika@kritikakodes·
You accidentally say "HELLO" to Claude and it consumes 4% of your session limit.
English
36
11
170
5.2K
Asmir
Asmir@asmirkn·
@RoundtableSpace you can check exactly why that's happening btw, quite easy, just run npx cchubber and you'll get all the data
English
0
0
0
38
0xMarioNawfal
0xMarioNawfal@RoundtableSpace·
WHEN YOU SAY HELLO TO CLAUDE AND LOSE 4% OF YOUR SESSION LIMIT
0xMarioNawfal tweet media
English
51
9
176
50.6K
Asmir
Asmir@asmirkn·
@kloss_xyz that's why i am building a local knowledge base that any agent can connect to and i resume instantly, it's at moveros.dev
English
0
0
0
22
klöss
klöss@kloss_xyz·
People who swear by only one AI model haven’t built shit. Real builders are tool agnostic. They master everything because they’ve watched the “best AI tool” get outpaced over days, weeks, or months. We all have. Nothing in the AI space is guaranteed to exist in 1, 3, or 5 years. If one tool dying kills your workflow, you don’t have a workflow. You have a dependency problem.
English
27
2
51
2.3K
Asmir
Asmir@asmirkn·
@0x_kaize use npx cchubber to find what's leaking your usage + best practices
English
0
0
0
60
Asmir
Asmir@asmirkn·
@ashvinmelwani yo find out what's wrong by running npx cchubber, it helped me quite a lot
English
0
0
0
110
Ash
Ash@ashvinmelwani·
Claude using up my entire daily usage before 12pm That too failing to generate responses. What kind of scam is this. (I’m so fucking reliant on AI now it’s scary)
English
18
0
41
7K
Asmir
Asmir@asmirkn·
@Yampeleg the thing is i dont think its sustainable for them, i ran npx cchubber and i have used $2700 dollars by only paying $200, look:
English
0
0
0
102
Yam Peleg
Yam Peleg@Yampeleg·
let's try even simpler this time: YOU GET MORE MONEY. YOU USE LESS COMPUTE. EVERYONE IS HAPPY. AGAIN: MORE. MONEY. FROM. SOME USERS. TO YOU. AND EVERYONE IS HAPPY. THESE USERS GET THE REAL OPUS. NOT THE CHEAPER ONE THEY ARE QUIETLY SWITCHED TO RIGHT NOW. USERS PAY MORE & GET THE REAL THING. EVERYBODY ELSE GETS THE CHEAPER. "DUE TO A VERY REAL AND VERY GLOBALLY VISIBLE COMPUTE SHORTAGE THAT WE ALL ALREADY SAW ON THE NEWS WE ARE OFFERING A NEW TIER: CLAUDE PRO MAX ULTRA SUPER DUPER GUARANTEED FULL PRECISION. AND EVERYBODY ELSE IS SUBJECT TO COMPUTE DEMANDS. THE CURRENT STATUS IS VISIBLE ON OUR WEBSITE. THANK YOU FOR YOUR ATTENTION TO THIS MATTER" EVERYONE'S RATE LIMITS GO BACK TO NORMAL. AND THE PRICE TO CHARGE IS THE DIFFERENCE. USERS WHO WANT MORE PAY MORE USERS WHO DON'T, DON'T. ANTHROPIC MAKES MORE MONEY. EVERYONE WINS. but yeah you can also just keep lying instead that’s also an option
Lydia Hallie ✨@lydiahallie

Thank you to everyone who spent time sending us feedback and reports. We've investigated and we're sorry this has been a bad experience. Here's what we found:

English
15
1
107
10K
Asmir
Asmir@asmirkn·
@yashhq_22 you can diagnose the issue using npx cchubber
English
0
0
0
263
Yash
Yash@yashhq_22·
$20 in codex feel endless. $20 in claude disappear in 20 mins.
English
186
45
1.8K
76.3K
Asmir
Asmir@asmirkn·
@reactive_dude yeah its the best model, maybe overkill in some scenarios but rather be that than it being medicore, also if you wanna see how much you have spent so far use npx cchubber (it also creates a cool card for you):
English
0
0
0
192
andrej
andrej@reactive_dude·
am i stupid for always using opus on max for all coding tasks? does it make sense to use other settings, if i’m not concerned about the rate limit?
English
111
1
234
71.5K
Asmir
Asmir@asmirkn·
@DeryaTR_ i think anthropic is partly to blame but also you may need to look at your local setup by running npx cchubber:
English
0
0
0
326
Derya Unutmaz, MD
Derya Unutmaz, MD@DeryaTR_·
Anthropic: We greatly reduced your rate limits. We are not resetting any rates for the bugs that ate your tokens & blame you for reaching your limits with few prompts. OpenAI: New $0 Codex only seat, reduced cost from $25 to $20, making it frictionless for teams to try Codex
Rohan Varma@rohanvarma

We just made it frictionless for teams to try Codex! > New $0 Codex only seat for Codex access that is fully usage-based > Annual team seats are dropping from $25 to $20 per month For each Codex only seat you add to a new or existing workspace, we’ll credit your team $100, for your to $500! 💰 Free to get started and only pay for what you use 🤌🏾 openai.com/index/codex-fl…

English
40
23
628
47.8K
Asmir
Asmir@asmirkn·
@IAmAaronWill you can use this to see what's causing you to lose usage: x.com/i/status/20400…
Asmir@asmirkn

@S1r1u5_ Yo it's not just you, my usage has doubled over the last few days doing less work. I created it as a tool for everyone, simply run npx cchubber in the terminal.

English
0
0
0
39
Aaron
Aaron@IAmAaronWill·
Claude usage limits are a pain in the ass. Literally had Claude write some code and rework a prompt. And I'm 91% into the limit already. $200/m for this isn't good at all. GPT usage limits are much better.
Aaron tweet media
English
36
2
84
6.2K