By liush2yuxjtu
局域网 insights-share:topic 中心 Good/Bad 并列卡片的静默回灌 + 管理面板。M5 已交付:插件深度重命名 insights-wiki -> insights-share、plugins/<name>/ 布局、share-* 命令与 agent、[share ...] 徽章。M6/M7 交付:latency_cache + early-exit + async hook + SessionStart prefetch + parallel search/adapter(cache-hit p95=1ms)。
按 topic 查看并列 Good/Bad 决策差异,只展示 diff 和适用场景,不挑最优、不做冲突裁决。
安装 insights-share plugin 到当前 Claude Code,并验证安装。替代旧 --install flag。
发布一条新 insight 卡片到 LAN wiki。走 share-validator agent 做发布前校验;支持 --dry-run 不落盘,仅输出校验报告。
管理员入口:列 topic 下并列 Good/Bad 卡片,支持 label_override、archive、open kanban。委托 share-curator agent 执行。非管理员会话不触发。
在 LAN insightsd 中按关键词检索 topic 下并列的 Good/Bad 卡片,展示 top-k 命中。不挑最优、不合并。
管理员侧 wiki 看板 CRUD 代理。列出 topic 下并列 Good/Bad 卡片、发起 label_override、删除违规卡片、打开 kanban dashboard。仅对管理员触发。不做发布前合法性校验(那是 share-validator 的活)。
发布前卡片合法性校验代理。检查 schema 完整、topic_id 存在、applies_when/do_not_apply_when 非空且互斥、label ∈ {good,bad}、label_override 字段三元组一致、raw_log 可达。不做语义质量评估。通过则放行到 daemon POST /insights。
管理员专用:启动 LAN insightsd 守护进程(--start 默认)或打开 control dashboard kanban 做在线 CRUD(--ui)。触发词:启动 wiki 服务器 / 开 wiki / 打开 wiki 管理面板 / wiki kanban。仅分配给管理员。
局域网 insights-share 静默回灌技能。当 Bob 在 Claude Code 里写代码、提问或排障时,自动从 LAN insightsd 守护进程拉取相关 insight 卡片,缓存到 ~/.cache/insights-share/,并通过 Stop hook 把命中卡片以 additionalContext 形式悄悄注入下一轮回复。仅在用户无感的前提下工作,不打断对话流。触发场景:任何技术问题、生产事故、配置调优、性能 debug。
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
demo_insights_share 团队内部 Claude Code plugin。当前主线是 v0.6.1-m7 / M7_LATENCY_DEEP。
权威设计文档:
proposal/proposal_rename_to_insights_share.mdM5 = 深度重命名:
insights-wiki→insights-share、insights-share/plugin/→plugins/insights-share/、 skill / command / agent / statusline / cache 全系换名。数据模型与 daemon API 不变。本 README 只做「怎么装、怎么验」的操作说明,不覆盖设计决策。任何语义歧义以设计文档为准。
plugins/insights-share/
├── .claude-plugin/
│ ├── plugin.json # manifest(槽位声明)
│ └── marketplace.json # 内网 registry 声明
├── agents/
│ ├── share-curator.md # 管理员 CRUD / review agent
│ └── share-validator.md # 发布前校验 agent
├── mcp/
│ └── wiki-server.json # wiki daemon 的 typed tool 契约(含 public-keys;M6 改名候选)
├── skills/
│ ├── insights-share/ # 客户端 skill
│ └── insights-share-server/ # 服务端 skill
├── hooks/
│ └── user-prompt-submit.sh # 迁移自 insights_prefetch.py,保持 today_count 口径
├── statusline/
│ └── insights_share_statusline.sh # [share ✓ N/today]
├── commands/
│ ├── share-install.md # /share-install
│ ├── share-search.md # /share-search <query>
│ ├── share-publish.md # /share-publish [--dry-run]
│ ├── share-review.md # /share-review <topic|card>
│ └── share-diff.md # /share-diff <topic>
├── scripts/
│ ├── self_check.sh # 本地自检
│ └── publish_marketplace.py # 生成发布摘要
└── README.md # 本文件
insights-share、insights-share-serverUserPromptSubmit[share ✓ N/today] / [share ⚠ stale] / [share 🔒 sig-fail]share-curator、share-validator/share-install、/share-search、/share-publish、/share-review、/share-diffmcp/wiki-server.json(内部 tool 名 wiki_* 本轮不动;留 M6_MCP_RENAME)team 字段、API query 和本地安装配置隔离命中范围sig-failscripts/publish_marketplace.py --check/--outputscripts/insights_prefetch.py、scripts/session_start_full_fetch.py、scripts/insights_cache.py、scripts/today_count.py其中 /share-diff 专门对应 proposal_conflict_design.md 的并列 Good/Bad 视图
要求,只输出差异和适用场景,不替用户做最终裁决。
M5 保留两条安装路径:本地 source 模式便于开发,marketplace 模式对应团队内网分发。
从 v0.6.0-m7 开始,insights-share 采用 dev 仓 + plugin/publish 仓
双仓分发:
| 仓 | GitHub 仓库 | 用途 |
|---|---|---|
| dev 仓 | liush2yuxjtu/demo_insights_share | 主开发仓;包含 proposal、demo_codes、validation、历史记录与完整工作树 |
| plugin / publish 仓 | liush2yuxjtu/insights-share-plugin | 轻量分发仓;只放 plugin 运行时需要的 .claude-plugin/、skills、commands、agents、hooks、statusline、mcp、scripts |
含义:
start.demo.sh、proposal 迭代都在 dev 仓claude plugin marketplace add / claude plugin install 的推荐入口是
plugin / publish 仓liush2yuxjtu/insights-share-plugin推荐安装命令:
claude plugin marketplace add liush2yuxjtu/insights-share-plugin
claude plugin install insights-share@insights-share-plugin
# 1. 启 daemon(管理员侧)
bash plugins/insights-share/skills/insights-share-server/scripts/start_server.sh &
# 2. 把本 plugin 目录作为本地 marketplace 加进 Claude Code
claude plugin marketplace add "$(pwd)/plugins/insights-share"
claude plugin install insights-share@insights-share
# 3. 在 Claude Code 里敲斜杠命令
/share-install --team team-a
/share-search postgres pool
/share-diff postgres-pool-exhaustion
/share-publish wiki_tree/database/postgres_pool.md --dry-run --team team-a
claude plugin marketplace add git+ssh://internal/insights-share.git
claude plugin install insights-share
claude plugin uninstall insights-wiki # 旧包
claude plugin install insights-share # 新包
安装后应能看到:
0.6.1-m7share-install/share-search/share-publish/share-review/share-diffshare-curator/share-validatorwiki-server(内部名,M6 改)[share ✓ N/today] / stale=[share ⚠ stale] / sig-fail=[share 🔒 sig-fail]scripts/insights_prefetch.py / scripts/session_start_full_fetch.py 已随 plugin cache 一起安装,不依赖 dev repo checkoutruntime/insights_cli.py / runtime/insightsd/ / runtime/wiki_tree/ 已随 plugin cache 一起安装,不依赖 dev repo checkout 或 demo_codes/.venvnpx claudepluginhub liush2yuxjtu/insights-share-plugin --plugin insights-share局域网 insights-share:topic 中心 Good/Bad 并列卡片的静默回灌 + 管理面板。M5 已交付:插件深度重命名 insights-wiki -> insights-share、plugins/<name>/ 布局、share-* 命令与 agent、[share ...] 徽章。
Team knowledge sharing plugin — silently upload/pull Claude Code insights, traps and lessons learned. LAN teammates share discoveries so others won't repeat the same mistakes.
Team-wide insight sharing for Claude Code instances. v0.2 adds the full Approach-B architecture: silent Stop-hook capture into per-session buffers, two-layer PII filter (regex + haiku) with Gate-0 corpus benchmark, GitHub mirror repo storage with per-repo PAT auth, sub-500ms hot-path retrieval with embedding fallback, and /insight-rate + /insight-flush skills.
Starter skeleton for a new talk-html-powered project. Replace name + description + journey with your own. Generated from LiuShiyuMath/talk-html-plugin v0.4.0.
Upstash Context7 MCP server for up-to-date documentation lookup. Pull version-specific documentation and code examples directly from source repositories into your LLM context.
AI-powered wiki generator for code repositories. Generates comprehensive, Mermaid-rich documentation with dark-mode VitePress sites, onboarding guides, deep research, and source citations. Inspired by OpenDeepWiki and deepwiki-open.
Claude + Obsidian knowledge companion. Sets up a persistent, compounding wiki vault (Karpathy's LLM Wiki pattern). v1.7 "Compound Vault" + v1.8 methodology modes close 5 of 5 priority gaps from the May 2026 compass artifact. Ships: substrate alignment with kepano/obsidian-skills, default Obsidian CLI transport, hybrid retrieval (contextual prefix + BM25 + cosine rerank per Anthropic's Sept 2024 research), per-file advisory locking for multi-writer safety, pre-commit verifier agent, AND methodology modes (LYT / PARA / Zettelkasten / Generic) for first-class organizational support no other Claude+Obsidian competitor offers. v1.7.x audit closure: every BLOCKER + HIGH + MEDIUM + LOW finding from the v1.7.0 audit is CLOSED or DEFERRED-with-rationale. Optional DragonScale Memory extension (log folds, deterministic addresses, semantic tiling lint, boundary-first autoresearch).
Complete AI coding workflow system. Self-correcting memory + persistent FTS5-indexed research wikis + auto-research loop + multi-LLM council on a single SQLite store. 33 skills, 8 agents, 22 commands, 37 hook scripts across 24 events. Cross-agent via SkillKit.
Make your AI agent code with your project's architecture, rules, and decisions.
Comprehensive C4 architecture documentation workflow with bottom-up code analysis, component synthesis, container mapping, and context diagram generation