一键导入
insights
Daily Zettelkasten insight generation — run CLI insight engine, create wiki pages for confidence>=0.7 insights, integrate to wiki. Schedule: 06:00 AM.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Daily Zettelkasten insight generation — run CLI insight engine, create wiki pages for confidence>=0.7 insights, integrate to wiki. Schedule: 06:00 AM.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
arXiv paper discovery — select top 3 significant papers, research via subagents, ingest to wiki, deliver report.
Daily raw file ingestion pipeline — process files from raw/ into structured wiki knowledge, verify frontmatter and links, archive to Clippings/. Schedule: 06:30 AM.
Daily global news curator — RSS discovery, significance filtering, clippings archive + synthesis wiki delivery, deliver headlines report. Schedule: 07:30 AM.
Wiki synthesis agent operational sheet — cross-domain bridges, concept advancement, evidence evaluation
Daily wiki quality audit anchored in wiki-indexing-theory.md — HITS authority scoring, GAAC cluster validation, tag taxonomy compliance, reciprocal link enforcement. Schedule: 08:50 AM.
Wiki overseer context document — agent role, owned files, and coordination protocol. Operational instructions live in the hermes-level wiki-overseer skill.
| name | insights |
| description | Daily Zettelkasten insight generation — run CLI insight engine, create wiki pages for confidence>=0.7 insights, integrate to wiki. Schedule: 06:00 AM. |
| tags | ["insights","zettelkasten","synthesis","daily"] |
| triggers | ["cron",{"manual":"delegate_task"}] |
| updated | "2026-05-27T00:00:00.000Z" |
| created_by | agent |
Run the Zettelkasten insight generation engine and integrate high-confidence insights (≥0.7) into the wiki as synthesis pages.
Use terminal() with cat for ALL file reads in cron context. Use MCP tools for wiki operations.
wiki/scratchpad/jobs/sheet.md and wiki/scratchpad/agent-sheets/insights/carryover.mdvault.md to act as your episodic scratchpad for this sessionvault.mdvault.md into carryover.md (Layer 1 → Layer 2)Defense-in-depth timeout — the CLI can hang. Use triple timeout:
cd /home/ty/Repositories/ai_workspace/project-synapse-mcp && \
timeout --kill-after=10s 580s uv run python scripts/generate_insights.py \
--topic general --print --max-runtime 540 2>&1
Do NOT use MCP generate_insights() — it times out at 300s (the CLI has a much higher limit).
If the CLI times out (exit code 124 from timeout):
cat data/insights/latest.json 2>/dev/null[SILENT]cat /home/ty/Repositories/ai_workspace/project-synapse-mcp/data/insights/latest.json
For each insight in the output:
synapse_recall(query="{insight title}") — skip if already existsFor each high-confidence insight:
1. Map title to slug:
"Titans Memory Architecture" → "titans-memory-efficiency-insight"
2. wiki_write_page(path="wiki/synthesis/{slug}.md", content=...)
Frontmatter:
---
created: {today}
updated: {today}
type: synthesis
summary: "{insight title}"
tags: [insights, zettelkasten, {topic}]
status: active
confidence: {from insight}
---
3. Cross-link:
wiki_search(query="{insight topic}")
→ Add [[wikilinks]] to related concepts/entities
4. Record to episodic memory:
synapse_remember(content="Insight: {title} (confidence {score}) → wiki/synthesis/{slug}.md")
5. wiki_update_index()
If new pages were created, deliver a summary:
**Insights — {YYYY-MM-DD}**
{N} insights generated | {N} pages created (confidence ≥ 0.7)
**New Pages:**
- [[slug]] — {title} (confidence: {score})
**Below Threshold:**
- {title} (confidence: {score}) — noted, no page
If no new pages created (timeout or all below threshold), respond [SILENT].
Read your vault.md (Episodic Trace) and compress it into wiki/scratchpad/agent-sheets/insights/carryover.md (Semantic State), adhering to the ~512 token bound:
---
created: { original date }
updated: { today's date }
type: carryover
summary: "{N} insights generated, {N} wiki pages created"
tags: [insights, carryover]
---
Include:
- [ ] checklist (below-threshold insights worth revisiting, CLI issues)Once compressed, clear or archive your vault.md so the next session starts fresh.
/home/ty/Repositories/ai_workspace/project-synapse-mcp/scripts/generate_insights.py/home/ty/Repositories/ai_workspace/project-synapse-mcp/data/insights/latest.jsonwiki/synthesis/{slug}.mdwiki/scratchpad/jobs/reports/insights/wiki/scratchpad/agent-sheets/insights/carryover.md| Tool | Purpose |
|---|---|
synapse_remember | Record insights to episodic memory |
synapse_recall | Check for duplicate insights |
wiki_write_page | Create synthesis pages (confidence ≥ 0.7) |
wiki_search | Find related pages for cross-linking |
wiki_update_index | Refresh index after new pages |
CRITICAL CONSTRAINT: DO NOT interact with the Kanban board or run kanban scripts. Output open items as - [ ] in the ## What Remains section of your carryover.md. The overseer will create Kanban tickets and assign them to you in jobs/sheet.md. You may run the official generate_insights.py engine as explicitly documented above, but do not author your own scripts. Use standard MCP tools exclusively for wiki operations.
[SILENT][SILENT][SILENT]insights, zettelkasten, {topic}Drain your assigned cards at the start of every cycle:
kanban_list(lane="ready", assignee="<your-profile>")
If the queue is empty, proceed with the agent's normal work. Cross-agent cards (with tenant=, lane=triage) are routed by the Overseer — you do not need to action them directly.
Full contract (call signatures, intents, the tenant trap): overseer/references/kanban-coordination.md.