惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
C
Check Point Blog
腾讯CDC
Stack Overflow Blog
Stack Overflow Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
Recent Announcements
Recent Announcements
L
LangChain Blog
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
J
Java Code Geeks
博客园_首页
Jina AI
Jina AI
美团技术团队
H
Help Net Security
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
S
SegmentFault 最新的问题

herrkaefer

"Vibe planning \u003e vibe coding" "Anything to Markdown" "Built anocus: anonymous commenting for static sites" "日记与小说 -- AI 续写小说欣赏" "Any-podcast: from newsletters to a podcast" "Made MicPipe: a simple voice input tool using ChatGPT dictation" "关于 Tools 和 Skills 的一点感想" "Realtime monitoring of ComEd hourly price" "Introducing SwiftEdgeTTS" "jelly鼻屎" "等饭的人" "Use home assistant to motivate my kid to brush teeth" "Migrated Blog to Hugo and Cloudflare Pages" "Easy Aspen monitoring for Chicago parents" "Introducing HabitBuilder: A simple Telegram bot for habit tracking" "鼓捣" "Open folder or file with Sublime Text from Finder toolbar" "Python dev workflow on macOS" "Create new text file from Finder toolbar" "Uno reinvented for 3-year-old kids" "Uno变身儿童数字游戏" "自动转发Twitter到微博" "Handle annoying operations of objects in Realm DB" "Move Jekyll blog to Ubuntu VPS" "Introducing Mole" "Note taking without note taking app" "Deploy Python web application on Ubuntu server" "Setup Shadowsocks / VPN on Ubuntu Server" "Linode Notes - Basic Setup" "CLASS Style Adapted for Embedded Systems"
"Thoughts on the philosophy of building AI-native apps"
"herrkaefer" · 2025-10-31 · via herrkaefer

While building VibeDict, I got a few early thoughts on what “AI-native” app development really means. These thoughts will surely be replaced by better ones later—but right now I feel excited while thinking about them, so that’s why I want to write them down.

💡 An app is just the body of the AI. AI is the soul.

Of course, the user is also a soul.

The app, the UI, and natural language are all just ways to interact.

Traditional apps use mostly fixed UIs. They define (and limit) how users can interact.

Natural language is a much more advanced way to interact.

A database is just a local cache that stores some memories that are useful to the user.

All features start from natural-language input. The model understands the intent, and the local app executes the actions.

So the interface is not the center of the logic. It’s only a “medium” for the conversation between the human and the AI.

The real intelligence, feature decisions, and learning experience all come from the large model behind it.

The most important job of an AI-native app is to provide the interface and the channel for the user to talk to the AI. Starting from this point: if it’s not necessary, don’t add more things.

AI-native app is an interface between user and AI.

An app is also a semantic execution engine: it turns user intent into local actions.

The whole interaction logic can be implemented as a general framework, for example:

AI Intent Classifier
    ↓
Intent Router (meaning → function mapping)
    ↓
Function Registry (function registry)
    ↓
Local function callings (real execution)

The app provides:

  • Semantic execution: via function calling
  • Input UI: chat box, voice input, etc. It can also offer light hints and traditional UI inputs (for common or fixed workflows)
  • Output UI
  • Database: persist some memories that are useful to the user
  • Integrations with third-party services