@yottameta/yotta-skills 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/LICENSE +21 -0
- package/NOTICE +13 -0
- package/README.md +144 -0
- package/README.zh-CN.md +156 -0
- package/SKILL.md +117 -0
- package/assets/banner.png +0 -0
- package/bin/yotta-skills.js +484 -0
- package/install.sh +132 -0
- package/package.json +45 -0
- package/references/install-flow.md +68 -0
- package/references/skill-list.md +40 -0
- package/references/tutorial.md +106 -0
- package/skills.json +161 -0
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# 安装器工作原理(install-flow)
|
|
2
|
+
|
|
3
|
+
> 面向想了解 yotta-skills 内部机制的开发者;日常使用请读 `SKILL.md` 或中文教程
|
|
4
|
+
> (`references/tutorial.md`)。
|
|
5
|
+
|
|
6
|
+
## 总体流程
|
|
7
|
+
|
|
8
|
+
对每个待装技能:
|
|
9
|
+
|
|
10
|
+
1. 读清单(`skills.json`,默认随包;`YOTTA_SKILLS_MANIFEST` 可覆盖);
|
|
11
|
+
2. `npm pack <pkg>@<spec> --pack-destination <临时目录>`;
|
|
12
|
+
3. 系统 `tar -xzf` 解压到临时目录(产物应有 `SKILL.md`);
|
|
13
|
+
4. 元信装前摘要(若引擎可用;`--skip-scan` 关闭);
|
|
14
|
+
5. 删除目标 `<dest>/<slug>` 后重新复制(跳过规则见下);
|
|
15
|
+
6. 汇总报告:✔ 成功 / - 跳过(已是最新)/ ✘ 失败;有失败项时退出码 1。
|
|
16
|
+
|
|
17
|
+
## 复制跳过规则
|
|
18
|
+
|
|
19
|
+
- 顶层跳过:`package.json` / `bin` / `node_modules` / `.git` / `__pycache__`;
|
|
20
|
+
- 任意层级跳过:`.pytest_cache` / `.mypy_cache` 目录、`*.pyc` / `*.pyo` 文件。
|
|
21
|
+
|
|
22
|
+
因此装进技能目录的是「技能本体」(SKILL.md / references / scripts 等),不含 npm
|
|
23
|
+
安装器自身、测试夹具与 Python 字节码缓存。
|
|
24
|
+
|
|
25
|
+
## 幂等与版本判断
|
|
26
|
+
|
|
27
|
+
- 读取目标 `<dest>/<slug>/SKILL.md` 的 frontmatter `version`;
|
|
28
|
+
- 与清单 `version` 一致 → 跳过(幂等:第二次安装 22 个全部跳过);
|
|
29
|
+
- `--force` 强制重装;`update` 对「缺失 / 版本不一致」的技能重装。
|
|
30
|
+
|
|
31
|
+
## 版本策略
|
|
32
|
+
|
|
33
|
+
- 默认 range:spec = `<pkg>@<major>.x`(如 `0.x`),`npm pack` 取同 major 最新 patch;
|
|
34
|
+
- `--pin`:spec = `<pkg>@<清单精确版本>`。
|
|
35
|
+
|
|
36
|
+
## npm 解析(Windows)
|
|
37
|
+
|
|
38
|
+
- 优先:`where.exe npm.cmd` → 读同目录 `node_modules/npm/bin/npm-cli.js` → 用 node 直接执行
|
|
39
|
+
(npm.cmd 直跑在 Windows 有 EINVAL,`cmd /c` 引号脆弱;npm-cli.js 直跑无 shell 变量坑);
|
|
40
|
+
- `--npm` / `YOTTA_SKILLS_NPM`:`.js` → node 执行;`.cmd/.bat` → 同样解析 npm-cli.js;
|
|
41
|
+
其它 → 直接执行;
|
|
42
|
+
- `YOTTA_SKILLS_NPM_FLAGS` 追加到 `npm pack` 参数。
|
|
43
|
+
|
|
44
|
+
## 元信装前摘要
|
|
45
|
+
|
|
46
|
+
- 引擎查找:`--verify` → `YOTTA_SKILLS_VERIFY` → `<dest>/yotta-verify/scripts/yotta_verify.py`;
|
|
47
|
+
- python 查找:`--python` → `YOTTA_SKILLS_PYTHON` → `python3` / `python` / `py`(win32);
|
|
48
|
+
- 执行:`python -B <engine> scan <解压目录> --json`(`-B` 禁止写 `__pycache__`,防止污染
|
|
49
|
+
引擎所在目录);
|
|
50
|
+
- 输出 verdict + counts(critical / high / medium / low / info);DO NOT INSTALL 额外提示
|
|
51
|
+
人工复核;仅摘要、不拦截。
|
|
52
|
+
|
|
53
|
+
## 退出码
|
|
54
|
+
|
|
55
|
+
| 退出码 | 含义 |
|
|
56
|
+
|---|---|
|
|
57
|
+
| 0 | 成功(含全部跳过) |
|
|
58
|
+
| 1 | 安装 / 更新存在失败项 |
|
|
59
|
+
| 2 | 用法错误(未知参数 / 未知技能 / 未收录智能体) |
|
|
60
|
+
| 4 | 未指定目标且当前目录未检测到项目级技能目录 |
|
|
61
|
+
|
|
62
|
+
## 目标目录解析
|
|
63
|
+
|
|
64
|
+
- `--dir`:直接使用(技能落在 `<dir>/<slug>`);
|
|
65
|
+
- `--agent`:查内置 17 智能体表(codex 特判 `$CODEX_HOME/skills`;opencode 特判
|
|
66
|
+
`$XDG_CONFIG_HOME/opencode/skills`;其余 `~/.<agent>/skills` 或 `~/.config/...`);
|
|
67
|
+
- 都未指定:检测当前目录是否存在项目级技能目录(`.claude/skills`、`.codex/skills`、
|
|
68
|
+
`.agents/skills` 等 17 个),存在则用之;否则退出码 4。
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# 全家技能清单(22 个)
|
|
2
|
+
|
|
3
|
+
> 机器权威源:`skills.json`(随包分发);本文件为人工可读副本,新技能发布后须同步更新
|
|
4
|
+
> `skills.json`(登记表为内部台账,不随包分发)。清单更新日期:2026-08-29。
|
|
5
|
+
|
|
6
|
+
| slug | 中文名 | npm 包 | 清单版本 | 说明 |
|
|
7
|
+
|---|---|---|---|---|
|
|
8
|
+
| `yotta-anti-shallow` | 元谨 | `@yottameta/yotta-anti-shallow` | 1.3.4 | 防 AI 敷衍规则引擎(深入分析/根因追溯时激活) |
|
|
9
|
+
| `yotta-code-quality` | 元质 | `@yottameta/yotta-code-quality` | 0.3.4 | 结对式代码质量评审(十二类腐化风险 + 0-100 健康分) |
|
|
10
|
+
| `yotta-workflow` | 元序 | `@yottameta/yotta-workflow` | 0.2.6 | 跨会话/跨项目通用工作流协议(状态就近存 .workflow) |
|
|
11
|
+
| `yotta-memory` | 元忆 | `@yottameta/yotta-memory` | 0.8.4 | 有权限边界的文件式智能体记忆(FACT/PREF/BOUND/COMMIT) |
|
|
12
|
+
| `yotta-learn` | 元习 | `@yottameta/yotta-learn` | 0.1.4 | 学习闭环 CLI:错误/纠正/洞见沉淀为 .learnings/ 条目 |
|
|
13
|
+
| `yotta-security-audit` | 元安 | `@yottameta/yotta-security-audit` | 0.1.7 | 安全扫描引擎:13 类检测器 + 系统安全基线 |
|
|
14
|
+
| `yotta-vetter` | 元审 | `@yottameta/yotta-vetter` | 0.1.5 | 安全审查协议:四阶段 review + SAFE TO INSTALL 判定 |
|
|
15
|
+
| `yotta-recon` | 元析 | `@yottameta/yotta-recon` | 0.1.5 | 跨智能体网络侦察:零依赖端口/服务/版本指纹探测 |
|
|
16
|
+
| `yotta-guardian` | 元盾 | `@yottameta/yotta-guardian` | 0.1.2 | 跨智能体危险调用拦截护栏:确定性规则 + 可插拔意图验证 |
|
|
17
|
+
| `yotta-humanize` | 元真 | `@yottameta/yotta-humanize` | 0.1.2 | 去 AI 味中文写作编辑:检测器引擎 |
|
|
18
|
+
| `yotta-logs` | 元史 | `@yottameta/yotta-logs` | 0.2.2 | 跨智能体历史会话 / 记忆日志检索 |
|
|
19
|
+
| `yotta-security-testing` | 元测 | `@yottameta/yotta-security-testing` | 0.1.0 | 有纪律的 AI 安全测试方法论 + Scope Guard 五道防线 |
|
|
20
|
+
| `yotta-agent-hardening` | 元安全 | `@yottameta/yotta-agent-hardening` | 0.1.0 | 防御向 AI 智能体自身安全加固(配置面静态扫描三域) |
|
|
21
|
+
| `yotta-skill-creator` | 元造 | `@yottameta/yotta-skill-creator` | 0.1.0 | 工坊「造」:端到端造技能脚手架 |
|
|
22
|
+
| `yotta-publish-guard` | 元守 | `@yottameta/yotta-publish-guard` | 0.1.1 | 工坊「守」:发布前守门(版本四件对齐 + 三通道查重) |
|
|
23
|
+
| `yotta-logwatch` | 元察 | `@yottameta/yotta-logwatch` | 0.2.7 | 安全日志分析检测引擎(攻击链识别/告警聚合) |
|
|
24
|
+
| `yotta-intel` | 元情 | `@yottameta/yotta-intel` | 0.1.1 | 威胁情报 IOC 提取与规范化引擎(STIX-lite) |
|
|
25
|
+
| `yotta-secret` | 元钥 | `@yottameta/yotta-secret` | 0.1.2 | 密钥 / 凭据泄露源头扫描引擎 |
|
|
26
|
+
| `yotta-chain` | 元链 | `@yottameta/yotta-chain` | 0.1.2 | 供应链依赖校验引擎 |
|
|
27
|
+
| `yotta-triage` | 元鉴 | `@yottameta/yotta-triage` | 0.1.1 | 恶意样本静态初筛引擎(哈希/熵/字符串/PE-ELF) |
|
|
28
|
+
| `yotta-prompt` | 元引 | `@yottameta/yotta-prompt` | 0.1.1 | 意图澄清 + 生态入口(常驻注入,map 串联元阁全家) |
|
|
29
|
+
| `yotta-verify` | 元信 | `@yottameta/yotta-verify` | 0.1.1 | 装前安全扫描器 + audited 徽章(prompt injection + 危险模式) |
|
|
30
|
+
|
|
31
|
+
## 家族分布
|
|
32
|
+
|
|
33
|
+
- 安全与护栏(12):元安 / 元审 / 元析 / 元盾 / 元测 / 元安全 / 元察 / 元情 / 元钥 / 元链 / 元鉴 / 元信
|
|
34
|
+
- 质量与工程(4):元谨 / 元质 / 元造 / 元守
|
|
35
|
+
- 记忆与上下文(3):元忆 / 元史 / 元习
|
|
36
|
+
- 写作与表达(1):元真
|
|
37
|
+
- 工作流(1):元序
|
|
38
|
+
- 入口与引导(1):元引
|
|
39
|
+
|
|
40
|
+
合计 22 个已发布技能;本安装器自身(yotta-skills / 元阁)归「分发与安装」家族。
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# 元阁中文教程(新手全流程)
|
|
2
|
+
|
|
3
|
+
> 配套技能:元阁 yotta-skills(全家技能一键安装 CLI,依赖 Node.js 18+ / npm / 系统 tar)。
|
|
4
|
+
> 目标:把元阁已发布的 22 个 `yotta-*` 技能一次装进指定智能体或目录,并学会预览、更新、
|
|
5
|
+
> 锁版本与常见排查。
|
|
6
|
+
|
|
7
|
+
## 1. 教程目标与前置
|
|
8
|
+
|
|
9
|
+
- 学会 `--list` / `install` / `update` / `--dry-run` / `--pin` / `--force` 的用法;
|
|
10
|
+
- 理解版本策略(range 与 --pin)与幂等行为;
|
|
11
|
+
- 掌握元信装前摘要的开关与配置;
|
|
12
|
+
- 前置:Node.js 18+、npm、系统 tar(Windows 10+ 自带);网络可访问 npm 注册表
|
|
13
|
+
(国内可配置镜像或代理)。
|
|
14
|
+
|
|
15
|
+
## 2. 查看全家清单
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npx -y @yottameta/yotta-skills --list
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
输出 22 个技能:slug / 中文名 / 包名与版本范围 / 清单版本 / 一句话说明。
|
|
22
|
+
确认某个技能在不在清单里,可加技能名过滤:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
npx -y @yottameta/yotta-skills --list yotta-memory
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## 3. 安装全家到智能体
|
|
29
|
+
|
|
30
|
+
推荐用 `--agent` 装到指定智能体默认用户级目录(如 Codex):
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
npx -y @yottameta/yotta-skills install --agent codex
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
支持 17 个智能体键名:`claude` / `cursor` / `codex` / `gemini` / `goose` / `amp` /
|
|
37
|
+
`opencode` / `windsurf` / `workbuddy` / `kiro` / `trae` / `trae-cn` / `qwen` / `comate` /
|
|
38
|
+
`codebuddy` / `kimi` / `agents`。未收录的智能体用 `--dir` 指到它的技能目录。
|
|
39
|
+
|
|
40
|
+
## 4. 安装到任意目录
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
npx -y @yottameta/yotta-skills install --dir ~/my-skills
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
每个技能落在 `<dir>/<slug>`(如 `~/my-skills/yotta-memory/`)。
|
|
47
|
+
只装个别技能:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
npx -y @yottameta/yotta-skills install yotta-memory yotta-verify --dir ~/my-skills
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## 5. 更新已装技能
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
npx -y @yottameta/yotta-skills update --agent codex
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
- 缺失的技能 → 补装;版本不一致的技能 → 按当前版本策略重装;
|
|
60
|
+
- 已是最新的技能显示「已是最新」并跳过(幂等)。
|
|
61
|
+
|
|
62
|
+
## 6. 安装前预览
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
npx -y @yottameta/yotta-skills --dry-run
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
dry-run 只打印将要执行的清单(含目标与版本策略),不联网、不写任何文件。
|
|
69
|
+
|
|
70
|
+
## 7. 版本策略:range 与 --pin
|
|
71
|
+
|
|
72
|
+
- 默认 range:按同 major 最新 patch(如 `0.x`),维护性更新随最新;
|
|
73
|
+
- 想完全可复现 → 加 `--pin` 锁死清单精确版本:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
npx -y @yottameta/yotta-skills install --agent codex --pin
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## 8. 强制重装与跳过元信摘要
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
npx -y @yottameta/yotta-skills install --agent codex --force # 已是最新也重装
|
|
83
|
+
npx -y @yottameta/yotta-skills install --agent codex --skip-scan # 跳过装前摘要
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
元信(yotta-verify)已安装时默认会对每个待装技能输出装前摘要(verdict + 计数),仅提示
|
|
87
|
+
不拦截;verdict 为 DO NOT INSTALL 时会提示人工复核。
|
|
88
|
+
|
|
89
|
+
## 9. 验证安装结果
|
|
90
|
+
|
|
91
|
+
- 看安装汇总:成功 N / 跳过 N / 失败 N;
|
|
92
|
+
- 抽查技能目录:`ls ~/.codex/skills/yotta-memory/SKILL.md`;
|
|
93
|
+
- 复核版本:每个技能 SKILL.md 的 frontmatter `version` 应与 `--list` 一致(这也是幂等
|
|
94
|
+
判断的依据)。
|
|
95
|
+
|
|
96
|
+
## 10. 常见问题
|
|
97
|
+
|
|
98
|
+
- **npmmirror 全新包 404**:镜像同步有延迟。设置环境变量 `YOTTA_SKILLS_NPM_FLAGS` 为
|
|
99
|
+
`--registry=https://registry.npmjs.org/`(国内需代理)再执行,或等待镜像缓存后重试。
|
|
100
|
+
- **`--agent` 报未收录**:改用 `--dir` 指到该智能体的技能目录(`.agents/skills` 不是
|
|
101
|
+
通用目录)。
|
|
102
|
+
- **某技能安装失败**:汇总报告给出失败原因;可单装该技能排查:
|
|
103
|
+
`install <slug> --dir <path>`。
|
|
104
|
+
- **目标未指定**:当前目录没有项目级技能目录时报错(退出码 4),加 `--agent` 或
|
|
105
|
+
`--dir`。
|
|
106
|
+
- **已有旧版本**:默认按 range 覆盖升级到最新 patch;`--pin` 则锁定清单版本。
|
package/skills.json
ADDED
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manifestVersion": 1,
|
|
3
|
+
"updated": "2026-08-29",
|
|
4
|
+
"note": "清单同步要求:每次技能发布新版本后,按 YottaSkills 技能登记表更新本文件(登记表为内部台账,不随包分发)。",
|
|
5
|
+
"skills": [
|
|
6
|
+
{
|
|
7
|
+
"slug": "yotta-anti-shallow",
|
|
8
|
+
"name": "元谨",
|
|
9
|
+
"pkg": "@yottameta/yotta-anti-shallow",
|
|
10
|
+
"version": "1.3.4",
|
|
11
|
+
"desc": "防 AI 敷衍规则引擎(深入分析/根因追溯时激活)"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"slug": "yotta-code-quality",
|
|
15
|
+
"name": "元质",
|
|
16
|
+
"pkg": "@yottameta/yotta-code-quality",
|
|
17
|
+
"version": "0.3.4",
|
|
18
|
+
"desc": "结对式代码质量评审(十二类腐化风险 + 0-100 健康分)"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"slug": "yotta-workflow",
|
|
22
|
+
"name": "元序",
|
|
23
|
+
"pkg": "@yottameta/yotta-workflow",
|
|
24
|
+
"version": "0.2.6",
|
|
25
|
+
"desc": "跨会话/跨项目通用工作流协议(状态就近存 .workflow)"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"slug": "yotta-memory",
|
|
29
|
+
"name": "元忆",
|
|
30
|
+
"pkg": "@yottameta/yotta-memory",
|
|
31
|
+
"version": "0.8.4",
|
|
32
|
+
"desc": "有权限边界的文件式智能体记忆(FACT/PREF/BOUND/COMMIT)"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"slug": "yotta-learn",
|
|
36
|
+
"name": "元习",
|
|
37
|
+
"pkg": "@yottameta/yotta-learn",
|
|
38
|
+
"version": "0.1.4",
|
|
39
|
+
"desc": "学习闭环 CLI:错误/纠正/洞见沉淀为 .learnings/ 条目"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"slug": "yotta-security-audit",
|
|
43
|
+
"name": "元安",
|
|
44
|
+
"pkg": "@yottameta/yotta-security-audit",
|
|
45
|
+
"version": "0.1.7",
|
|
46
|
+
"desc": "安全扫描引擎:13 类检测器 + 系统安全基线"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"slug": "yotta-vetter",
|
|
50
|
+
"name": "元审",
|
|
51
|
+
"pkg": "@yottameta/yotta-vetter",
|
|
52
|
+
"version": "0.1.5",
|
|
53
|
+
"desc": "安全审查协议:四阶段 review + SAFE TO INSTALL 判定"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"slug": "yotta-recon",
|
|
57
|
+
"name": "元析",
|
|
58
|
+
"pkg": "@yottameta/yotta-recon",
|
|
59
|
+
"version": "0.1.5",
|
|
60
|
+
"desc": "跨智能体网络侦察:零依赖端口/服务/版本指纹探测"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"slug": "yotta-guardian",
|
|
64
|
+
"name": "元盾",
|
|
65
|
+
"pkg": "@yottameta/yotta-guardian",
|
|
66
|
+
"version": "0.1.2",
|
|
67
|
+
"desc": "跨智能体危险调用拦截护栏:确定性规则 + 可插拔意图验证"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"slug": "yotta-humanize",
|
|
71
|
+
"name": "元真",
|
|
72
|
+
"pkg": "@yottameta/yotta-humanize",
|
|
73
|
+
"version": "0.1.2",
|
|
74
|
+
"desc": "去 AI 味中文写作编辑:检测器引擎"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"slug": "yotta-logs",
|
|
78
|
+
"name": "元史",
|
|
79
|
+
"pkg": "@yottameta/yotta-logs",
|
|
80
|
+
"version": "0.2.2",
|
|
81
|
+
"desc": "跨智能体历史会话 / 记忆日志检索"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"slug": "yotta-security-testing",
|
|
85
|
+
"name": "元测",
|
|
86
|
+
"pkg": "@yottameta/yotta-security-testing",
|
|
87
|
+
"version": "0.1.0",
|
|
88
|
+
"desc": "有纪律的 AI 安全测试方法论 + Scope Guard 五道防线"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"slug": "yotta-agent-hardening",
|
|
92
|
+
"name": "元安全",
|
|
93
|
+
"pkg": "@yottameta/yotta-agent-hardening",
|
|
94
|
+
"version": "0.1.0",
|
|
95
|
+
"desc": "防御向 AI 智能体自身安全加固(配置面静态扫描三域)"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"slug": "yotta-skill-creator",
|
|
99
|
+
"name": "元造",
|
|
100
|
+
"pkg": "@yottameta/yotta-skill-creator",
|
|
101
|
+
"version": "0.1.0",
|
|
102
|
+
"desc": "工坊「造」:端到端造技能脚手架"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"slug": "yotta-publish-guard",
|
|
106
|
+
"name": "元守",
|
|
107
|
+
"pkg": "@yottameta/yotta-publish-guard",
|
|
108
|
+
"version": "0.1.1",
|
|
109
|
+
"desc": "工坊「守」:发布前守门(版本四件对齐 + 三通道查重)"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"slug": "yotta-logwatch",
|
|
113
|
+
"name": "元察",
|
|
114
|
+
"pkg": "@yottameta/yotta-logwatch",
|
|
115
|
+
"version": "0.2.7",
|
|
116
|
+
"desc": "安全日志分析检测引擎(攻击链识别/告警聚合)"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"slug": "yotta-intel",
|
|
120
|
+
"name": "元情",
|
|
121
|
+
"pkg": "@yottameta/yotta-intel",
|
|
122
|
+
"version": "0.1.1",
|
|
123
|
+
"desc": "威胁情报 IOC 提取与规范化引擎(STIX-lite)"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"slug": "yotta-secret",
|
|
127
|
+
"name": "元钥",
|
|
128
|
+
"pkg": "@yottameta/yotta-secret",
|
|
129
|
+
"version": "0.1.2",
|
|
130
|
+
"desc": "密钥 / 凭据泄露源头扫描引擎"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"slug": "yotta-chain",
|
|
134
|
+
"name": "元链",
|
|
135
|
+
"pkg": "@yottameta/yotta-chain",
|
|
136
|
+
"version": "0.1.2",
|
|
137
|
+
"desc": "供应链依赖校验引擎"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"slug": "yotta-triage",
|
|
141
|
+
"name": "元鉴",
|
|
142
|
+
"pkg": "@yottameta/yotta-triage",
|
|
143
|
+
"version": "0.1.1",
|
|
144
|
+
"desc": "恶意样本静态初筛引擎(哈希/熵/字符串/PE-ELF)"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"slug": "yotta-prompt",
|
|
148
|
+
"name": "元引",
|
|
149
|
+
"pkg": "@yottameta/yotta-prompt",
|
|
150
|
+
"version": "0.1.1",
|
|
151
|
+
"desc": "意图澄清 + 生态入口(常驻注入,map 串联元阁全家)"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"slug": "yotta-verify",
|
|
155
|
+
"name": "元信",
|
|
156
|
+
"pkg": "@yottameta/yotta-verify",
|
|
157
|
+
"version": "0.1.1",
|
|
158
|
+
"desc": "装前安全扫描器 + audited 徽章(prompt injection + 危险模式)"
|
|
159
|
+
}
|
|
160
|
+
]
|
|
161
|
+
}
|