Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

avenir-web未来网

Agent Skill

avenir-web 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,488

周安装

437

GitHub Stars

公开资料未说明

下载量

3,496
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:avenir-web(未来网)
来源仓库:https://github.com/yiliu-li/avenir-web
安装命令:
openclaw skills install avenir-web
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install avenir-web

简介

通过模式选择、指令验证、单次或批量运行以及下一步建议,端到端执行和改进 Avenir-Web 自主 Web 任务。

SKILL.md

name
avenir-web
description
Use this skill to run and improve Avenir-Web autonomous web tasks end-to-end: choose mode (headless/headed/demo), write clear task instructions, execute single or batch runs, and propose high-impact next iterations.

Avenir-Web

What this skill does

This skill operates Avenir-Web for reliable web-task execution and iteration.

Responsibilities:

  • run single tasks and batch tasks
  • choose mode (headless / headed / demo)
  • improve instruction quality before execution
  • analyze run outputs and recommend the next best change
  • execute one atomic action without strategy/checklist overhead
  • read the current page by screenshoting it and asking the main model a question

Use this skill for requests like:

  • run a task on a website
  • run a task list and summarize outcomes
  • improve success rate with better instructions/config

Canonical entrypoints

Single task:

python example.py --task "<instruction>" --website "<url>" --mode headless

Atomic action:

python scripts/atomic_action.py --action CLICK --website "<url>" --coords "500,500"

Read page:

python scripts/read_page.py --website "<url>" --question "<question>"

Batch:

cd src
python run_agent.py -c config/batch_experiment.toml

Prefer these scripts over ad-hoc commands.

Quick usage example

Single task:

python example.py \
  --task "On openrouter.ai, list image-input-capable distillable models sorted by price ascending." \
  --website "https://openrouter.ai/" \
  --mode demo

Batch:

cd src
python run_agent.py -c config/batch_experiment.toml

Atomic action:

python scripts/atomic_action.py \
  --action TYPE \
  --website "https://example.com/" \
  --coords "500,420" \
  --value "hello"

Read page:

python scripts/read_page.py \
  --website "https://openrouter.ai/" \
  --question "What models or prices are visible on this page?"

Run modes

modebehaviorbest for
headlessno visible browser windowfast, reproducible runs and large batch jobs
headedvisible browser windowmanual observation without demo overlay
demovisible window + overlay/dashboard controlslive debugging and demonstrations

Notes:

  • if mode is missing, use headless
  • demo improves observability, not model intelligence

Mode selection:

  1. benchmark/batch -> headless
  2. visual debugging -> headed
  3. demo/control flow visibility -> demo

Instruction design

confirmed_task should include:

  1. objective
  2. constraints
  3. completion condition

Template:

  • On <website>, <objective>. Apply constraints: <constraints>. Finish when <observable completion state>.

Keep it single-goal, specific, and verifiable.

Single-task workflow

Input:

  • task
  • website
  • optional mode, task-id, output-dir

Steps:

  1. check environment and API key
  2. validate instruction quality
  3. run example.py
  4. inspect outputs
  5. report status + cause + next action

Recommended report fields:

  • task_id
  • status: success / partial / failed
  • evidence summary
  • one-line cause
  • one recommended next step

Atomic action workflow

Use scripts/atomic_action.py when you need exactly one browser operation and do not want strategist/checklist generation.

Typical uses:

  • one click
  • one type
  • one goto
  • one scroll

Properties:

  • disables strategy generation
  • disables checklist generation
  • executes exactly one action
  • returns structured JSON with result, URL, screenshot path, and output directory

Read-page workflow

Use scripts/read_page.py when you want to inspect the current page by screenshot and ask the main model a direct question.

Properties:

  • opens the page
  • captures a screenshot
  • sends the screenshot plus page metadata to the main model
  • returns structured JSON with the answer and screenshot path

Batch workflow

Task file schema

[
  {
    "task_id": "example_task_001",
    "confirmed_task": "Find image-input-capable distillable models sorted by price ascending.",
    "website": "https://openrouter.ai/"
  }
]

Required per task:

  • task_id
  • confirmed_task
  • website

Config checklist (src/config/batch_experiment.toml)

  • [basic].save_file_dir
  • [experiment].task_file_path
  • [experiment].max_op
  • [playwright].mode
  • [model].name
  • API key source

Batch execution

  1. validate JSON schema and config paths
  2. choose mode and max_op
  3. run batch command
  4. summarize per-task outcomes
  5. provide one global improvement recommendation

Recommended batch report fields:

  • total/completed/failed counts
  • per-task status list
  • recurring issue patterns
  • one highest-impact next change

API requirements

Required credential:

  • OPENROUTER_API_KEY (preferred)

Resolution order:

  1. environment variable OPENROUTER_API_KEY
  2. [api_keys].openrouter_api_key in TOML (fallback)

Rules:

  • never hardcode real keys in source files
  • never print full keys in logs/outputs/reports
  • fail fast if key is missing with an actionable message

Script usage rules

  • script-first: use repository entrypoints before custom commands
  • non-interactive CLI only
  • explicit flags and paths
  • deterministic behavior preferred
  • clear, actionable error messages

If adding helper scripts:

  1. place under scripts/
  2. use CLI flags (no prompts)
  3. return stable, parseable summaries
  4. document usage in this file

Environment checklist

Before running:

  1. Python environment available
  2. dependencies installed (pip install -e src)
  3. Playwright Chromium installed (python -m playwright install chromium)
  4. API key configured
  5. config/task paths valid

Output contract

Each run summary should include:

  1. execution metadata: run type, mode, task IDs
  2. outcome: status and evidence summary
  3. diagnosis: root-cause hypothesis
  4. next action: one highest-impact recommendation

Boundaries

  • do not claim completion without evidence
  • do not skip issue summary
  • avoid large refactors before instruction/config fixes
  • avoid interactive prompts in core workflow

One-line identity

Avenir-Web execution and reliability skill: mode selection + instruction design + run analysis + iteration planning.

适合场景

01

调用多模型

02

代码和文本生成

03

Agent 推理流程

04

OpenRouter 模型接入

能力概览

能力 1

统一调用多种 LLM

能力 2

支持 Claude、Gemini、Kimi 等模型

能力 3

适合聊天、代码和推理任务

能力 4

可作为 Agent 模型调用入口

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

79.46%
按下载量换算2,778

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills