ingest
Capture any source (URL, PDF, audio, video, image, text) into the knowledge vault — extracts entities and claims, rewrites existing notes, flags contradictions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Capture any source (URL, PDF, audio, video, image, text) into the knowledge vault — extracts entities and claims, rewrites existing notes, flags contradictions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Collect a local business's REAL details in one pass, then fill the site — so nothing is ever invented
Collect a shop's REAL products and details in one pass, then fill the catalog — so nothing is ever invented
Switch on the store's real Stripe payments — the hosted-checkout route already ships; this wires the owner's key and verifies it
Fetch GitHub developer activity (commits, PRs, reviews) and build an activity dashboard
Monitor GitHub repos — fetch PRs, issues, CI status via Composio and display on canvas
Track daily habits on a canvas kanban board with streaks
| name | ingest |
| version | 1.0.0 |
| description | Capture any source (URL, PDF, audio, video, image, text) into the knowledge vault — extracts entities and claims, rewrites existing notes, flags contradictions |
| trigger | ingest|save|capture|add source|read this|import|bookmark|clip|highlight |
| tools | ["web","browser","shell_exec","read_file","edit_file","memory_write"] |
When triggered, process the incoming source into the knowledge vault.
| Type | Method |
|---|---|
| URL (article, blog) | Fetch via web or browser, extract main content |
Download and extract text via shell_exec | |
| Audio (voice memo) | Transcribe via Whisper, then process as text |
| Video (YouTube) | Pull transcript via web, extract key claims |
| Image (screenshot) | OCR via vision, extract text and entities |
| Plain text | Process directly |
Parse — Extract raw content from the source. Identify the source type and use the appropriate extraction method.
Extract — From the raw content, identify:
Match — For each extracted entity/claim, search the vault:
GET /api/notes?search=<entity> to find existing notesRewrite or Create — This is the critical step:
PATCH /api/notes/:id with the REWRITTEN content. The note must be self-contained — a reader should never need to check the history. Update last_verified, confidence, and related_notes.POST /api/notes with full frontmatter:
title, content, source, sourceUrl, confidence, entityType,
entities (JSON), relatedNotes (JSON), factTrueFrom, factTrueUntil,
vaultLearned (now)
Cross-reference — Update related_notes on all affected notes. Every note that shares entities with the new content should link to it.
Contradiction check — Compare new claims against existing vault knowledge:
POST /api/contradictions with both note IDs, the conflicting claims, and evidence strength for each side.Summarize — Report to the user:
INGESTED: <source title>
UPDATED: <N> existing notes
CREATED: <N> new notes
CONTRADICTIONS: <N> flagged (list them)
ENTITIES: <comma-separated list>
Every claim traced to this source must include:
source: "<source name>"
sourceUrl: "<url>"
confidence: "medium"
last_verified: "2026-05-05"
related_notes: ["<note-id-1>", "<note-id-2>"]
entities: ["<entity1>", "<entity2>"]
created: "2026-05-05"
vault_learned: "2026-05-05"
fact_true_from: "<date>"
fact_true_until: "present"