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

scenariosscenarios 搜索

Agent Skill

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

总安装

216

周安装

9

GitHub Stars

26

下载量

72
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/outfitter-dev/agents --skill scenarios

简介

用于搜索和整理与特定主题相关的应用场景案例。

  • 适合在解决方案设计中寻找可借鉴的实践模式。
  • 可过滤来源和标签,输出结构化场景描述。scenarios 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装依赖 GitHub 仓库,需确认索引数据完整性。
  • 案例参考价值取决于原始数据的准确性和时效性。

SKILL.md

Scenario Testing

End-to-end validation using real dependencies, no mocks ever.

<when_to_use>

  • End-to-end feature validation
  • Integration testing across services
  • Proof programs demonstrating behavior
  • Real-world workflow testing
  • API contract verification
  • Authentication flow validation

NOT for: unit testing, mock testing, performance benchmarking, load testing

</when_to_use>

<iron_law>

NO MOCKS EVER.

Truth hierarchy:

  1. Scenarios — real dependencies, actual behavior
  2. Unit tests — isolated logic, synthetic inputs
  3. Mocks — assumptions about how things work

Mocks test your assumptions, not reality. When mocks pass but production fails, the mock lied. When scenarios fail, reality spoke.

Test against real databases, real APIs, real services. Use test credentials, staging environments, local instances — but always real implementations.

</iron_law>

<directory_structure>

.scratch/ (gitignored)

Throwaway test scripts for quick validation. Self-contained, runnable, disposable.

CRITICAL: Verify.scratch/ in.gitignore before first use.

scenarios.jsonl (committed)

Successful scenario patterns documented as JSONL. One scenario per line, each a complete JSON object.

Purpose: capture proven patterns, regression indicators, reusable test cases.

Structure:

{"name":"auth-login-success","description":"User logs in with valid credentials","setup":"Create test user with known password","steps":["POST /auth/login with credentials","Receive JWT token","GET /auth/me with token"],"expected":"User profile returned with correct data","tags":["auth","jwt","happy-path"]}
{"name":"auth-login-invalid","description":"Login fails with wrong password","setup":"Test user exists","steps":["POST /auth/login with wrong password"],"expected":"401 Unauthorized, no token issued","tags":["auth","error-handling"]}

</directory_structure>

<scratch_directory>

Purpose

Quick validation without ceremony. Write script, run against real deps, verify behavior, delete or document.

Characteristics

  • Gitignored — never committed, purely local
  • Disposable — delete after validation or promote to permanent tests
  • Self-contained — runnable with single command
  • Real dependencies — actual DB, real APIs, live services

Naming Conventions

  • test-{feature}.ts — feature validation (test-auth-flow.ts)
  • debug-{issue}.ts — investigate specific bug (debug-token-expiry.ts)
  • prove-{behavior}.ts — demonstrate expected behavior (prove-rate-limiting.ts)
  • explore-{api}.ts — learn external API behavior (explore-stripe-webhooks.ts)

Example Structure

// .scratch/test-auth-flow.ts
import { db } from '../src/db'
import { api } from '../src/api'

async function testAuthFlow() {
  // Setup: real test user in real database
  const user = await db.users.create({
    email: 'test@example.com',
    password: 'hashed-test-password'
  })

  // Execute: real HTTP requests
  const loginRes = await api.post('/auth/login', {
    email: user.email,
    password: 'test-password'
  })

  // Verify: actual response
  console.assert(loginRes.status === 200, 'Login should succeed')
  console.assert(loginRes.body.token, 'Should receive JWT token')

  const meRes = await api.get('/auth/me', {
    headers: { Authorization: `Bearer ${loginRes.body.token}` }
  })

  console.assert(meRes.status === 200, 'Auth should work')
  console.assert(meRes.body.email === user.email, 'Should return correct user')

  // Cleanup
  await db.users.delete({ id: user.id })

  console.log('✓ Auth flow validated')
}

testAuthFlow().catch(console.error)

</scratch_directory>

<scenarios_jsonl>

Format

Each line is complete JSON object with fields:

