一键导入
flex-markdown
Query the Markdown capability of a Flex filesystem cell: headings, frontmatter, tags, Dataview fields, and optional Obsidian wikilinks and aliases.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Query the Markdown capability of a Flex filesystem cell: headings, frontmatter, tags, Dataview fields, and optional Obsidian wikilinks and aliases.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Query the code capability of a Flex filesystem cell: symbols, containment, callers, callees, impact, imports, exact text, and optional semantic retrieval.
Query a mixed Flex filesystem cell containing Markdown, code, and text through SQL, keyword search, semantic retrieval, file structure, and code graph edges.
Search knowledge cells through the Flex MCP server. Use when the user asks to flex, search conversations, memories, changes, documentation, session history, or any named Flex cell.
Search indexed arXiv papers in the arxiv cell through the Flex MCP server. Use when the user asks for literature surveys, paper sections, hub papers, concept lineage, category- or date-scoped research, or semantic search over the installed arXiv corpus.
Search indexed GitHub issues and comments in the github cell through the Flex MCP server. Use when the user asks about open or closed issues, bug reports, feature requests, discussion threads, reply targets, or semantic search over issue trackers across configured repos.
Search public Hacker News stories and comments in the hn cell through the Flex MCP server. Use when the user asks what HN says about a technology, top stories by score or comment volume, thread sentiment, recurring complaints or praise, or semantic search over HN opinion and technical debate.
| name | flex:markdown |
| description | Query the Markdown capability of a Flex filesystem cell: headings, frontmatter, tags, Dataview fields, and optional Obsidian wikilinks and aliases. |
Markdown is a file capability inside a filesystem cell, not a separate compiler.
Start with flex core search --cell <name> "@orient", then scope ordinary
filesystem retrieval with WHERE file_kind='markdown'.
section_title, depth, container_id, and position._types_markdown_source._fields_inline.obsidian=true, tags, aliases, resolved links, and unresolved targets live
in _fields_inline, _edges_wikilink, and _edges_wikilink_unresolved.embed=true.Read a note in order:
SELECT section_title, depth, content FROM chunks
WHERE source_id=:path AND file_kind='markdown' ORDER BY position;
Find backlinks:
SELECT from_path FROM _edges_wikilink WHERE to_path=:path ORDER BY from_path;
The presence of a .obsidian/ directory does not prove vault semantics were
enabled. Use the live metadata reported by @orient.