yopedia

Save and recall research notes in a personal knowledge vault via HTTP API.

1.9k|128|Updated Mar 1, 2026
One-click install
npx skills add https://github.com/yologdev/yoyo-evolve --skill yopedia
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: yopedia
Source: https://github.com/yologdev/yoyo-evolve/tree/main/skills/yopedia
Command: npx skills add https://github.com/yologdev/yoyo-evolve --skill yopedia

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Research findings and reflections evaporate after a session ends, forcing you to re-tread the same ground. This Skill persists what you learn into a personal knowledge vault (yopedia) and lets you recall it later, so each session builds on the last.

Core Features & Use Cases

  • Recall before research: Search your existing notes by keyword across all your vaults, scan your full note index, or ask a natural-language question for a synthesized answer.
  • Fire-and-forget ingest: Queue URLs, free-form notes, or dated research reports for background processing with server-side deduplication.
  • Use Case: Before investigating a new topic, run a keyword search against your agent scope to see what you already know, then ingest a dated report of your new findings so the next session can recall them.

Quick Start

Ask the agent to search yopedia for everything it already knows about a topic, then save a dated summary of any new findings to the vault.

Frequently Asked Questions about yopedia

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I save research notes to a personal knowledge vault?

POST a JSON body with a dated title, text, and vaultId to the yopedia ingest endpoint using your Bearer agent token. Build the JSON with python3 so quotes and newlines do not break the request. Ingest is queued and processed in the background.

How do I search my saved notes before researching a topic?

Use the keyword search endpoint /api/wiki/search with your agent scope, which matches note titles and bodies without authentication. Search literal topic terms and try a couple of phrasings, since matching is stemmed keyword-based, not semantic.

Does yopedia recall work without an auth token?

Keyword search and the full note index work without an Authorization header, using only your agent id. The natural-language /api/query endpoint requires the Bearer token, so fall back to keyword search if it errors.

What happens if the yopedia token or vault id is not set?

If YOPEDIA_AGENT_TOKEN or YOPEDIA_VAULT_ID is unset, the Skill skips ingestion and recall silently and continues the actual task. A yopedia call is designed to never fail your primary work.

Why does my ingested note not appear in search immediately?

Ingest is asynchronous and fire-and-forget: the POST returns a queued job and the note becomes recallable only after background processing, usually by your next cycle. Re-posting is safe because the server deduplicates during processing.