# Add to your Claude Code skills
git clone https://github.com/PGshen/thinking-mapLast scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T15:52:56.674Z",
"npmAuditRan": true,
"pipAuditRan": true
}thinking-map is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by PGshen. 一个基于思维导图的智能思考辅助系统. It has 177 GitHub stars.
Yes. thinking-map passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/PGshen/thinking-map" and add it to your Claude Code skills directory (see the Installation section above).
thinking-map is primarily written in Go. It is open-source under PGshen on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh thinking-map against similar tools.
No comments yet. Be the first to share your thoughts!
一个基于思维导图的智能思考辅助系统,用结构化可视化与 AI 代理协作,帮助你更清晰地梳理问题、探索方案与记录知识。

Frontend
Backend
博客(docs/blog)
技术文档(docs)
thinking-map/
├── server/ # 后端服务 (Go)
├── web/ # 前端应用 (Next.js)
├── docs/ # 项目文档与博客
├── docker/ # Docker 与 Compose 配置
└── logs/ # 日志文件
docker/ 目录下):cd docker
cp .env.example .env
# 编辑 .env,填入你的 AI 服务密钥(如 OPENAI/DeepSeek/Claude)和 tavily API 密钥
docker-compose up -d --build
# 查看状态与日志
docker-compose ps
docker-compose logs -f
# 启动 / 停止
docker-compose up -d
docker-compose down
# 重新构建
docker-compose up -d --build
# 查看日志/进入容器
docker-compose logs -f [service_name]
docker-compose exec [service_name] sh
# 清理数据卷(会删除所有数据)
docker-compose down -v
cd docker
docker-compose up -d postgres redis
# 后端本地启动
cd ../server
go mod download
go run cmd/server/main.go
# 前端本地启动
cd ../web
pnpm install
pnpm run dev
后端(server)
cd server
go mod download
# 编辑 configs/config.local.yaml,设置 PostgreSQL 与 Redis 连接信息
# 启动服务
go run cmd/server/main.go
前端(web)
cd web
pnpm install
pnpm run dev
提示:若本地未安装数据库与缓存,可按上文先启动
docker-compose up -d postgres redis,然后本地运行前后端。
Apache-2.0 license