mirror of
https://github.com/alirezarezvani/claude-skills.git
synced 2026-09-10 22:41:16 +00:00
- Resolve conflicts: keep redesigned skills index, take dev's cs-aeo link fix, union of DOMAIN_SEO_CONTEXT entries in generate-docs.py - Regenerate catalog on the merged tree (dev's agent/command description updates, removed ai-seo/release-manager/command-guide, restructured universal-scraping-architect) - Update counters to post-merge truth from scripts/derive_counters.py: 345 skills, 78 plugins (14 bundles + 64 standalone), 570+ Python tools - Add redirects for upstream-removed pages (ai-seo -> aeo, release-manager -> changelog-generator, command-guide -> engineering index) - Add compliance-os bundle to bundle tables; rebuild 78-plugin table from marketplace.json - Teach the generator to rewrite repo-root-relative source links to GitHub URLs — mkdocs build --strict now passes with zero warnings https://claude.ai/code/session_015bYZ97nV4oRb3LbxCRFVcP
69 lines
2.2 KiB
Markdown
69 lines
2.2 KiB
Markdown
---
|
|
title: "/wiki-init — Slash Command for AI Coding Agents"
|
|
description: "Bootstrap a fresh LLM Wiki vault with the three-layer structure, schema files, and starter templates. Usage /wiki-init <path> --topic '<topic>'. Slash command for Claude Code, Codex CLI, Gemini CLI."
|
|
---
|
|
|
|
# /wiki-init
|
|
|
|
<div class="page-meta" markdown>
|
|
<span class="meta-badge">:material-console: Slash Command</span>
|
|
<span class="meta-badge">:material-github: <a href="https://github.com/alirezarezvani/claude-skills/tree/main/commands/wiki-init.md">Source</a></span>
|
|
</div>
|
|
|
|
<!-- canonical copy: engineering/llm-wiki/commands/wiki-init.md — keep in sync -->
|
|
|
|
# /wiki-init
|
|
|
|
Bootstrap a new LLM Wiki vault. Creates `raw/`, `wiki/{entities,concepts,sources,comparisons,synthesis}`, the index and log, and installs the schema file(s) for your LLM CLI of choice.
|
|
|
|
## Usage
|
|
|
|
```
|
|
/wiki-init <path> --topic "<one-line topic>"
|
|
/wiki-init <path> --topic "<topic>" --tool <claude-code|codex|cursor|antigravity|opencode|gemini-cli|all>
|
|
/wiki-init <path> --topic "<topic>" --force # overwrite non-empty dir
|
|
```
|
|
|
|
## Examples
|
|
|
|
```
|
|
/wiki-init ~/vaults/research --topic "LLM interpretability"
|
|
/wiki-init ./book-wiki --topic "The Power Broker — Robert Caro" --tool all
|
|
/wiki-init ~/vaults/founders --topic "SaaS founder playbook" --tool codex
|
|
```
|
|
|
|
## What it creates
|
|
|
|
```
|
|
<path>/
|
|
├── raw/
|
|
│ └── assets/
|
|
├── wiki/
|
|
│ ├── index.md # from template
|
|
│ ├── log.md # from template
|
|
│ ├── entities/
|
|
│ ├── concepts/
|
|
│ ├── sources/
|
|
│ ├── comparisons/
|
|
│ ├── synthesis/
|
|
│ └── .templates/ # page templates for reference
|
|
├── CLAUDE.md # if --tool claude-code or all
|
|
├── AGENTS.md # if --tool codex|cursor|antigravity|opencode|gemini-cli|all
|
|
├── .cursorrules # if --tool cursor or all
|
|
└── .gitignore
|
|
```
|
|
|
|
## Next steps
|
|
|
|
After init:
|
|
1. Open the vault in Obsidian
|
|
2. Drop a source into `raw/`
|
|
3. Run `/wiki-ingest raw/<your-file>`
|
|
|
|
## Script
|
|
|
|
- `engineering/llm-wiki/skills/llm-wiki/scripts/init_vault.py`
|
|
|
|
## Skill Reference
|
|
|
|
→ `engineering/llm-wiki/skills/llm-wiki/SKILL.md`
|