Install
$ agentstack add skill-tuannv14-claude-team-toolkit-k6 ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
/k6 — load testing with environment profiles
Wrapper around k6 for load/stress/soak tests. Profiles select target environment (dev/staging/prod) so the same script runs against different hosts with different auth. Profile resolution: --profile → K6_PROFILE → ~/.k6/active_profile → [default].
Overview
Profiles select the target environment so the same script runs against different hosts with different auth. Prod profiles require typed RUN confirmation to prevent accidental DDoS of own infrastructure.
When to Use
- Pre-release load testing (smoke/load before deploy)
- Capacity planning (find breakpoint with stress test)
- Soak tests (memory leaks, connection pool issues over time)
- Latency regression tracking (p50/p95/p99 vs baseline)
- Spike tests (cold cache, autoscaling validation)
When NOT to Use
- Hitting third-party APIs without their consent → DDoS / TOS violation
- Functional testing → k6 is for load, not assertion-heavy logic
- Browser-based UI testing → use Maestro/Detox, not k6
- VUs > 1000 without
--force→ almost always a typo
Dependencies
choco install k6 # Windows (or scoop install k6)
brew install k6 # macOS
# Linux: see https://k6.io/docs/get-started/installation/
Verify: k6 version. If missing, stop.
Profile config
~/.k6/credentials (mode 600 — may contain auth tokens):
[default]
base_url = http://localhost:3000
auth_header =
vus = 10
duration = 30s
[staging]
base_url = https://staging.example.com
auth_header = Bearer eyJxxxxxxxx...
vus = 50
duration = 2m
[prod]
base_url = https://api.example.com
auth_header = Bearer eyJxxxxxxxx...
vus = 100
duration = 5m
require_confirm = true # prod special: require typed RUN
> Shared profile/INI/ctt_* pattern reference: [profiles-and-credentials](../profiles-and-credentials/SKILL.md).
Dispatch verbs
| Verb | Purpose | |---|---| | gen | Generate tests/k6/-.js from template | | run | Execute against profile target; prod requires typed RUN | | analyze | Print p50/p95/p99/RPS summary | | profile add\|list\|use\|remove | Manage targets (shared CTT pattern) |
Reference files (load on demand)
- [recipes.md](recipes.md) — full templates per type (smoke/load/stress/soak/spike),
runflow with confirmation gate,analyzejq query. Load when user invokesgen,run, oranalyze.
Common Mistakes
- Hard-coding auth in JS script → leaks on commit. Use env vars (
__ENV.X). - No
--rpscap when testing 3rd-party APIs → IP gets banned - Wrong test type for the question: stress to find breakpoint, soak for leaks, load for SLO
- Comparing runs across environments → pointless. Compare same env over time.
- Running prod profile without
require_confirm=trueset - VUs > 1000 without
--forceflag → almost always a typo
Safety
- Never run prod profile without explicit user confirmation. The
require_confirm = truefield forces the typedRUNconfirmation. - VU caps: the skill should refuse
--vus > 1000without an extra--forceflag — typo-protection against accidentally DDoSing your own service. - No credential interpolation into the JS script. Pass auth via env var only. Scripts may be committed to git — credentials must not be.
- Rate limit awareness: if testing a 3rd-party API, add
--rpscap. Default--rps 0= unlimited = will get IP banned from real APIs. - Output
summary-exportJSON may contain URLs and response samples — treat as potentially sensitive; don't paste publicly.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: tuannv14
- Source: tuannv14/claude-team-toolkit
- License: MIT
- Homepage: https://www.claudepluginhub.com/plugins/tuannv14-claude-team-toolkit
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.