Files
countbot-ai__countbot/docs/README.md
T

103 lines
8.9 KiB
Markdown
Raw Normal View History

# 文档索引
根目录这个 `docs/` 只保留导航入口,完整文档请直接访问 `countbot.cn`
## 文档首页
- [文档首页](https://countbot.cn/docs)
- [API 参考](https://countbot.cn/docs/api-reference)
- [关于项目](https://countbot.cn/docs/about)
## 快速开始
- [安装与启动](https://countbot.cn/docs/getting-started/installation)
- [配置系统](https://countbot.cn/docs/getting-started/configuration)
- [频道配置](https://countbot.cn/docs/getting-started/ChannelConfig)
- [快速开始](https://countbot.cn/docs/getting-started/quick-start-guide)
- [配置手册](https://countbot.cn/docs/getting-started/configuration-manual)
- [常见问题排查](https://countbot.cn/docs/getting-started/troubleshooting)
- [快速参考](https://countbot.cn/docs/getting-started/quick-reference)
- [使用场景](https://countbot.cn/docs/getting-started/use-cases)
## 核心能力
- [Agent Loop](https://countbot.cn/docs/core/agent-loop)
- [智能体团队](https://countbot.cn/docs/core/agent-teams)
- [团队管理器](https://countbot.cn/docs/core/agent-team-manager)
- [模型提供商](https://countbot.cn/docs/core/providers)
- [工具系统](https://countbot.cn/docs/core/tools)
- [外部编程工具](https://countbot.cn/docs/core/external-coding-tools)
- [记忆系统](https://countbot.cn/docs/core/memory)
- [技能系统](https://countbot.cn/docs/core/skills)
- [技能创建](https://countbot.cn/docs/core/skills-creation)
- [IM 命令](https://countbot.cn/docs/core/im-commands)
- [渠道系统](https://countbot.cn/docs/core/channels)
- [定时任务](https://countbot.cn/docs/core/cron)
- [子代理](https://countbot.cn/docs/core/subagent)
## 实战场景
- [一句话清空收件箱AI邮件分拣的场景拆解与提示词技巧](https://countbot.cn/docs/scenarios/一句话清空收件箱AI邮件分拣的场景拆解与提示词技巧)
- [每天早上一条消息搞定全天AI早报自动生成的场景与调度技巧](https://countbot.cn/docs/scenarios/每天早上一条消息搞定全天AI早报自动生成的场景与调度技巧)
- [帮我做个网页然后上线:从需求描述到生产部署的完整话术](https://countbot.cn/docs/scenarios/帮我做个网页然后上线:从需求描述到生产部署的完整话术)
- [帮我搜一下最近AI有什么新动态多源信息聚合的场景与检索技巧](https://countbot.cn/docs/scenarios/帮我搜一下最近AI有什么新动态多源信息聚合的场景与检索技巧)
- [帮我规划一趟旅行:多技能联动的复合任务拆解与编排技巧](https://countbot.cn/docs/scenarios/帮我规划一趟旅行:多技能联动的复合任务拆解与编排技巧)
- [帮我盯着这件事:定时监控与主动提醒的场景设计与自动化技巧](https://countbot.cn/docs/scenarios/帮我盯着这件事:定时监控与主动提醒的场景设计与自动化技巧)
## 进阶文档
- [智能体系统设计指南](https://countbot.cn/docs/advanced/agent-system-design-guide)
- [HTTP API 流程总览](https://countbot.cn/docs/advanced/http-flows)
- [基础聊天 HTTP 流程](https://countbot.cn/docs/advanced/http-flows/basic-chat-http-flow)
- [工具调用 HTTP 流程](https://countbot.cn/docs/advanced/http-flows/tool-call-http-flow)
- [系统提示词构建流程](https://countbot.cn/docs/advanced/http-flows/system-prompt-construction)
- [多轮对话流程](https://countbot.cn/docs/advanced/http-flows/multi-turn-conversation)
- [SSE 流式响应格式](https://countbot.cn/docs/advanced/http-flows/sse-streaming-format)
- [WebSocket 通知格式](https://countbot.cn/docs/advanced/http-flows/websocket-notifications)
- [HTTP API 深度解析](https://countbot.cn/docs/advanced/http-api-deep-dive)
- [WebSocket 实时通信](https://countbot.cn/docs/advanced/websocket)
- [部署与运维](https://countbot.cn/docs/advanced/deployment)
- [远程访问](https://countbot.cn/docs/advanced/remote-access)
- [安全体系](https://countbot.cn/docs/advanced/security)
- [认证配置](https://countbot.cn/docs/advanced/auth)
- [提示词优化指南](https://countbot.cn/docs/advanced/prompt-optimization-guide)
- [专业提示词工程](https://countbot.cn/docs/advanced/professional-prompt-engineering)
## 技术文章
- [系统架构全景countbot多层模块化设计解析](https://countbot.cn/docs/articles/系统架构全景countbot多层模块化设计解析)
- [Agent Loop深度剖析ReAct循环的工程实现](https://countbot.cn/docs/articles/Agent%20Loop深度剖析ReAct循环的工程实现)
- [多LLM提供商统一接入Provider模式与兼容接口实践](https://countbot.cn/docs/articles/多LLM提供商统一接入Provider模式与兼容接口实践)
- [工具系统设计从抽象基类到JSON Schema的完整实现](https://countbot.cn/docs/articles/工具系统设计从抽象基类到JSON%20Schema的完整实现)
- [多渠道消息接入:统一抽象与消息路由机制](https://countbot.cn/docs/articles/多渠道消息接入:统一抽象与消息路由机制)
- [WebSocket实时通信流式响应与工具调用通知](https://countbot.cn/docs/articles/WebSocket实时通信流式响应与工具调用通知)
- [记忆系统:基于文件的行式记忆存储与自动总结](https://countbot.cn/docs/articles/记忆系统:基于文件的行式记忆存储与自动总结)
- [技能插件系统热插拔的Skills扩展机制](https://countbot.cn/docs/articles/技能插件系统热插拔的Skills扩展机制)
- [上下文工程:系统提示词构建与对话历史管理](https://countbot.cn/docs/articles/上下文工程:系统提示词构建与对话历史管理)
- [安全体系从API密钥加密到Shell命令沙箱](https://countbot.cn/docs/articles/安全体系从API密钥加密到Shell命令沙箱)
- [定时任务系统Cron调度器的精确按需唤醒设计](https://countbot.cn/docs/articles/定时任务系统Cron调度器的精确按需唤醒设计)
- [子代理系统:后台异步任务的创建与管理](https://countbot.cn/docs/articles/子代理系统:后台异步任务的创建与管理)
- [Heartbeat主动问候让AI助手具备情感温度](https://countbot.cn/docs/articles/Heartbeat主动问候让AI助手具备情感温度)
- [配置管理:数据库驱动的动态配置系统](https://countbot.cn/docs/articles/配置管理:数据库驱动的动态配置系统)
- [前端架构Vue3+TypeScript+Pinia的现代化实践](https://countbot.cn/docs/articles/前端架构Vue3+TypeScript+Pinia的现代化实践)
- [会话管理:多轮对话的持久化与生命周期](https://countbot.cn/docs/articles/会话管理:多轮对话的持久化与生命周期)
- [企业级消息队列:优先级调度与死信处理](https://countbot.cn/docs/articles/企业级消息队列:优先级调度与死信处理)
- [Web搜索与网页抓取AI Agent的互联网触角](https://countbot.cn/docs/articles/Web搜索与网页抓取AI%20Agent的互联网触角)
- [令牌桶限流算法保护AI服务的流量控制实践](https://countbot.cn/docs/articles/令牌桶限流算法保护AI服务的流量控制实践)
- [从桌面到生产CountBot的部署架构与运维实践](https://countbot.cn/docs/articles/从桌面到生产CountBot的部署架构与运维实践)
- [深度解析AgentLoop状态机从流式chunk到多轮工具编排的完整生命周期](https://countbot.cn/docs/articles/深度解析AgentLoop状态机从流式chunk到多轮工具编排的完整生命周期)
- [Shell命令沙箱的攻防博弈路径穿越检测与编码陷阱](https://countbot.cn/docs/articles/Shell命令沙箱的攻防博弈路径穿越检测与编码陷阱)
- [WebSocket连接管理器深度剖析会话绑定、流式缓冲与并发安全](https://countbot.cn/docs/articles/WebSocket连接管理器深度剖析会话绑定、流式缓冲与并发安全)
- [上下文工程的精密手术:系统提示词组装、多模态注入与记忆融合](https://countbot.cn/docs/articles/上下文工程的精密手术:系统提示词组装、多模态注入与记忆融合)
- [渠道消息处理全链路从入站消息到Agent响应的九个关键阶段](https://countbot.cn/docs/articles/渠道消息处理全链路从入站消息到Agent响应的九个关键阶段)
- [AI Agent实战应用场景全景从自动整理邮件到设计网页并部署上线](https://countbot.cn/docs/articles/AI%20Agent实战应用场景全景从自动整理邮件到设计网页并部署上线)
- [中国大模型厂商CodingPlan接入指南](https://countbot.cn/docs/articles/中国大模型厂商CodingPlan接入指南)
- [为什么 CountBot 需要当前架构](https://countbot.cn/docs/articles/为什么-countbot-需要-0-5-0-架构)
## 版本发布
- [v0.6.0](https://countbot.cn/docs/releases/v0.6.0)
- [v0.5.0](https://countbot.cn/docs/releases/v0.5.0)
- [v0.4.0](https://countbot.cn/docs/releases/v0.4.0)
- [v0.3.0](https://countbot.cn/docs/releases/v0.3.0)