TopRank Skills

Home / Claw Skills / Autres / wallabag
Official OpenClaw rules 15%

wallabag

Manage Wallabag bookmarks through the Wallabag Developer API with OAuth2 authentication, including creating, reading, updating, deleting, searching, and tag management. Use when a user wants to talk to Wallabag, store links, retrieve entries, filter by search or tags, or modify bookmark metadata.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
fbrandel/wallabag
Author
fbrandel
Source Repo
openclaw/skills
Version
-
Source Path
skills/fbrandel/wallabag
Latest Commit SHA
fe435807512725caad8977a0cff9c1fac73d0f21

Extracted Content

SKILL.md excerpt

# Wallabag

## Overview

Use this skill to operate a Wallabag instance through its API with deterministic shell commands. Keep credentials in environment variables and never hardcode secrets.

## Runtime Requirements

- Required binaries: `bash`, `curl`
- Required for `tag add` and `tag remove`: `jq`

## Required Environment

Set these variables before running commands:

- `WALLABAG_BASE_URL`
- `WALLABAG_CLIENT_ID`
- `WALLABAG_CLIENT_SECRET`
- `WALLABAG_USERNAME`
- `WALLABAG_PASSWORD`

Example:

```bash
export WALLABAG_BASE_URL="https://wallabag.example.com"
export WALLABAG_CLIENT_ID="..."
export WALLABAG_CLIENT_SECRET="..."
export WALLABAG_USERNAME="..."
export WALLABAG_PASSWORD="..."
```

## Command Interface

Main command:

```bash
scripts/wallabag.sh <subcommand> [options]
```

Subcommands:

- `auth [--show-token]`
- `list [--search <text>] [--tag <name>] [--archive 0|1] [--starred 0|1] [--page <n>] [--per-page <n>]`
- `get --id <entry_id>`
- `create --url <url> [--title <title>] [--tags "tag1,tag2"]`
- `update --id <entry_id> [--title <title>] [--tags "tag1,tag2"] [--archive 0|1] [--starred 0|1]`
- `delete --id <entry_id>`
- `tag add --id <entry_id> --tags "tag1,tag2"`
- `tag remove --id <entry_id> --tag "tag"`

## Workflow

1. Run `auth` to verify OAuth credentials.
2. Use `create` to add bookmarks.
3. Use `list` and `get` to retrieve bookmarks.
4. Use `update` or `tag` commands to adjust metadata.
5. Use `delete` only when removal is required.

## Operational Rules

- Keep tokens in process memory only. Do not persist token state to disk.
- `auth` does not print access tokens unless `--show-token` is explicitly passed.
- Return JSON output unchanged where possible.
- Emit actionable error messages on stderr and non-zero exit codes.
- Prefer `tag add` and `tag remove` when only tag mutation is needed.

## Example Prompts

- "Use $wallabag to save https://example.com with tags ai,read-later"
- "Use $wallabag to list starred entries tagged tech"
- "Use $wallabag...

README excerpt

# agent-skill-wallabag

A lightweight AI-agent skill for interacting with the [Wallabag](https://www.wallabag.org/) API.

It supports OAuth authentication and common bookmark operations:

- create entries
- list and search entries
- read a single entry
- update entry metadata
- delete entries
- add/remove tags

## Requirements

- required: `bash`, `curl`
- required for tag operations (`tag add`, `tag remove`): `jq`

## Environment Variables

Set these before running the script:

- `WALLABAG_BASE_URL`
- `WALLABAG_CLIENT_ID`
- `WALLABAG_CLIENT_SECRET`
- `WALLABAG_USERNAME`
- `WALLABAG_PASSWORD`

Example:

```bash
export WALLABAG_BASE_URL="https://wallabag.example.com"
export WALLABAG_CLIENT_ID="your-client-id"
export WALLABAG_CLIENT_SECRET="your-client-secret"
export WALLABAG_USERNAME="your-username"
export WALLABAG_PASSWORD="your-password"
```

## CLI Usage

Main command:

```bash
scripts/wallabag.sh <subcommand> [options]
```

Subcommands:

- `auth [--show-token]`
- `list [--search <text>] [--tag <name>] [--archive 0|1] [--starred 0|1] [--page <n>] [--per-page <n>]`
- `get --id <entry_id>`
- `create --url <url> [--title <title>] [--tags "tag1,tag2"]`
- `update --id <entry_id> [--title <title>] [--tags "tag1,tag2"] [--archive 0|1] [--starred 0|1]`
- `delete --id <entry_id>`
- `tag add --id <entry_id> --tags "tag1,tag2"`
- `tag remove --id <entry_id> --tag "tag"`

## Quick Example

```bash
# verify credentials (safe output, token not printed)
./scripts/wallabag.sh auth

# create bookmark
./scripts/wallabag.sh create --url "https://example.com" --tags "ai,read-later"

# find bookmark
./scripts/wallabag.sh list --search "example"
```

## Security Notes

- Do not commit credentials.
- Keep secrets in environment variables.
- OAuth password grant requires full account credentials; use a dedicated low-privilege account where possible.
- Tokens are held in-process only and are not persisted to disk.
- `auth --show-token` prints token JSON to stdout; use it only in secure, n...

Related Claw Skills