TopRank Skills

Official OpenClaw rules 54%

Wikijs

Wiki.js Skill v1.4

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Wikijs 技能。 若已安装,则直接安装 Wikijs 技能。

Overview

Skill Key
hopyky/wikijs
Author
hopyky
Source Repo
openclaw/skills
Version
-
Source Path
skills/hopyky/wikijs
Latest Commit SHA
2e55bd8ac2a21bd1ef8ed418d40c30e23a632de8

Extracted Content

SKILL.md excerpt

# Wiki.js Skill v1.4

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

## Quick Start

```bash
# 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
```

## Commands Reference

### Reading

| Command | Description |
|---------|-------------|
| `wikijs list` | List all pages |
| `wikijs search "query"` | Search pages |
| `wikijs get <id-or-path>` | Read a page |
| `wikijs info <id-or-path>` | Show page metadata |
| `wikijs grep "pattern"` | Search within content |
| `wikijs tree` | Display page hierarchy |

### Writing

| Command | Description |
|---------|-------------|
| `wikijs create <path> <title>` | Create a page |
| `wikijs create ... --template doc` | Create from template |
| `wikijs update <id>` | Update a page |
| `wikijs move <id> <new-path>` | Move a page |
| `wikijs delete <id>` | Delete a page |

### Tags

| Command | Description |
|---------|-------------|
| `wikijs tags` | List all tags |
| `wikijs tag <id> add <tag>` | Add a tag |
| `wikijs tag <id> remove <tag>` | Remove a tag |

### Backup & Restore

| Command | Description |
|---------|-------------|
| `wikijs backup` | Create backup |
| `wikijs restore-backup <file>` | Restore from backup |
| `wikijs export <dir>` | Export to files |

### Versions

| Command | Description |
|---------|-------------|
| `wikijs versions <id>` | Show history |
| `wikijs revert <id> <version>` | Restore version |
| `wikijs diff <id>` | Compare versions |

### Assets

| Command | Description |
|---------|-------------|
| `wikijs images` | List assets |
| `wikijs upload <file>` | Upload asset |
| `wikijs delete-image <id>` | Delete asset |

### Bulk Operations

| Command | Description |
|---------|-------------|
| `wikijs bulk-create <folder>` | Create from files |
| `wikijs bulk-update <folder>` | Update from files |
| `wikijs sync` | Sync to local |
| `wikijs sync --watch` | Watch mode |...

README excerpt

# wikijs-cli

A comprehensive command-line interface for [Wiki.js](https://js.wiki/) - the powerful open-source wiki software.

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Node.js Version](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen)](https://nodejs.org/)

## Features

- **Full CRUD operations** - Create, read, update, and delete wiki pages
- **Tag management** - Add, remove, and list tags
- **Asset management** - Upload, list, and delete images/files
- **Search** - Full-text search and content grep
- **Backup & Restore** - Export and import wiki content
- **Bulk operations** - Create/update multiple pages from files with progress bars
- **Version control** - View history and revert to previous versions
- **Watch mode** - Automatic periodic synchronization and page monitoring
- **Tree view** - Visual hierarchy of all pages
- **Link checker** - Find broken internal links
- **Orphan detection** - Find pages with no incoming links
- **Duplicate detection** - Find similar content across pages
- **Templates** - Create pages from reusable templates
- **Shell completion** - Auto-completion for bash/zsh/fish
- **Interactive shell** - REPL mode for multiple commands
- **Markdown linting** - Validate and fix markdown issues
- **Spell checking** - Basic spell check with multilingual support
- **Page validation** - Check images, links, and content quality
- **Search & replace** - Find and replace text across pages
- **Sitemap generation** - Generate XML sitemaps for SEO
- **Offline mode** - Work with cached data when server unavailable
- **Rate limiting** - Configurable delays for bulk operations
- **Debug mode** - Verbose output for troubleshooting

## Installation

```bash
# Clone the repository
git clone https://github.com/your-username/wikijs-cli.git
cd wikijs-cli

# Install dependencies
npm install

# Link globally (optional, for system-wide access)
npm link
```

## Configuration

1. Copy the...

Related Claw Skills