Town

81 posts

Town banner
Town

Town

@TownAI

Town is an applied AI company. We build tools that make it easy for anyone to create and use agents in their work and everyday life. https://t.co/viXyk1oS2z

San Francisco, CA Katılım Ocak 2026
48 Takip Edilen361 Takipçiler
Town retweetledi
Angela Zhang
Angela Zhang@zhangelaz·
At a @felicis dinner last night hosted by @FHaskaraman. Icebreaker question: name an underrated product. Before I'd even introduced myself, a founder I'd never met answered "town.com." Then told the room he loves it for email drafts, calendar, & meeting briefings
English
1
2
6
415
Town retweetledi
Jean-Denis Greze 💡
Jean-Denis Greze 💡@jgreze·
For the last 2 years, the received wisdom in AI has been to go vertical. Pick a hard domain, build deep expertise, and that becomes your moat against the foundation models. We held that thesis. The first version of Town was AI for tax prep and we got it to just under a million in revenue. Then last August we started to see where the curve was going, and it became clear we'd be defending ground that was going to get absorbed. We pivoted. What became clearer faster than we expected is that we weren’t just competing with other vertical AI startups anymore. We were watching the base models get good at more and more of the thing we were building. A vertical moat holds only as long as the domain stays hard. Most domains don't. That's the one thing I'd tell any vertical AI founder right now.
English
0
2
14
942
seb (internet arc)
seb (internet arc)@hiiinternet·
hey @TownAI do my email job for me no mistakes (helping them hire engineers btw (they are great))
English
1
1
2
626
Town retweetledi
Jean-Denis Greze 💡
Jean-Denis Greze 💡@jgreze·
"this is seriously so amazing. i am telling everyone about it. SERIOUSLY AMAZING YOU GUYS ARE AWESOME"
English
0
1
3
303
Town
Town@TownAI·
@laurieesc @danmall @laurieesc - Thank you! We really appreciate all of your great product feedback, too—it helps make us better.
English
0
0
1
34
Town retweetledi
Laura Escobar
Laura Escobar@laurieesc·
@danmall I’ve been using @TownAI as a plug-and-play solution and it has been fantastic so far
English
2
1
2
263
Dan Mall
Dan Mall@danmall·
Like a lot of folks, I’ve been slowly building my own Chief of Staff agent. It works really well for some things, like: → Evaluating my upcoming week on Sundays so Monday morning is clean → Facilitating the start and end of each day with reflection and gratitude → Prepping me for upcoming meetings with only what’s still unresolved → Helping me decide on priorities that move my business forward → Protecting my deep work days/times from admin creep → Adding to my Obsidian second brain connections → Tracking outstanding commitments But it’s not without its problems too. It forgets things, even though they’re clearly in its instructions. It loses access to apps frequently. It hits tool usage limits often, which means it can’t fully work autonomously for me. And there are so many more things I want it to do, but I’m worried that adding more will overwhelm it more. My Chief of Staff agent is built as a Claude Project. Is that the problem? Is this why so many people have built this with OpenClaw instead? Is that my next move? Have you built something like this for yourself? What did you do? What would you suggest for me?
English
5
0
10
2.5K
Town retweetledi
Todd Jackson
Todd Jackson@tjack·
Unexpected realization from using an AI assistant (@townAI...it's awesome!) every day: I'm WAY more direct with feedback than I'd ever be with a human coworker. "This draft is bad." "Don't redo all the searches, just rewrite the output." "You got all the right info but cut every section 50%." Zero fear of hurting feelings means I give 10x more feedback, 10x more often. No sandwich method. Kind of makes you wonder how much useful feedback just... never gets delivered between humans.
English
5
2
28
3.2K
Town retweetledi
Jean-Denis Greze 💡
Jean-Denis Greze 💡@jgreze·
Can’t use your Claude Code sub for your Claws anymore? Switching to GPT-5.4 makes them too dumb? We got you: town.com
English
2
2
8
1.2K
Town
Town@TownAI·
@blakeir Thanks @blakeir! Can't wait for you to see what's coming 🔜 ....
English
0
0
0
259
Town retweetledi
Blake Robbins
Blake Robbins@blakeir·
town dot com is very well done
English
5
3
41
9.3K
Town retweetledi
Jean-Denis Greze 💡
Jean-Denis Greze 💡@jgreze·
This is how we build the Town knowledge graph and its 🤯
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
1
1
14
5.9K
Rohan Katyal
Rohan Katyal@rohankatyal29·
Every day at 5 PM, @TownAI scans my meeting notes from @meetgranola, pulls out my action items, and drafts the follow up emails for me to review. It's wild how much time this workflow saves me.
Rohan Katyal tweet media
English
2
2
11
4.8K
Town retweetledi
Adit
Adit@aditabrm·
@jgreze The proactive prompt recommendations on town’s home page are really nice
English
0
1
5
300