nativ
Nativ is a native macOS app that lets you run AI models locally on Apple silicon, offering chat, model management, performance analytics, and an OpenAI/Anthropic-compatible API server.
它利用 mitmproxy、cURL 复制或 HAR 文件,免去逆向私有 API 或手动提取认证令牌的麻烦,并通过 AI 辅助生成类型化的 Python 客户端。
Intercept any app, then call it from Python like a library.
from hinge_client import Hinge
acc = Hinge() # reuses your captured session
recs = acc.get_recommendations()
acc.like(subject_id, comment="hi lol")
You don't write hinge_client.py. mimic captures your own app traffic and an AI
generates the client from it.
Most apps authenticate every request with the same bundle of values: a bearer token, some device ids, a session id, cookies. They're stable across calls. Capture them once from a real request you made, and you can replay them on new requests to the same API.
capture traffic -> extract auth -> generate client
(mitmproxy) (mimic.Session) (claude reads the
captured endpoints)
The generated client is plain Python on top of mimic.App, and you edit it like
any other file. It gives you named methods, body templates, and the multi-step
call chaining mobile APIs tend to need (fetch a token in one call, spend it in
the next).
sh install.sh
Installs uv if you don't have it, then mimic in an
isolated tool env. mitmproxy isn't a separate install; mimic launches it via
uvx on first record. (Manual: uv tool install mimic-client.)
mimic doctor # confirm proxy + claude are ready
mimic record # starts the proxy, prints the iPhone steps
record fills in your Mac's LAN IP and walks you through it:
:8080http://mitm.it -> install the Apple profileThen:
mimic hosts # list captured hosts; pick your API host
mimic learn prod-api.hingeaws.net # see the endpoints mimic saw
mimic gen prod-api.hingeaws.net # generate hinge_client.py
Then from hinge_client import Hinge; Hinge().get_recommendations().
Three ways to build a session by hand, if you don't want codegen:
from mimic import Session
Session.from_mitm("prod-api.hingeaws.net") # pull auth from mitmweb
S
Intercept any app, then call it from Python like a library
根据分类、Topic 和编程语言匹配的相似项目。
Nativ is a native macOS app that lets you run AI models locally on Apple silicon, offering chat, model management, performance analytics, and an OpenAI/Anthropic-compatible API server.

Hermex is a native SwiftUI iPhone app that lets you control a self-hosted Hermes AI agent directly from your phone, with no subscriptions, tracking, or third-party relay.
A hands-on course that walks through building a Pi-style coding agent from scratch across 15 checkpoints, starting from an offline agent trajectory.