skills$openclaw/avito
ruslanlanket5.3k

by ruslanlanket

avito – OpenClaw Skill

avito is an OpenClaw Skills integration for coding workflows. Manage Avito.ru account, items, and messenger via API. Use for listing items, checking balance, reading chats, and getting account info.

5.3k stars2.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameavito
descriptionManage Avito.ru account, items, and messenger via API. Use for listing items, checking balance, reading chats, and getting account info. OpenClaw Skills integration.
ownerruslanlanket
repositoryruslanlanket/avito
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @ruslanlanket/avito
last updatedFeb 7, 2026

Maintainer

ruslanlanket

ruslanlanket

Maintains avito in the OpenClaw Skills directory.

View GitHub profile
File Explorer
8 files
.
scripts
auth.py
688 B
get_balance.py
639 B
get_self.py
578 B
list_chats.py
635 B
list_items.py
578 B
_meta.json
288 B
SKILL.md
1.2 KB
SKILL.md

name: avito description: Manage Avito.ru account, items, and messenger via API. Use for listing items, checking balance, reading chats, and getting account info.

Avito

This skill provides tools to interact with the Avito.ru API.

Requirements

  • requests library for Python.
  • Avito Client ID and Client Secret.

Setup

Set your credentials in your environment or provide them when prompted.

Features

Authentication

Get an access token using your client credentials.

python3 scripts/auth.py <client_id> <client_secret>

Account Info

Get information about your account, including your user_id.

python3 scripts/get_self.py <token>

Balance

Check your account balance.

python3 scripts/get_balance.py <token> <user_id>

Items Management

List your current advertisements.

python3 scripts/list_items.py <token>

Messenger

List chats in your account.

python3 scripts/list_chats.py <token> <user_id>

Note: Messenger API access may require a specific Avito subscription.

TODO

  • Implement item creation (POST /items).
  • Implement item status updates (editing, deleting).
  • Implement webhook registration.
  • Implement messenger message sending and retrieval.
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

- `requests` library for Python. - Avito Client ID and Client Secret.

FAQ

How do I install avito?

Run openclaw add @ruslanlanket/avito in your terminal. This installs avito into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/ruslanlanket/avito. Review commits and README documentation before installing.