跳转到正文
报告库
用途分类 / 数据分析

Obsidian Bases Skill 安全审计

作者说它能做什么(原文)

Create and edit Obsidian Bases (.base files) with views, filters, formulas, and summaries. Use when working with .base files, creating database-like views of notes, or when the user mentions Bases, table views, card views, filters, or formulas in Obsidian.

第三方安全检查结论

这次检查未发现明显风险

已检查文件
2
发现的风险
0
会不会运行危险命令?检查是否下载程序后直接运行、让他人远程控制电脑,或藏起要运行的命令。未发现风险
会不会泄露文件和密钥?检查是否发送含密码或密钥的文件,以及代码里是否直接写了密钥。未发现风险
会不会删除文件或一直在后台运行?检查是否大范围删除文件、改写磁盘,或设置自动启动。未发现风险
会不会绕过安全保护?检查是否跳过网站安全验证、开放过多文件权限,或取消操作前的确认。未发现风险
会不会误导 AI 或隐藏内容?检查工作说明是否要求 AI 忽略你的指令、干扰检查结果,或夹带看不见的文字。未发现风险
会不会偷偷改推广链接或收款方?检查是否强制替换推广链接或收款对象,同时要求隐瞒更改。未发现风险

Skill 逻辑拆解

8 个说明模块

该 Skill 的主要操作是在用户的 Obsidian 仓库中创建或编辑 YAML 格式的 `.base` 文件,然后配置筛选、公式和视图,并要求验证 YAML 及相关属性。

查看原文
SKILL.md:10来自说明文档打开原文件
1. **Create the file**: Create a `.base` file in the vault with valid YAML content2. **Define scope**: Add `filters` to select which notes appear (by tag, folder, property, or date)3. **Add formulas** (optional): Define computed properties in the `formulas` section4. **Configure views**: Add one or more views (`table`, `cards`, `list`, or `map`) with `order` specifying which properties to display5. **Validate**: Verify the file is valid YAML with no syntax errors. Check that all referenced properties and formulas exist. Common issues: unquoted strings containing special YAML characters, mismatched quotes in formula expressions, referencing `formula.X` without defining `X` in `formulas`6. **Test in Obsidian**: Open the `.base` file in Obsidian to confirm the view renders correctly. If it shows a YAML error, check quoting rules below

生成的 Base 视图能够读取并显示仓库内笔记的文件路径、时间、标签、链接以及全部 frontmatter 属性。所提供内容只描述在 Obsidian 中使用这些数据,没有指示将其发送到外部服务。

查看原文
SKILL.md:132来自说明文档打开原文件
|----------|------|-------------|| `file.name` | String | File name || `file.basename` | String | File name without extension || `file.path` | String | Full path to file || `file.folder` | String | Parent folder path || `file.ext` | String | File extension || `file.size` | Number | File size in bytes || `file.ctime` | Date | Created time || `file.mtime` | Date | Modified time || `file.tags` | List | All tags in file || `file.links` | List | Internal links in file || `file.backlinks` | List | Files linking to this file || `file.embeds` | List | Embeds in the note || `file.properties` | Object | All frontmatter properties |

Skill 建议在 Obsidian 中打开生成的文件进行渲染测试;地图视图另称需要 Maps 社区插件,但没有提供插件安装命令、下载步骤或权限提升指令。

查看原文
SKILL.md:15来自说明文档打开原文件
5. **Validate**: Verify the file is valid YAML with no syntax errors. Check that all referenced properties and formulas exist. Common issues: unquoted strings containing special YAML characters, mismatched quotes in formula expressions, referencing `formula.X` without defining `X` in `formulas`6. **Test in Obsidian**: Open the `.base` file in Obsidian to confirm the view renders correctly. If it shows a YAML error, check quoting rules below
SKILL.md:260来自说明文档打开原文件
### Map ViewRequires latitude/longitude properties and the Maps community plugin.

随附参考文件是公式函数目录,包括文件查询、HTML 渲染与 HTML 转义函数的说明;这些是能力说明,并非要求执行任意代码或网络请求。

查看原文
references/FUNCTIONS_REFERENCE.md:17来自说明文档打开原文件
| `list()` | `list(element): List` | Wrap in list if not already || `file()` | `file(path): file` | Get file object || `image()` | `image(path): image` | Create image for rendering || `icon()` | `icon(name): icon` | Lucide icon by name || `html()` | `html(string): html` | Render as HTML || `escapeHTML()` | `escapeHTML(string): string` | Escape HTML characters |
从这里开始 · 工作说明SKILL.md
obsidian-bases
连线表示工作说明包含的模块,不是实际运行顺序。点击模块可查看原文。 另有 5 个章节,可在原文件中查看。

文件引用关系图

1 处引用
哪些文件发起引用引用了什么
连线表示真实的文件引用,不是运行顺序。点击节点可高亮相关连线,并查看具体文件和原文位置。虚线表示还有文件需要定位。
文件与检查记录2 个文件

检查范围与遗漏

逐文件查看涉及的内容

下方列出本次涉及的原文范围;纳入检查不代表已查清所有问题。

  • SKILL.md已纳入全文
  • references/FUNCTIONS_REFERENCE.md已纳入全文

这份报告只针对上方版本。我们看了拿到的代码和说明文件,没有实际运行 Skill,也没有检查它另外安装的软件包。因此,这不是“保证安全”的承诺;换了版本或使用环境,结果也可能不同。

  • SKILL.md工作说明
  • references/FUNCTIONS_REFERENCE.md配套文件

代码和说明中提到的操作

连接外部网站
SKILL.md:495来自说明文档打开原文件
- [Bases Syntax](https://help.obsidian.md/bases/syntax)- [Functions](https://help.obsidian.md/bases/functions)
SKILL.md:496来自说明文档打开原文件
- [Bases Syntax](https://help.obsidian.md/bases/syntax)- [Functions](https://help.obsidian.md/bases/functions)- [Views](https://help.obsidian.md/bases/views)
SKILL.md:497来自说明文档打开原文件
- [Functions](https://help.obsidian.md/bases/functions)- [Views](https://help.obsidian.md/bases/views)- [Formulas](https://help.obsidian.md/formulas)
读取了多少行
674
文件校验值(用于核对版本)
ed4931af2726f580da09741471ce4f1d2db44675ebc57d9e624f901f8c6cd832