Metadata-Version: 2.4
Name: hypermarrow
Version: 2.9.19
Summary: HyperMarrow（智商藏不住）— AI 智能体的长期记忆与学习系统
Home-page: https://hm.qianshi.cool
Author: 千视科技
Author-email: support@qianshi.cool
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# HyperMarrow 智商藏不住

> AI 智能体的长期记忆与学习系统 — 让 AI 拥有跨会话记忆、持续学习能力、认知年龄量化。100% 本地部署，数据不上云。

## 特性

- **跨会话长期记忆** — AI 关掉重开还记得你的项目、偏好、历史决策
- **程序经验学习** — 解决过的问题直接复用，Token 消耗降低 40%+
- **认知年龄量化** — AI 的成长可视化，从幼儿期到青少年期
- **MCP 协议支持** — 即插即用接入 13 种主流 AI Agent
- **本地优先** — 记忆数据 100% 只写本机硬盘，隐私零顾虑

## 支持的 AI Agent

| Agent | 接入方式 |
|---|---|
| Claude Code | MCP |
| OpenClaw | MCP |
| Cursor | MCP |
| Windsurf | MCP |
| Codex CLI | MCP |
| Aider | MCP |
| Copilot | MCP |
| Devinci | MCP |
| 自定义 Agent | MCP / REST API |

## 安装

### Windows（推荐）

1. 下载客户端：https://hm.qianshi.cool/download
2. 运行安装程序
3. 打开应用 → 选择要接入的 AI Agent
4. 完事（约 5 分钟）

### MCP Server（开发者）

```bash
npm install -g hypermarrow
hypermarrow-mcp
```

或从源码：

```bash
git clone https://github.com/qianqiuwanzi/hypermarrow.git
cd hypermarrow
npm install
npm start
```

## 快速开始（Python）

```python
from hypermarrow import MemorySystem

mem = MemorySystem()

# 写入记忆
mem.remember("项目采用 Python + FastAPI，数据库 PostgreSQL")
mem.remember("用户偏好函数式编程风格")

# 查询记忆
answer = mem.recall("这个项目用什么技术栈？")
print(answer)  # "Python + FastAPI, PostgreSQL"

# 认知年龄
age = mem.cognitive_age()
print(f"AI 认知年龄: {age.age}岁, {age.stage}")
```

## 定价

| 版本 | 价格 | 说明 |
|---|---|---|
| 免费 | ¥0 | 30 天全功能试用 |
| Pro | ¥9.9/月 | 无限记忆、无限 Agent |
| Business | ¥39/月 | 多设备、团队协作 |

## 联系

- 官网：https://hm.qianshi.cool
- 邮箱：support@qianshi.cool

## 许可证

商业授权。详见 LICENSE 文件。

## 贡献

欢迎提交 Issue 和 Pull Request。
