Avito skill
Skill 18studio/avito-skill
Manage Avito business workflows through the `avito-py` Python SDK from `p141592/avito_python_api`. Use when Codex needs to analyze Avito listings, paid promotion, chats, calls, CPA leads, orders, delivery, labels, stock, reviews, ratings, realty pricing/bookings, jobs/vacancies/applications/resumes, account balance, employees, phones, tariffs, or Autoload diagnostics.From its SKILL.md
npx -y skills add 18studio/avito-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
3.0 KB, 555 tokens by cl100k_base, as published. Nobody here has run it
Avito Business
Use this skill to turn an Avito business goal into a safe avito-py workflow: read data, diagnose the business situation, recommend actions, and only execute risky operations after explicit user confirmation.
Core Rules
- Use only
avito-pyfromp141592/avito_python_api: https://p141592.github.io/avito_python_api/. - Use
avito.AvitoClientand SDK configuration from environment, preferablyAvitoClient.from_env(). - Do not use other SDKs, unofficial wrappers, scraping, browser automation, or direct HTTP unless
avito-pylacks the required operation and the user explicitly approves the fallback. - Use final domain methods from
avito-pydirectly. Do not recreate missing SDK workflows with custom aggregation, parsing, scoring, or business heuristics. - If
avito-pylacks a final method for the requested report or action, return the required SDK/API improvements instead of implementing the missing logic locally. - Default to read/report/preview mode.
- Never expose tokens, client secrets, refresh tokens, authorization headers, or raw credential-bearing errors.
Workflow
- Identify the user's business goal: diagnose, compare, recommend, preview, or execute.
- Identify scope: account, user, item IDs, order IDs, chat IDs, date range, category, employee, or workflow domain.
- Read relevant data first through
AvitoClientdomain objects. - Compute a business diagnosis using account-relative baselines where possible.
- Present recommended actions with reason, expected impact, required data, and risk.
- Require explicit confirmation before paid, write, destructive, or reputation-affecting operations.
Reference Navigation
- Read references/sdk-domain-map.md when mapping a business request to
avito-pydomains and methods. - Read references/business-scenarios.md for workflow patterns and expected business outputs.
- Read references/decision-rules.md when turning metrics into recommendations.
- Read references/safety.md before any paid, write, destructive, or reputation-affecting action.
Bundled Scripts
scripts/avito_smoke_check.py: verify import, client configuration, auth, current account, and optional balance without printing secrets.scripts/listing_health_report.py: generate a read-only JSON or CSV listing health report.scripts/promotion_decision_preview.py: preview promotion recommendations for item IDs without buying promotion.
Run scripts with --help first when unsure about parameters.
What ships with it: 9 files
49.4 KB alongside SKILL.md, 3 of them executable
agents/
- openai.yaml204 B
references/
- business-scenarios.md4.4 KB
- decision-rules.md3.5 KB
- safety.md2.0 KB
- sdk-domain-map.md4.7 KB
scripts/
- avito_smoke_check.pyruns3.3 KB
- listing_health_report.pyruns2.3 KB
- promotion_decision_preview.pyruns8.1 KB
- todo.md20.9 KB