跳到主要内容
知仓学习社ZHICANG

export

Export a research session into knowledge-intake compatible markdown. Use after a research session to hand findings to memory-palace.

不碰外部(只输出文字)无严重或高危命中athola/claude-night-market

它会碰到什么

扫了多少1 个文本文件,2 KB
它会碰到什么不碰外部(只输出文字)
命中总数0 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

Export

Turn a finished research session into a file knowledge-intake can read

without reformatting.

When To Use

After a research session has findings and you want them stored rather

than merely reported.

When NOT To Use

  • The session is still gathering findings: finish Skill(tome:research)

first, since an export of an empty session emits only frontmatter.

  • You want a human-readable report: use Skill(tome:synthesize), which

produces the narrative form with coverage and gaps.

Workflow

Load the session and render it:

from pathlib import Path

from tome.session import SessionManager
from tome.output.export import export_for_memory_palace

session = SessionManager(Path.cwd()).load_latest()
markdown = export_for_memory_palace(session)
Path(f"docs/research/export-{session.id}.md").write_text(markdown)

SessionManager resolves its store relative to the path it is given, so

run this from the repository root or the session will not be found.

To export a specific session, use load(session_id) instead of

load_latest().

What It Emits

YAML frontmatter carrying topic, domain, session_id, date,

finding_count, channels, and type: research-export, followed by

findings grouped by channel. Each finding renders its source, URL,

relevance, summary, and channel-specific metadata.

An empty session emits the frontmatter and a line stating that no

findings were recorded, which is deliberate. A silent empty file would

read as a successful export of nothing.

Handoff

The output is an external resource, not a corpus entry. Feed it to

Skill(memory-palace:knowledge-intake), which owns evaluation, routing,

and storage. This skill does no scoring.

Exit Criteria

  • [ ] export_for_memory_palace was called on a loaded session
  • [ ] The output file exists and its frontmatter includes

type: research-export

  • [ ] finding_count in the frontmatter matches the session's findings
  • [ ] The file was handed to Skill(memory-palace:knowledge-intake) or

its path was reported for later intake

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。