← 回總覽

学生开源 Skill 管理方案:HTML 索引+Mermaid 流程图+Ask Me 技能

📅 2026-07-08 20:08 Berryxia.AI 人工智能 5 分鐘 5050 字 評分: 82
Skill管理 HTML索引 Mermaid流程图 Ask Me技能 开源工具
📌 一句话摘要 在校研究生 Kunkun 分享了通过标签索引、Mermaid 流程图和 Ask Me 决策浓缩来管理大量互相调用 Skill 的实用方法,并已开源。 📝 详细摘要 该推文引用了 Kunkun 的原始推文,详细描述了他为管理众多 Skill 而构建的 HTML 后台:按运行模式(手动/自动)、链路位置、专业领域三维度打标签便于快速筛选;将涉及连环调用的 Skill 绘制成 Mermaid 流程图,根据当前阶段(debug、新功能、合 PR、改设计)快速定位所需 Skill 组;此外还实现了一个“ask me”技能,把“该调用哪个 Skill”的决策浓缩为上下文喂给模型,避免将
Skip to main contentAudio 2 ![Image 1: LogoBest Blogs](https://www.bestblogs.dev/ "BestBlogs.dev")

Search Ctrl+K

Change language Switch ThemeSign In

Curated Daily BriefWeekly PicksTopicsWorld Cup Special SettingsHelp CenterCollapse

Narrow Mode

Student Open-Sources Skill Management Solution: HTML Index + Mermaid Flowchart + Ask Me Skill

Student Open-Sources Skill Management Solution: HTML Index + Mermaid Flowchart + Ask Me Skill

![Image 2: Berryxia.AI](https://www.bestblogs.dev/en/tweets?sourceId=SOURCE_4287449f) Berryxia.AI

@berryxia

现在的年轻小伙子一个比一个生猛啊!

执行力和学习能力真的是拉满~

Kunkun 还是一位在校读研的学生!

分享了自己管理大量互相调用的Skill的实用方法,已经开源在GitHub。

他建了一个HTML后台,把所有Skill按“运行模式(手动/自动)”“链路位置”“专业领域”打标签,方便快速筛选。

同时把涉及连环调用的Skill做成Mermaid流程图,根据当前阶段(debug、新功能、合PR、改设计)快速定位该用哪一组Skill。

另外还做了一个“ask me”技能,负责把“该调用哪个Skill”的决策浓缩成上下文喂给模型,并不是简单的把所有决策全扔给模型自己判断。

本质上是在复杂工程场景下,不完全相信模型能自己管好Skill调用,使用用结构化的索引 + 流程图 + 决策浓缩,来保持人和模型之间的对齐和可控性。

开源地址见评论区👇Show More

!Image 3: Tweet image

!Image 4: KunKun折腾手记

#### KunKun折腾手记

@Karadokuy · 19h ago

分享一下我现在随着 skill 越来越多、并且互相之间都有调用关系的情况下,是如何去管理 skill 并且去协调这些 skill 的使用的。

首先,我会建一个 HTML,它主要分为两块:

第一块是类似后台的索引块。在索引块这边,你可以通过标签去选择、筛选出你想要的 skill。我把标签分为了以下几类:

  • 运行模式:它是需要人手动调用的技能,还是模型自动调用的技能?
  • 链路位置:它是在哪一条链路上,在我的 skill 调用的哪条链路上?
  • 专业领域:它到底是属于什么领域的技能?是做设计、做前端、做后端,还是做一系列工程领域的技能?
我一般会分成这几类,方便我快速地去查看和调用。

再往下,我做了一层非常有意思的设计。我把这里面所有技能中,特别是涉及到连环调用关系的技能,都做成了 Mermaid 图。我可以通过这种最小化的 Mermaid 图(环),首先判断我现在是在哪一个阶段:

• 是要 debug?

• 还是开发一个新功能?

• 还是融合 PR?

• 或者是重新做页面设计?

根据我所处的阶段和对应的环,去找到对应的流程,从而明确自己接下来调用技能的顺序是什么,以及要如何指挥模型去完成对应的任务。

(这一块是专门用来方便我自己根据工作的进度来选择合适的技能组。)

---

对于模型测,我写了一个 ask me 技能,这个是仿照 Matt 的 ask Matt 技能来做的。github.com/mattpocock/ski…

其负责将对应的“需要调用哪个技能”变成浓缩的上下文交给模型,然后模型可以根据自己当前的上下文情况去判断。

这两个结合起来,能带来以下好处:

  • 保证在复杂的工程中,Skill 的调用不会乱(而不是将所有的 Skill 调用全然交给模型)。
  • 避免上下文混乱的同时,也能保证模型一直处于跟我比较对齐的状态,让我能更好地对齐和了解我的工作。Show More
!Image 5: 媒体 1

!Image 6: 媒体 2

!Image 7: 媒体 3

0

0

17

10.9K

Jul 8, 2026, 12:08 PM View on X

5 Replies

2 Retweets

48 Likes

10.2K Views ![Image 8: Berryxia.AI](https://www.bestblogs.dev/en/tweets?sourceid=4287449f) Berryxia.AI @berryxia

Follow

One Sentence Summary

Graduate student Kunkun shares a practical method for managing a large number of interdependent Skills using tag indexing, Mermaid flowcharts, and an Ask Me decision compaction skill, now open-sourced.

Summary

This tweet references Kunkun's original tweet, detailing the HTML dashboard he built to manage numerous Skills: tagging each Skill by operation mode (manual/auto), pipeline position, and domain for quick filtering; mapping Skills with chained calls into Mermaid flowcharts to quickly locate the required Skill group based on the current phase (debug, new feature, merge PR, redesign); and implementing an 'ask me' skill that condenses the decision of 'which Skill to call' into context and feeds it to the model, avoiding handing all decisions to the model itself. The overall approach emphasizes using structured indexing + flowcharts + decision compaction to maintain alignment and controllability between human and model in complex engineering scenarios. The open-source link is in the comments along with a screenshot.

AI Screening

82

Influence Score 22

Published Yesterday

Language

Chinese

Tags

Skill Management

HTML Index

Mermaid Flowchart

Ask Me Skill

Open Source Tool

Make your daily reading actually fit you.A daily brief built from the sources you follow. Get started free HomeDiscoverWorld CupSettings

查看原文 → 發佈: 2026-07-08 20:08:18 收錄: 2026-07-09 12:00:40

🤖 問 AI

針對這篇文章提問,AI 會根據文章內容回答。按 Ctrl+Enter 送出。