wiki

Store and retrieve persistent Markdown wiki pages with keyword and tag search.

3|Updated May 24, 2026
One-click install
npx skills add https://github.com/shayne-snap/oh-my-antigravity --skill wiki-shayne-snap
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wiki
Source: https://github.com/shayne-snap/oh-my-antigravity/tree/main/plugin/skills/wiki
Command: npx skills add https://github.com/shayne-snap/oh-my-antigravity --skill wiki-shayne-snap

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Omagy wiki prevents valuable decisions, architecture notes, and troubleshooting knowledge from getting lost between sessions by giving you a persistent, repo-committable Markdown knowledge store.

Core Features & Use Cases

  • Persistent Markdown wiki: Store pages as files under omagy_wiki so knowledge survives across turns and can be version-controlled.
  • Keyword + tag search: Query pages by terms, tags, and categories without needing embeddings.
  • Lifecycle capture and evidence logging: Maintain an index and a log to support ongoing project memory and review.
  • Cross-reference linking: Use [[page-name]] wiki links to connect related concepts and decisions.

Quick Start

Use the wiki to ingest an architecture page by running: omagy wiki wiki_ingest --input '{"title":"Auth Architecture","content":"...","tags":["auth","architecture"],"category":"architecture"}' --json

Frequently Asked Questions about wiki

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

FAQPage Schema
How do I store project documentation as persistent Markdown across sessions?

You can store persistent Markdown project documentation across sessions by saving pages as files in a repo-backed knowledge base. This approach supports keyword and tag search, ensuring architecture decisions and troubleshooting notes survive between turns.

How does keyword and tag search work for a project knowledge base?

Keyword and tag search for a project knowledge base works by querying indexed Markdown pages using specific terms and categories without requiring embeddings. It enables fast retrieval of architecture, debugging, and decision notes based on assigned tags.

What is the best way to maintain a lifecycle log for project decisions?

The best way to maintain a lifecycle log for project decisions is using a wiki system that enforces an index and log. This captures ongoing project memory and evidence, allowing you to review and refresh knowledge entries over time.

Can I use cross-reference links to connect related architecture notes?

Yes, you can use cross-reference links to connect related architecture notes by inserting wiki-style page links. This connects related concepts and decisions within your Markdown knowledge base, building a navigable network of project documentation.

Does this knowledge base tool require embeddings for searching documentation?

No, this knowledge base tool does not require embeddings for searching documentation. It enforces keyword and tag search to query pages, with an optional legacy fallback, allowing text retrieval without vector database dependencies.

How do I ingest an architecture page into a Markdown wiki?

You ingest an architecture page into a Markdown wiki by running an ingest command with a JSON input containing the title, content, tags, and category. The system then stores the page in repo-backed storage for persistent access.