{
  name: string        // unique identifier (kebab-case)
  description: string // human-readable summary
  setup: string       // prerequisites and state preparation
  steps: string[]     // ordered actions to execute
  expected: string    // success criteria
  tags: string[]      // categorization (auth, api, error, etc)
  env?: string        // required environment (staging, local, prod-readonly)
  duration_ms?: number // typical execution time
}

Purpose

  • Pattern library — proven scenarios for regression testing
  • Documentation — executable specification of system behavior
  • Regression detection — compare new behavior against known-good patterns
  • Test generation — source material for permanent test suites

When to Document

Document in scenarios.jsonl when:

  • Scenario validates critical user path
  • Bug was caught by this scenario (regression prevention)
  • Behavior is non-obvious or frequently questioned
  • Integration pattern is reusable across features

Delete from.scratch/ when:

  • One-time debugging script
  • Exploratory testing that didn't find issues
  • Temporary verification during development

</scenarios_jsonl>

Loop: Write → Execute → Document → Cleanup

  1. Write proof program — self-contained script in.scratch/
  2. Run against real dependencies — actual DB, live APIs, real services
  3. Verify behavior — assertions on actual responses
  4. Document if successful — add pattern to scenarios.jsonl
  5. Cleanup — delete script or promote to permanent tests

Each iteration:

  • Script is throwaway (lives in.scratch/)
  • Dependencies are real (no mocks, no stubs)
  • Validation is concrete (actual behavior observed)
  • Pattern captured if valuable (scenarios.jsonl)

<gitignore_check>

MANDATORY before first.scratch/ use:

grep -q '.scratch/' .gitignore || echo '.scratch/' >> .gitignore

Verify.scratch/ directory will not be committed. All test scripts are local-only.

If.gitignore doesn't exist, create it:

[ -f .gitignore ] || touch .gitignore
grep -q '.scratch/' .gitignore || echo '.scratch/' >> .gitignore

</gitignore_check>

1. Setup → Setting up scenario environment

Prepare real dependencies:

  • Spin up local database (Docker, embedded)
  • Configure test API keys (staging credentials)
  • Initialize test data (real records, not fixtures)
  • Verify service connectivity

2. Script → Writing proof program

Create.scratch/ test script:

  • Import real dependencies (no mocks)
  • Setup stage: prepare state
  • Execute stage: perform actions
  • Verify stage: assert on results
  • Cleanup stage: restore state

3. Execute → Running against real dependencies

Run proof program:

  • Execute with real database connection
  • Call actual API endpoints
  • Use live service instances
  • Observe actual behavior (no simulation)

4. Document → Capturing successful patterns

If scenario validates behavior:

  • Extract pattern to scenarios.jsonl
  • Document setup requirements
  • Record expected outcomes
  • Tag for categorization

Delete.scratch/ script or promote to permanent test suite.

ALWAYS:

  • Verify.scratch/ in.gitignore before first use
  • Test against real dependencies (actual DB, live APIs)
  • Use self-contained scripts (runnable with single command)
  • Document successful scenarios in scenarios.jsonl
  • Cleanup test data after execution
  • Tag scenarios for easy filtering
  • Include cleanup stage in all scripts
  • Use test credentials (never production)

NEVER:

  • Use mocks, stubs, or test doubles
  • Commit.scratch/ directory contents
  • Test against production data
  • Skip cleanup stage
  • Assume behavior without verification
  • Promote assumptions to truth
  • Test mocked behavior instead of reality
  • Leave test data in shared environments

ESCALATE when:

  • No staging environment available
  • Real dependencies too expensive to test
  • Test requires destructive production operations
  • Cannot obtain test credentials

Patterns and examples:

Related skills:

  • debugging — investigation methodology (scenarios help reproduce bugs)
  • tdd — TDD workflow (scenarios validate features)
  • codebase-recon — evidence gathering (scenarios provide empirical data)

External resources:

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

github-copilot

26.61%
按下载量换算19

kilo

23.76%
按下载量换算17

windsurf

18.29%
按下载量换算13

zencoder

14.19%
按下载量换算10

amp

7.65%
按下载量换算6

cline

3.16%
按下载量换算2

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills