wiki-meta

Defines the schema, templates, and conventions for maintaining an Obsidian-based knowledge wiki.

Updated Aug 2, 2026
One-click install
npx skills add https://github.com/phm-aguiar/test_documentacao --skill wiki-meta-phm-aguiar
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: wiki-meta
Source: https://github.com/phm-aguiar/test_documentacao/tree/main/.claude/skills/wiki-meta
Command: npx skills add https://github.com/phm-aguiar/test_documentacao --skill wiki-meta-phm-aguiar

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Maintaining a persistent LLM-curated knowledge base requires consistent structure, provenance tracking, and linking conventions; without a shared schema, wiki pages drift in format and lose traceability to their sources. ## Core Features & Use Cases - Three-Layer Architecture: Separates immutable raw sources, the LLM-maintained Obsidian wiki, and the governing schema so knowledge is compiled once rather than re-derived per query. - Page Templates & Provenance: Provides generic and paper deep-dive templates with extracted/inferred/ambiguous markers, a confidence formula, lifecycle states, and typed relationships. - Config Resolution Protocol: Standardizes how all wiki-* skills locate .env configuration for vault paths, link formats, and retrieval primitives. - Use Case: When any wiki ingest or query skill needs to know how to structure a new concept page, mark an inferred claim, or resolve the vault path, it consults this reference for the exact frontmatter fields and conventions. ## Quick Start Ask the assistant to show the wiki page template and provenance marker rules before creating a new concept page in the Obsidian vault.

Frequently Asked Questions about wiki-meta

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

FAQPage Schema
How do I structure pages in an Obsidian LLM wiki?▼

Organize pages into categories like concepts, entities, skills, references, synthesis, and journal, with project-specific knowledge under projects/<name>/. Each page uses YAML frontmatter with title, category, tags, sources, summary, provenance, confidence, and lifecycle fields.

How do I track provenance for claims in a knowledge wiki?▼

Mark paraphrased source content with no marker, LLM-synthesized claims with ^[inferred], and disputed or unclear claims with ^[ambiguous]. Summarize the mix in frontmatter as extracted, inferred, and ambiguous ratios.

How is the confidence score calculated for wiki pages?▼

Base confidence equals source_count_score times 0.5 plus source_quality_score times 0.5. Count score caps at three distinct sources; quality scores range from 1.0 for papers down to 0.3 for LLM-generated content.

What link formats does the Obsidian wiki support?▼

The wiki supports wikilink format like [[concepts/foo]] by default and standard markdown links when OBSIDIAN_LINK_FORMAT is set to markdown. Relationship targets in frontmatter always use wikilink format regardless of this setting.

Why is my wiki config not being found by wiki skills?▼

Skills walk up from the current directory looking for a .env file containing OBSIDIAN_VAULT_PATH, then fall back to ~/.obsidian-wiki/config. If neither exists, run /wiki-setup to initialize the configuration.