Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

k6-docsk6 文档

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

1,320

周安装

55

GitHub Stars

公开资料未说明

下载量

440
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/takuan-osho/ccmarketplace --skill k6-docs

简介

k6-docs 用于辅助文档整理和改写,适合在 Markdown 和说明文写作中提炼结构和统一术语。

  • 适用于 README 文档、技术说明和内容稿件的整理与优化场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态后再使用。
  • 使用时需保留项目已有事实和命令,避免将未确认信息写成确定结论;涉及对外文案时应控制语气。
  • 具体用法请结合原始 README 文档进一步核验功能细节和使用限制。

SKILL.md

Grafana k6 Documentation Access

Overview

This skill enables access to the latest official Grafana k6 documentation for writing and debugging load testing scripts. k6 is a modern load testing tool built for performance testing APIs, microservices, and websites.

When to Use This Skill

Use this skill when:

  • Writing new k6 load testing scripts
  • Debugging existing k6 test code
  • Looking up k6 API methods and their parameters
  • Understanding k6 test lifecycle hooks
  • Learning about k6 metrics and thresholds
  • Implementing k6 checks and custom metrics
  • Using k6 extensions or modules
  • Troubleshooting k6 test execution issues

Core Capabilities

1. Documentation Access

Access the latest k6 documentation using the WebFetch tool:

Primary documentation URLs:

Common API reference URLs:

Usage pattern:

Use WebFetch with the appropriate documentation URL and a focused prompt like:
- "Show me the API reference for http.post method"
- "Explain how to use checks in k6"
- "Show examples of custom metrics"

2. Common k6 Patterns

Basic HTTP GET test:

import http from 'k6/http';
import { check, sleep } from 'k6';

export const options = {
  vus: 10,
  duration: '30s',
};

export default function () {
  const res = http.get('https://test.k6.io');
  check(res, {
    'status is 200': (r) => r.status === 200,
  });
  sleep(1);
}

HTTP POST with JSON:

import http from 'k6/http';
import { check } from 'k6';

export default function () {
  const url = 'https://httpbin.test.k6.io/post';
  const payload = JSON.stringify({
    name: 'test',
  });
  const params = {
    headers: {
      'Content-Type': 'application/json',
    },
  };

  const res = http.post(url, payload, params);
  check(res, {
    'status is 200': (r) => r.status === 200,
  });
}

Ramp-up + steady + ramp-down stages with thresholds:

import http from 'k6/http';
import { check, sleep } from 'k6';

export const options = {
  stages: [
    { duration: '1m', target: 100 }, // ramp up to 100 VUs
    { duration: '3m', target: 100 }, // steady at 100 VUs
    { duration: '1m', target: 0 },   // ramp down to 0
  ],
  thresholds: {
    http_req_duration: ['p(95)<500'], // p95 latency < 500ms
    http_req_failed: ['rate<0.01'],   // error rate < 1%
    checks: ['rate>0.99'],            // 99%+ checks pass
  },
};

export default function () {
  const res = http.get(`${__ENV.BASE_URL || 'https://test.k6.io'}/api/users`);
  check(res, { 'status is 200': (r) => r.status === 200 });
  sleep(1);
}
Threshold syntax cheatsheet (the most-used metrics): - http_req_duration: ['p(95)<500'] — 95th percentile under 500ms - http_req_failed: ['rate<0.01'] — failure rate under 1% - checks: ['rate>0.99'] — at least 99% of check() calls pass - iteration_duration: ['avg<1000'] — average iteration under 1s Failed check() calls do NOT increment http_req_failed; that metric only tracks HTTP-level failures (network errors, 5xx). Use checks threshold to enforce assertion success rate.

3. Documentation Search Strategy

When searching for specific k6 functionality:

  1. Start broad: Use WebSearch to find relevant documentation pages

- Example: "k6 load testing custom metrics documentation"

  1. Then go specific: Use WebFetch on the most relevant documentation URL

- Example: WebFetch https://grafana.com/docs/k6/latest/javascript-api/k6-metrics/

  1. For API methods: Navigate to the JavaScript API section

- Base URL: https://grafana.com/docs/k6/latest/javascript-api/ - Module-specific: https://grafana.com/docs/k6/latest/javascript-api/k6-http/

  1. For how-to guides: Check the "Using k6" section

- Base URL: https://grafana.com/docs/k6/latest/using-k6/

4. Key k6 Concepts

Test lifecycle:

  • init context: Load-time code (imports, options)
  • setup(): Runs once before tests
  • default function(): VU code, runs repeatedly
  • teardown(): Runs once after tests

Load options:

  • vus: Number of virtual users
  • duration: Test duration
  • iterations: Total iterations across all VUs
  • stages: Ramping pattern
  • thresholds: Pass/fail criteria

HTTP methods:

  • http.get(), http.post(), http.put(), http.delete()
  • http.batch() for parallel requests

Checks vs Thresholds:

  • check(): Validates conditions, doesn't stop test
  • thresholds: Define pass/fail criteria, can abort test

Workflow

  1. Identify the need: Determine what k6 functionality is required
  2. Search documentation: Use WebSearch or directly access known doc URLs
  3. Fetch specific pages: Use WebFetch to get detailed information
  4. Implement code: Write k6 test code based on documentation
  5. Validate: Check against examples and best practices in docs

Best Practices

  • Always check the latest documentation URL structure (grafana.com/docs/k6/latest/)
  • For complex scenarios, look for examples in the Examples section
  • When troubleshooting, check both the API reference and the Using k6 guides
  • Use WebSearch first if unsure which documentation page to fetch
  • Reference multiple documentation pages if implementing complex features

Common Documentation Sections

Notes

  • This skill does not bundle k6 documentation locally; it fetches the latest version online
  • Always verify that fetched documentation is current by checking the URL includes /latest/
  • For version-specific documentation, replace /latest/ with the specific version number
  • k6 documentation is comprehensive and well-organized; use the table of contents for navigation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.66%
按下载量换算126

Antigravity

22.87%
按下载量换算101

OpenCode

18.52%
按下载量换算81

windsurf

13.21%
按下载量换算58

Codex

8.52%
按下载量换算37

trae

3.42%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills