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

stably-clistably CLI 搜索

Agent Skill

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

总安装

1,536

周安装

64

GitHub Stars

6

下载量

512
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:stably-cli(stably CLI 搜索)
来源仓库:https://github.com/stablyai/agent-skills
仓库路径:skills/stably-cli
安装命令:
npx skills add https://github.com/stablyai/agent-skills --skill stably-cli
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/stablyai/agent-skills --skill stably-cli

简介

用于查找和筛选相关信息以支持任务决策。

  • 适合根据关键词快速定位候选结果或技术资料。
  • 需结合具体场景判断检索结果的适用性。stably-cli 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装前应核实仓库维护状态与联网权限。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 工具输出不可直接作为最终结论,需人工复核。

SKILL.md

Stably CLI Assistant

AI-assisted Playwright test management: plan, create, run, fix, and maintain tests via CLI.

Pre-flight

Always run stably --version first. If not found, install with npm install -g stably or use npx stably. Requires Node.js 20+, Playwright, and a Stably account.

Warning: Do NOT run stably with no arguments — it launches interactive chat mode that requires human input and will hang an AI agent.

Command Reference

IntentCommand
Interactive AI chat (human only)stably (no args) — do NOT invoke from an AI agent
Plan test coveragestably plan
Plan specific areastably plan "focus on checkout"
Generate test from promptstably create "description"
Generate test from branch diffstably create (no prompt)
Run testsstably test
Run tests with custom namestably test --suiteName="nightly"
Run tests with remote envstably --env staging test
Fix failing testsstably fix [runId]
Initialize projectstably init
Install browsersstably install (use --with-deps chromium in CI)
List remote environmentsstably env list
Inspect env variablesstably env inspect <name>
Authstably login / logout / whoami
Verify app behaviorstably verify "description"
Verify with URLstably verify "description" --url http://localhost:3000
List recent test runsstably runs list
View run detailsstably runs view <runId>
Flaky test analyticsstably analytics flaky
Failure analyticsstably analytics failures
Update CLIstably upgrade [--check]

Global Options

OptionDescription
--cwd <path> / -CChange working directory
--env <name>Load vars from remote Stably environment
--env-file <path>Load vars from local file (repeatable)
--browser <type>Browser type: local or cloud (default: local). Also settable via STABLY_CLOUD_BROWSER=1 env var
--verbose / -vVerbose logging
--no-telemetryDisable telemetry

Env var precedence (highest → lowest): Stably auth (STABLY_API_KEY) → process.env--env-file--env

Core Commands

stably plan [prompt...]

Discovers coverage gaps by exploring the codebase and generates test.fixme() skeleton files with priority tags (@p0@p3). Without a prompt, analyzes the entire app; with a prompt, scopes discovery to that area.

stably plan                                         # full autonomous discovery
stably plan "focus on checkout and auth"             # scoped plan
stably plan "plan tests for features in this PR"     # PR-scoped

Outputs one spec file per group in the repo's existing test directory. Each file contains test.describe() flows with test.fixme() scenarios. Existing files with real test() implementations are never modified. Safe to re-run (idempotent, max 200 flows per invocation).

Typical workflow: stably plan → team reviews/adjusts priorities → stably create "implement all @p0 tests"stably teststably fix

Also writes key project discoveries (auth patterns, framework conventions) to STABLY.md for future agent runs.

stably create [prompt...]

Generates tests from a prompt (quotes optional) or infers from branch diff when no prompt given.

  • --output <dir> — override output directory (auto-detected from playwright.config.ts testDir or common dirs like tests/, e2e/)
  • --browser <type> — use cloud for cloud browser execution (default: local)
stably create "test the checkout flow"
stably create                              # infer from diff
stably create "test registration" --output ./e2e
stably create "implement all @p0 tests"    # implement planned test.fixme() skeletons
stably create --browser cloud "test login" # use cloud browser

Prompt tips: be specific about user flows, UI elements, auth requirements, and error states.

stably test

Runs Playwright tests with Stably reporter. Auto-enables --trace=on. All Playwright CLI options pass through:

stably test --headed --project=chromium --workers=4
stably test --grep="login" tests/login.spec.ts
stably --env staging test --headed
stably test --suiteName="nightly smoke tests"
  • --suiteName <name> — Override the reported suite name shown on the dashboard and in Slack notifications. When omitted, defaults to the full list of Playwright project names being run (sorted alphabetically, joined with ,). Also settable via STABLY_SUITE_NAME env var or stablyReporter({suiteName: "..."}) in Playwright config.

stably fix [runId]

Fixes failing tests using AI analysis of traces, screenshots, logs, and DOM state.

Run ID resolution: explicit arg → CI env (the CLI maps GitHub's run ID to the corresponding Stably run) → .stably/last-run.json (warns if >24h old). Requires git repo.

stably fix          # auto-detect last run
stably fix abc123   # explicit run ID

Typical workflow: stably test → (failures?) → stably fixstably test

stably verify <prompt...>

Verifies app behavior against a natural-language description without generating test files.

  • -u, --url <url> — target URL (otherwise auto-detected)
  • --max-budget <dollars> — max budget in USD (default: 5)
  • --no-interactive — disable interactive prompts
  • --browser <type> — use cloud for cloud browser execution (default: local)

Exit codes: 0 = PASS, 1 = FAIL, 2 = INCONCLUSIVE.

stably verify "users can sign up with email"
stably verify "checkout flow works" --url http://localhost:3000
stably verify "login page loads" --no-interactive

Agent note: The default $5 budget is sufficient for most verifications. Avoid increasing --max-budget without explicit user approval.

stably runs list [options]

Lists recent test runs for the current project.

  • -b, --branch <name> — filter by git branch
  • -n, --limit <number> — max results (default 20, max 100)
  • --after <runId> / --before <runId> — cursor-based pagination by run ID
  • --source <source> — filter by source (local, ci, web)
  • -s, --status <status> — filter by status: queued, running, passed, failed, timedout, cancelled, interrupted
  • --suite <name> — filter by test suite
  • --trigger <trigger> — filter by trigger type: manual, scheduled, ui, api, github_action, suite_run
  • --json — output as JSON (preferred for AI agents)
stably runs list                           # recent runs
stably runs list --status failed           # find failed runs
stably runs list --branch main --limit 5   # recent runs on main
stably runs list --json                    # machine-readable output

Agent note: Always use --json for machine-readable output when parsing run data programmatically.

stably runs view <runId> [options]

Shows details for a specific test run including metadata, issues with root causes, and individual test results.

  • --json — output as JSON (preferred for AI agents)
stably runs view abc123
stably runs view abc123 --json

stably analytics flaky [options]

Shows the most flaky tests ranked by flaky rate over a configurable time window.

  • --days <n> — look-back window in days (1–90, default: 7)
  • -b, --branch <name> — filter by branch name
  • -n, --limit <n> — max rows returned (1–100, default: 10)
  • --json — output as JSON (preferred for AI agents)
stably analytics flaky                          # flaky tests, last 7 days
stably analytics flaky --days 30 --limit 20     # wider window, more results
stably analytics flaky --branch main --json     # machine-readable, main only

stably analytics failures [options]

Shows the most failing tests ranked by failure rate over a configurable time window.

  • --days <n> — look-back window in days (1–90, default: 7)
  • -b, --branch <name> — filter by branch name
  • -n, --limit <n> — max rows returned (1–100, default: 10)
  • --json — output as JSON (preferred for AI agents)
stably analytics failures                       # failing tests, last 7 days
stably analytics failures --days 14             # last 2 weeks
stably analytics failures --branch main --json  # machine-readable, main only

Agent note: Always use --json for machine-readable output when parsing analytics data programmatically.

Remote Environments

stably env list — list environments in current project. stably env inspect <name> — show variable names/metadata (values never printed).

Use --env for team-shared dashboard variables; --env-file for local .env files. Both combine (--env wins).

Long-Running Commands (AI Agents)

stably plan, stably create, stably fix, and stably verify are AI-powered and can take several minutes.

AgentConfiguration
Claude Codetimeout: 600000 (preferred — retains command output), or run_in_background: true when parallel work is needed
Cursorblock_until_ms: 900000 (default 30s is too short)

stably test duration depends on suite size — use the same timeout for large suites. All other commands complete in seconds.

If a command times out or fails: retry once with --verbose for diagnostics. AI-powered commands are idempotent — retrying is safe. If failures persist, check stably whoami (auth) and network connectivity.

For general long-running command patterns (dev servers, watchers), see bash-commands skill.

Configuration

Required Env Vars

# NEVER hardcode real values — use .env files (gitignored) or CI secrets
STABLY_API_KEY=your_key       # from https://auth.stably.ai/org/api_keys/
STABLY_PROJECT_ID=your_id     # from dashboard

Set via .env file, --env-file, or --env (remote).

Playwright Config

stably test auto-enables tracing. Set trace: 'on' in config too for direct npx playwright test runs:

import { defineConfig, stablyReporter } from '@stablyai/playwright-test';

export default defineConfig({
  use: { trace: 'on' },
  reporter: [
    ['list'],
    stablyReporter({
      apiKey: process.env.STABLY_API_KEY,
      projectId: process.env.STABLY_PROJECT_ID,
    }),
  ],
});

CI/CD: GitHub Actions

Important CI patterns

  • Use continue-on-error: true on test, fix, and PR steps so the pipeline can run fix/PR steps after failures — but always add a final step that fails the workflow if tests failed. Without continue-on-error on the fix/PR steps, a failure there blocks downstream steps.

Self-healing test pipeline

name: E2E Tests with Auto-Fix
on: [push, pull_request]
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with: { node-version: '20' }
      - run: npm ci
      - name: Install browsers
        run: npx stably install
        env:
          STABLY_API_KEY: ${{ secrets.STABLY_API_KEY }}
          STABLY_PROJECT_ID: ${{ secrets.STABLY_PROJECT_ID }}
      - name: Run tests
        id: test
        continue-on-error: true
        run: npx stably --env staging test
        env:
          STABLY_API_KEY: ${{ secrets.STABLY_API_KEY }}
          STABLY_PROJECT_ID: ${{ secrets.STABLY_PROJECT_ID }}
      - name: Auto-fix failures
        if: steps.test.outcome == 'failure'
        continue-on-error: true
        run: npx stably --env staging fix
        env:
          STABLY_API_KEY: ${{ secrets.STABLY_API_KEY }}
          STABLY_PROJECT_ID: ${{ secrets.STABLY_PROJECT_ID }}
      - name: Create PR with fixes
        if: steps.test.outcome == 'failure'
        continue-on-error: true
        run: |
          if [ -n "$(git status --porcelain)" ]; then
            BRANCH="stably-fix/$(date +%Y%m%d-%H%M%S)"
            git config user.name "github-actions[bot]"
            git config user.email "github-actions[bot]@users.noreply.github.com"
            git checkout -b "$BRANCH"
            git add -A
            git commit -m "fix: auto-repair failing tests"
            git push origin "$BRANCH"
            gh pr create \
              --title "fix: auto-repair failing tests" \
              --body "Automated PR from Stably Fix after test failures in run #${{ github.run_number }}." \
              --base "${{ github.ref_name }}" \
              --head "$BRANCH"
          fi
        env:
          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      - name: Fail if tests failed
        if: steps.test.outcome == 'failure'
        run: |
          echo "::error::Tests failed"
          exit 1

Troubleshooting

ProblemSolution
"Not authenticated"stably login
API key not recognizedstably whoami to verify
Tests in wrong directorystably create "..." --output./tests/e2e
Missing browserstably install
Traces not uploadingSet trace: 'on' in playwright.config.ts
"Run ID not found"Run stably test first, then stably fix

Links

Docs · CLI Quickstart · Dashboard · API Keys

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

36.23%
按下载量换算185

Claude

30.06%
按下载量换算154

Cursor

18.76%
按下载量换算96

Gemini CLI

9.3%
按下载量换算48

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills