Persistent markdown project wiki stored under .omx/wiki with keyword search and lifecycle capture
Scanned 9/8/2026
Install to Claude Code
npx -y skills add agisota/old-one --skill wiki --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Wiki?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/agisota-wiki)More formats (shields.io, HTML) on the badges page.
---
name: wiki
description: Persistent markdown project wiki stored under .omx/wiki with keyword search and lifecycle capture
triggers: ["wiki add", "wiki lint", "wiki query", "wiki read", "wiki delete"]
---
# Wiki
Persistent, self-maintained markdown knowledge base for project and session knowledge.
## Operations
### Ingest
```text
wiki_ingest({ title: "Auth Architecture", content: "...", tags: ["auth", "architecture"], category: "architecture" })
```
### Query
```text
wiki_query({ query: "authentication", tags: ["auth"], category: "architecture" })
```
### Lint
```text
wiki_lint()
```
### Quick Add
```text
wiki_add({ title: "Page Title", content: "...", tags: ["tag1"], category: "decision" })
```
### List / Read / Delete
```text
wiki_list()
wiki_read({ page: "auth-architecture" })
wiki_delete({ page: "outdated-page" })
wiki_refresh()
```
## Categories
`architecture`, `decision`, `pattern`, `debugging`, `environment`, `session-log`, `reference`, `convention`
## Storage
- Pages: `.omx/wiki/*.md`
- Index: `.omx/wiki/index.md`
- Log: `.omx/wiki/log.md`
## Cross-References
Use `[[page-name]]` wiki-link syntax to create cross-references between pages.
## Auto-Capture
At session end, discoveries can be captured as `session-log-*` pages. Configure via `wiki.autoCapture` in `.omx-config.json`.
## Hard Constraints
- No vector embeddings — query uses keyword + tag matching only
- Wiki files remain local project state under `.omx/wiki/`
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Ultra-compressed commit message generator. Cuts noise from commit messages while preserving intent and reasoning. Conventional Commits format. Subject ≤50 chars, body only when "why" isn't obvious. Use when user says "write a commit", "commit message", "generate commit", "/commit", or invokes /caveman-commit. Auto-triggers when staging changes.
Ultra-compressed code review comments. Cuts noise from PR feedback while preserving the actionable signal. Each comment is one line: location, problem, fix. Use when user says "review this PR", "code review", "review the diff", "/review", or invokes /caveman-review. Auto-triggers when reviewing pull requests.
Verification loop for Django projects: migrations, linting, tests with coverage, security scans, and deployment readiness checks before release or PR.
一个全面的 Claude Code 会话验证系统。
Verification loop for Spring Boot projects: build, static analysis, tests with coverage, security scans, and diff review before release or PR.