# Send Wiki.js CLI to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "wikijs",
    "name": "Wiki.js CLI",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/hopyky/wikijs",
    "canonicalUrl": "https://clawhub.ai/hopyky/wikijs",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/wikijs",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wikijs",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "config/wikijs.example.json",
      "lib/api.js",
      "lib/config.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "wikijs",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T01:21:16.210Z",
      "expiresAt": "2026-05-18T01:21:16.210Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wikijs",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wikijs",
        "contentDisposition": "attachment; filename=\"wikijs-1.4.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "wikijs"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/wikijs"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/wikijs",
    "downloadUrl": "https://openagent3.xyz/downloads/wikijs",
    "agentUrl": "https://openagent3.xyz/skills/wikijs/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wikijs/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wikijs/agent.md"
  }
}
```
## Documentation

### Wiki.js Skill v1.4

A complete CLI for managing Wiki.js via the GraphQL API.

### Quick Start

# 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

### Reading

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

### Writing

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

### Tags

CommandDescriptionwikijs tagsList all tagswikijs tag <id> add <tag>Add a tagwikijs tag <id> remove <tag>Remove a tag

### Backup & Restore

CommandDescriptionwikijs backupCreate backupwikijs restore-backup <file>Restore from backupwikijs export <dir>Export to files

### Versions

CommandDescriptionwikijs versions <id>Show historywikijs revert <id> <version>Restore versionwikijs diff <id>Compare versions

### Assets

CommandDescriptionwikijs imagesList assetswikijs upload <file>Upload assetwikijs delete-image <id>Delete asset

### Bulk Operations

CommandDescriptionwikijs bulk-create <folder>Create from fileswikijs bulk-update <folder>Update from fileswikijs syncSync to localwikijs sync --watchWatch mode

### Analysis

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

### Content Operations

CommandDescriptionwikijs clone <id> <path>Duplicate a pagewikijs replace "old" "new"Search/replace across pageswikijs sitemapGenerate XML sitemap

### Interactive

CommandDescriptionwikijs shellInteractive shell modewikijs watch <id>Watch page for changes

### Templates

CommandDescriptionwikijs template listList templateswikijs template show <name>Show templatewikijs template create <name>Create templatewikijs template delete <name>Delete template

### System

CommandDescriptionwikijs healthCheck connectionwikijs cache clearClear cachewikijs completion bashShell completion

### Global Options

OptionDescription-v, --verboseVerbose output-d, --debugDebug output--no-colorDisable colors--rate-limit <ms>API rate limiting

### Common Options

OptionDescription--format json|tableOutput format--limit <n>Limit results--forceSkip confirmations--locale <locale>Specify locale--dry-runPreview changes

### Examples

# 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

### Integration Notes

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}}
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: hopyky
- Version: 1.4.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-11T01:21:16.210Z
- Expires at: 2026-05-18T01:21:16.210Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/wikijs)
- [Send to Agent page](https://openagent3.xyz/skills/wikijs/agent)
- [JSON manifest](https://openagent3.xyz/skills/wikijs/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/wikijs/agent.md)
- [Download page](https://openagent3.xyz/downloads/wikijs)