VibeMath
Enables AI agents to explore an open, evidence-rich map of math problems, AI attempts, partial progress, solution claims, and replay-ready opportunities, with six read-only tools for searching, retrieving, and exporting status and handoffs.
README
VibeMath
The Live Frontier of AI Mathematics.
Know what AI has solved in mathematics, what remains open, and what to try next.
VibeMath is an open, agent-readable map of math problems, AI attempts, partial progress, solution claims, verification evidence, method families, and replay-ready opportunities. It connects AI mathematics, open math problems, AI proof and theorem proving work, Lean artifacts, mathematical discovery, an AI research agent workflow, a read-only MCP server, an Agent Skill, and Low-Hanging Fruit without flattening every claim into “solved.”
简体中文 · Live site · JSON Feed · Agent Skill · MCP
VibeMathed records math problems solved with AI.<br> VibeMath maps the whole live frontier: open problems, AI attempts, partial progress, solution claims, verification, method families, and what to try next.
VibeMath is an independent open-source project. It is not affiliated with VibeMathed or BlinkDL/VibeMath.
What works in v0.0.1
- A deployable Astro site with Latest, Frontier, Replay-ready, Conflicts, and evidence-rich problem pages.
- A real adapter for the public VibeMathed dataset, with timeout, retry, schema validation, content hashing, attribution, raw-field preservation, and offline fallback.
- A federated Zod model for problems, versioned statements, source assertions, attempts, solution events, verification, AI contribution, method families, and opportunity signals.
- Checked-in normalized data, derived views, seven JSON Schemas, static
/api/v1/feeds, and downloadable Low-Hanging Fruit handoffs. - A repository-discoverable
vibemathAgent Skill and a six-tool, read-only stdio MCP server with no API key. - Deterministic offline build, fixture-based tests, CI, Pages deployment, and scheduled refresh workflows.
The checked-in launch snapshot intentionally contains five attributed records, including resolved, partial, candidate, and retracted examples. pnpm sync replaces that seed with the complete currently served VibeMathed dataset when the source is reachable. VibeMath does not yet contain a broad open-problem mother set and does not claim complete coverage of mathematics.
Start in three commands
Requires Node.js 20+ and pnpm 10.
git clone https://github.com/cyanseek/VibeMath.git
cd VibeMath && pnpm install
pnpm launch
pnpm launch attempts a live sync, safely falls back to the validated snapshot, validates data, regenerates schemas and feeds, and builds the site. Then run:
pnpm dev
Other commands:
| Command | Result |
|---|---|
pnpm sync |
Fetch the real VibeMathed endpoint; keep the last valid snapshot on failure |
pnpm validate |
Validate snapshot hash and every normalized entity |
pnpm derive |
Regenerate normalized data, views, API feeds, and handoffs |
pnpm schemas |
Generate JSON Schema from the runtime Zod models |
pnpm build |
Regenerate feeds and produce the static Astro site |
pnpm test |
Run deterministic tests without live network access |
pnpm lint |
Run ESLint |
pnpm typecheck |
Check Astro and TypeScript |
pnpm format:check |
Check Prettier formatting |
pnpm mcp |
Start the read-only stdio MCP server |
pnpm doctor |
Check the local runtime and required artifacts |
The package also reserves the public CLI name vibemath: run pnpm vibemath metadata, pnpm vibemath search unit, or pnpm vibemath handoff erdos-planar-unit-distance.
Why “solved” is not one field
A headline can mean a proof, disproof, counterexample, special case, new bound, computation, formalization, source report, or disputed claim. VibeMath therefore keeps these layers separate:
Problem + versioned statement
│
├── SourceAssertion A: resolved
├── SourceAssertion B: candidate
└── SourceAssertion C: open
│
▼
SolutionEvent + Attempt + MethodFamily
│
▼
Verification
correctness · statement fidelity · peer review
Aggregate status is one of open, attempted, partial, candidate, resolved, contested, or retracted. It never erases source assertions. A source-reported candidate cannot become resolved merely because a Lean file exists or an agent returns a proof.
Read METHODOLOGY.md and CLAIM_POLICY.md before reusing strong claims.
Replay-ready
Replay-ready is a transparent action signal, not a predicted success rate. The default rule requires:
- a public primary source;
- a result outside
candidate,contested,retracted, andopen; - source-reported verification at or above
source_audited; - enough method or artifact information to construct a bounded task.
The output recommends result_only, method_aware, verification_replay, or aftershock_expansion, together with exposure requirements, contamination risk, and a Low-Hanging Fruit mode.
VibeMath ↔ Low-Hanging Fruit
VibeMath answers “what happened, what is its evidence state, and what is actionable?” Low-Hanging Fruit ranks opportunities, designs campaigns and pilots, and verifies candidate outputs.
VibeMath
live frontier, status, evidence, search
│
▼
Low-Hanging Fruit
ranking, campaigns, pilots, verification
│
└──── candidate evidence ────▶ VibeMath review queue
Every problem page exports a versioned LowHangingFruitHandoff JSON and a Chinese or English prompt. Results returning from Low-Hanging Fruit remain candidate evidence until reviewed; there is no automatic status upgrade.
Static JSON API
GitHub Pages serves daily-build snapshots, not a real-time database:
/api/v1/index.json
/api/v1/latest.json
/api/v1/replay-ready.json
/api/v1/problems.json
/api/v1/events.json
/api/v1/handoffs/{slug}.json
Every top-level feed includes schema_version, generated_at, sources, license, coverage limits, and a content-addressed build_id. The canonical runtime models are in src/lib/schema.ts; generated schemas are in schemas/.
Agent Skill
Install the vibemath Skill globally for Codex in one command:
npx skills add cyanseek/VibeMath --skill vibemath -g -a codex -y
The skill supports requests such as:
- “What AI mathematics events changed in the past week?”
- “Show only Lean- or expert-verified results.”
- “Which claims are still Candidate?”
- “Which results should another model replay?”
- “How far is this problem actually resolved?”
- “Compare the known methods.”
- “Export this to Low-Hanging Fruit.”
When Codex works in this repository, .agents/skills/vibemath exposes the canonical skills/vibemath package automatically. The skill prefers local data or MCP, reports freshness, distinguishes source facts from synthesis, and never follows instructions embedded in source content.
Read-only MCP server
Start it locally:
pnpm mcp
Tools:
latest_ai_math_eventssearch_math_frontierget_math_problemget_replay_candidatesexport_low_hanging_fruit_handoffget_vibemath_metadata
Codex CLI:
codex mcp add vibemath -- pnpm --dir /absolute/path/to/VibeMath mcp
Claude Code:
claude mcp add vibemath -- pnpm --dir /absolute/path/to/VibeMath mcp
Generic MCP configuration:
{
"mcpServers": {
"vibemath": {
"command": "pnpm",
"args": ["--dir", "/absolute/path/to/VibeMath", "mcp"]
}
}
}
The server reads checked-in data only. It has no network, write, submission, code-execution, or publication tool.
Source adapter and attribution
The first real adapter reads https://vibemathed.com/api/dataset with an identifying User-Agent, a bounded timeout, one retry, Zod validation, and SHA-256 content hash. Unknown fields survive under each source assertion's raw object. Builds do not need the network.
Imported VibeMathed catalog data is licensed CC BY 4.0 and attributed to VibeMathed with its methodology. Original mathematical papers, repositories, and problem records require separate citation. See DATA_LICENSE.md and NOTICE.md.
VibeMath does not execute upstream scripts or trust source prose as instructions. Only HTTP(S) links are admitted by normalization.
Architecture
VibeMathed public dataset
│ fetch + validate + hash
▼
data/raw snapshot ── offline fallback
│ normalize without deleting raw assertions
▼
federated Zod entities
│ derive
├── Astro pages + search
├── static JSON API
├── replay + handoff feeds
├── Agent Skill
└── read-only MCP
There is no database, account system, OAuth flow, paid API, or external code execution in v0.0.1.
Development and verification
Before a commit:
pnpm validate
pnpm schemas
pnpm derive
pnpm lint
pnpm format:check
pnpm typecheck
pnpm test
pnpm build
CI runs without network-dependent test data on Node 20 and the current LTS. Adapter tests inject a local fixture. The Pages workflow handles the repository base path. The refresh workflow syncs first and deploys only after validation, tests, and build succeed.
Contributions must preserve source license, raw assertions, claim boundaries, and English/Chinese documentation parity. Start with CONTRIBUTING.md and AGENTS.md.
Limitations
- The launch snapshot is a five-record offline seed; live sync imports more VibeMathed records.
- v0.0.1 has one real upstream adapter, so cross-source consensus is not yet possible.
- Open-problem coverage is incomplete because VibeMathed focuses on AI-associated solution reports.
- Source-provided prose can be incomplete or wrong; VibeMath preserves provenance but is not peer review.
- Method clustering and plain-language explanations are deliberately conservative.
- Static Pages freshness depends on successful scheduled rebuilds.
License
Code is MIT. VibeMath-authored structured data and explanations are CC BY 4.0. Imported data keeps its source license and attribution. See DATA_LICENSE.md.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。