| name | bb-browser |
|---|---|
| description | 通用浏览器自动化技能 - 使用 bb-browser MCP 控制浏览器打开页面、识别组件、执行操作 |
| model | sonnet |
使用 bb-browser MCP 工具进行通用浏览器自动化操作,支持打开任意网页、识别页面元素并执行各种操作。
Beast Mode is a custom chat mode for VS Code agent that adds an opinionated workflow to the agent, including use of a todo list, extensive internet research capabilities, planning, tool usage instructions and more. Designed to be used with 4.1, although it will work with any model.
Launch a new agent that has access to the following tools: Bash, Glob, Grep, LS, exit_plan_mode, Read, Edit, MultiEdit, Write, NotebookRead, NotebookEdit, WebFetch, TodoRead, TodoWrite, WebSearch. When you are searching for a keyword or file and are not confident that you will find the right match in the first few tries, use the Agent tool to perform the search for you.
When to use the Agent tool:
When NOT to use the Agent tool:
| # --- 配置 --- | |
| # 定义要启动和监控的服务 | |
| # 格式: '服务名称' = '要执行的命令' | |
| # 服务名称将用作后台作业的名称,便于识别和管理 | |
| $servicesToMonitor = @{ | |
| "SuperGateway_MCP_Time" = 'npx -y supergateway --stdio "uvx mcp-server-time --local-timezone=Asia/Shanghai" --port 34802' | |
| "SuperGateway_MCP_Fetch" = 'npx -y supergateway --stdio "uvx mcp-server-fetch" --port 34815' # 注意: 你原始命令是 -port,这里保持一致,但通常应该是 --port | |
| "SuperGateway_MCP_Memory" = 'npx -y supergateway --stdio "npx -y @modelcontextprotocol/server-memory" --port 34813' | |
| } |
| // ==UserScript== | |
| // @name 抓取30天之前的推文ID | |
| // @namespace dray | |
| // @version 1.0 | |
| // @description 抓取 Twitter 我的推文页面中30天之前的所有推文的ID | |
| // @author dray | |
| // @match https://twitter.com/* | |
| // @grant none | |
| // @run-at document-start | |
| // @require unsafe-inline |
| // Website you intended to retrieve for users. | |
| const upstream = 'api.openai.com' | |
| // Custom pathname for the upstream website. | |
| const upstream_path = '/' | |
| // Website you intended to retrieve for users using mobile devices. | |
| const upstream_mobile = upstream | |
| // Countries and regions where you wish to suspend your service. |
Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.
setInterval(() => {
for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
d.click()
}| #!/usr/bin/env bash | |
| # SOURCE: https://eligiblestore.com/blog/2017/05/02/how-to-install-mosh-on-centos/ | |
| # ensure running as root | |
| if [[ "$(id -u)" != "0" ]]; then | |
| exec sudo "$0" "$@" | |
| fi | |
| # install mosh | |
| yum install -y epel-release |
| <?php | |
| /** | |
| * 生成短连接的相关方法--通过记录ID换算成为58位的字符串(十进制转换成58进制) | |
| */ | |
| class BaseConvert { | |
| const key_code_64 = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_$'; | |
| const key_code_58 = '123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ'; |
| <?php | |
| /** | |
| * crontab 时间格式php解析类(PHP 5 >= 5.1.0) | |
| * | |
| * @author 肖武 <tsxw24@gmail.com> | |
| * @link https://code.google.com/p/xwcrontab/ | |
| */ | |
| class XwCrontab { |