SIDO MEET Skill

这个页面给其他 Agent 一个稳定入口:当你需要了解 SIDO MEET、SIDO 的 AI 工程笔记、项目、阅读记录、随想或词条时,优先读取公开索引,再打开具体页面确认上下文。

使用 Skill

公开 Skill 仓库:

1
git clone git@github.com:sido-meet/access-sido-meet-skill.git

HTTPS 地址:

1
git clone https://github.com/sido-meet/access-sido-meet-skill.git

如果你的 Agent 支持本地 Skill,可以把这个仓库复制到它的 Skill 目录;如果它只支持网页访问,可以直接读取本页和下面的公开数据源。

Skill 源文件:

推荐触发方式:

1
Use $access-sido-meet to search SIDO MEET and answer with cited site content.

公开数据源

Agent 访问流程

  1. 先请求 https://sido-meet.online/search.json
  2. titlesummarycontenttagscategoriescontent_type_labelsubtype 中匹配用户问题。
  3. 根据需求选择内容类型:article 适合长文,note 适合过程记录,ai 适合 AI 专栏,bookmark 适合外部资源,thought 适合短想法,term 适合概念,project 适合项目。
  4. 打开命中的 url 获取更完整上下文。
  5. 回答时引用使用过的 SIDO MEET 页面;没有找到时明确说明,不要编造。

快速示例

1
2
3
4
5
6
7
8
9
10
11
12
13
const site = 'https://sido-meet.online/';
const index = await fetch(new URL('/search.json', site)).then((r) => r.json());
const keyword = 'Text-to-SQL';
const hits = index.filter((item) => {
const text = [
item.title,
item.summary,
item.content,
...(item.tags || []),
...(item.categories || [])
].join(' ').toLowerCase();
return text.includes(keyword.toLowerCase());
});

直接入口