Agent skill · AI & Agents

zhimeng-agent

zhimeng's Agent 智能助手操作技能。 触发场景:用户提到"问知识库"、"发日报"、"检查Agent"、"重建索引"、"知识问答"等。

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill zhimeng-agent-muzhicaomingwang-ai-ideas-173879de --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/agent/zhimeng-agent-muzhicaomingwang-ai-ideas-173879de/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# zhimeng's Agent 操作技能 ## 概述 zhimeng's Agent 是基于 Obsidian 知识库的 RAG 智能问答助手,由 Claude Opus 4.5 驱动。支持知识库问答、日报同步、飞书消息推送等功能。 ## 服务信息 | 项目 | 值 | |------|-----| | 服务地址 | `http://localhost:8001` | | 项目路径 | `/Users/qitmac001395/workspace/QAL/ideas/apps/zhimeng-agent` | | 知识库路径 | `/Users/qitmac001395/Documents/Obsidian Vault` | | 向量数据库 | ChromaDB (`data/chroma/`) | | LLM 模型 | `anthropic/claude-sonnet-4-20250514` | ## 核心能力 | 能力 | 端点 | 用途 | 示例触发词 | |------|------|------|-----------| | 知识问答 | `POST /ask` | 基于知识库的 RAG 问答 | "问知识库"、"查一下" | | 健康检查 | `GET /health` | 检查服务状态和文档数量 | "检查Agent"、"服务状态" | | 重建索引 | `POST /index` | 重新索引 Obsidian 文档 | "重建索引"、"更新知识库" | | 飞书Webhook | `POST /webhook/feishu` | 接收飞书消息事件 | - | ## API 详细说明 ### 1. 问答接口 (`POST /ask`) **请求体**: ```json { "question": "用户问题", "top_k": 5, "include_sources": true, "filter_folder": null, "user_id": "用户唯一标识" } ``` **响应体**: ```json { "answer": "回答内容", "sources": [ {"file": "文件名.md", "folder": "文件夹", "relevance": 0.85} ], "tokens_used": 1234 } ``` **参数说明**: - `question` (必填): 用户问题 - `top_k` (可选, 默认5): 检索文档数量 (1-20) - `include_sources` (可选, 默认true): 是否返回来源 - `filter_folder` (可选): 限定搜索的文件夹 - `user_id` (可选): 用户标识,用于对话记忆 ### 2. 健康检查 (`GET /health`)

What's inside
Steps it walks through
  1. 概述
  2. 服务信息
  3. 核心能力
  4. API 详细说明
  5. 1. 问答接口 (POST /ask)
  6. 2. 健康检查 (GET /health)
  7. 3. 重建索引 (POST /index)
  8. 标准操作流程 (SOP)
  9. SOP 1: 知识库问答
  10. SOP 2: 日报同步到飞书
  11. SOP 3: 重建知识库索引
  12. SOP 4: 启动/停止服务
  13. 与其他技能的集成
  14. 集成 feishu-messaging
Ships with 1 file
  • metadata.json
Commands it runs
cd /Users/qitmac001395/workspace/QAL/ideas/apps/zhimeng-agent
poetry run uvicorn src.main:app --host 0.0.0.0 --port 8001 --reload
poetry run python src/feishu_ws.py
nohup poetry run uvicorn src.main:app --host 0.0.0.0 --port 8001 > /tmp/zhimeng-agent.log 2>&1 &
nohup poetry run python src/feishu_ws.py > feishu_ws.log 2>&1 &
More from claude-skill-registry
All skills →
About this skill
What does the zhimeng-agent skill do?

zhimeng's Agent 智能助手操作技能。 触发场景:用户提到"问知识库"、"发日报"、"检查Agent"、"重建索引"、"知识问答"等。

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill zhimeng-agent-muzhicaomingwang-ai-ideas-173879de --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going