Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Command-line tool to manage Wiki.js content, pages, assets, templates, and backups via its GraphQL API with search, update, sync, and analysis functions.
Command-line tool to manage Wiki.js content, pages, assets, templates, and backups via its GraphQL API with search, update, sync, and analysis functions.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
A complete CLI for managing Wiki.js via the GraphQL API.
# Install npm install && npm link # Configure cp config/wikijs.example.json ~/.config/wikijs.json # Edit with your Wiki.js URL and API token # Test connection wikijs health
CommandDescriptionwikijs listList all pageswikijs search "query"Search pageswikijs get <id-or-path>Read a pagewikijs info <id-or-path>Show page metadatawikijs grep "pattern"Search within contentwikijs treeDisplay page hierarchy
CommandDescriptionwikijs create <path> <title>Create a pagewikijs create ... --template docCreate from templatewikijs update <id>Update a pagewikijs move <id> <new-path>Move a pagewikijs delete <id>Delete a page
CommandDescriptionwikijs tagsList all tagswikijs tag <id> add <tag>Add a tagwikijs tag <id> remove <tag>Remove a tag
CommandDescriptionwikijs backupCreate backupwikijs restore-backup <file>Restore from backupwikijs export <dir>Export to files
CommandDescriptionwikijs versions <id>Show historywikijs revert <id> <version>Restore versionwikijs diff <id>Compare versions
CommandDescriptionwikijs imagesList assetswikijs upload <file>Upload assetwikijs delete-image <id>Delete asset
CommandDescriptionwikijs bulk-create <folder>Create from fileswikijs bulk-update <folder>Update from fileswikijs syncSync to localwikijs sync --watchWatch mode
CommandDescriptionwikijs treePage hierarchy treewikijs check-linksFind broken linkswikijs statsShow statisticswikijs lint <file>Lint markdown filewikijs lint --id <id>Lint wiki pagewikijs orphansFind pages with no incoming linkswikijs duplicatesFind similar/duplicate contentwikijs toc <id>Generate table of contentswikijs validate <id>Validate page contentwikijs validate --allValidate all pageswikijs spellcheck <id>Check spelling
CommandDescriptionwikijs clone <id> <path>Duplicate a pagewikijs replace "old" "new"Search/replace across pageswikijs sitemapGenerate XML sitemap
CommandDescriptionwikijs shellInteractive shell modewikijs watch <id>Watch page for changes
CommandDescriptionwikijs template listList templateswikijs template show <name>Show templatewikijs template create <name>Create templatewikijs template delete <name>Delete template
CommandDescriptionwikijs healthCheck connectionwikijs cache clearClear cachewikijs completion bashShell completion
OptionDescription-v, --verboseVerbose output-d, --debugDebug output--no-colorDisable colors--rate-limit <ms>API rate limiting
OptionDescription--format json|tableOutput format--limit <n>Limit results--forceSkip confirmations--locale <locale>Specify locale--dry-runPreview changes
# Create page with template wikijs template create doc --content "# {{title}}\n\n{{date}}" wikijs create "/docs/api" "API Docs" --template doc # Find broken links in docs section wikijs check-links --path "/docs" # Bulk import with rate limiting wikijs --rate-limit 500 bulk-create ./pages --path-prefix "/imported" # Watch mode for continuous sync wikijs sync --output ~/wiki-mirror --watch --interval 60 # Debug API issues wikijs --debug list # Clone a page wikijs clone 42 "/docs/new-page" --with-tags # Find orphan pages (no incoming links) wikijs orphans # Search and replace across wiki wikijs replace "oldterm" "newterm" --path "/docs" --dry-run # Generate table of contents wikijs toc 42 --format markdown # Find duplicate content wikijs duplicates --threshold 80 # Generate sitemap for SEO wikijs sitemap --output sitemap.xml # Interactive shell mode wikijs shell # Watch a page for changes wikijs watch "/docs/api" --interval 60 # Spell check a page wikijs spellcheck 42 --lang en --ignore "API,CLI,GraphQL" # Validate all pages wikijs validate --all --format json
All commands return exit code 0 on success, 1 on failure Use --format json for machine-readable output Delete operations prompt for confirmation unless --force is used Escape sequences (\n, \t) are interpreted in --content strings Templates support placeholders: {{title}}, {{path}}, {{date}}
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.