Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Intai/story-flow --skill execute-bdd-scenariogit clone --depth 1 https://github.com/Intai/story-flowWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/intai/story-flow/execute-bdd-scenario)<a href="https://agentmods.dev/skills/intai/story-flow/execute-bdd-scenario"><img src="https://agentmods.dev/badge/skills/intai/story-flow/execute-bdd-scenario/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/intai/story-flow/execute-bdd-scenario"><img src="https://agentmods.dev/badge/skills/intai/story-flow/execute-bdd-scenario.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 4 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium MCP Rug Pull · line 79 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium Output Handling · line 555 Output size or generation rate is not bounded. Unbounded output enables denial-of-service through resource exhaustion, log flooding, or context-window stuffing.Fix: Set explicit limits on output length, generation count, and rate. Use max_tokens and truncation to prevent unbounded output.
- medium Data Exfiltration · line 617 Data is uploaded to cloud storage (S3 / GCS / Azure Blob). This may be a legitimate backup or exfiltration to an external bucket. Manual review is recommended.Fix: Verify the destination bucket is trusted and owned by you. Never upload credentials, secrets, or workspace contents to external or unverified cloud storage.
- medium Data Exfiltration · line 620 Data is uploaded to cloud storage (S3 / GCS / Azure Blob). This may be a legitimate backup or exfiltration to an external bucket. Manual review is recommended.Fix: Verify the destination bucket is trusted and owned by you. Never upload credentials, secrets, or workspace contents to external or unverified cloud storage.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00018 | $0.15362 |
| Opus 5 | $0.00009 | $0.07681 |
| Sonnet 5 | $0.00004 | $0.03072 |
| Haiku 4.5 | $0.00002 | $0.01536 |
Grade A, and why
Execute BDD scenarios scanned grade A with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- **Execute all Background steps:** Background sections (both global and rule-specific) in feature files define prerequisite setup steps. **EVERY** step MUST be completed before executing the scenario steps, including bo Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
execSync('make reseed', { stdio: 'inherit' }); How it starts
The opening of the file, as written. The whole thing — 1,336 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Execute BDD scenarios
Instructions
- Use
mcp__plugin_story-flow_playwright__*tools to manipulate browser to EXECUTE the BDD scenarios directly without generating any Playwright test file. - Test Execution Protocol:
- Before executing: Read the feature file and confirm the exact line numbers, scenario title, background sections and all "Then" and "And" assertions.
- Execution order is CRITICAL:
- Scenario tags FIRST (e.g.,
@purge-data) - Background steps SECOND (setup prerequisites)
- Scenario steps THIRD (Given/When/Then)
- Scenario tags FIRST (e.g.,
- Execute all Background steps: Background sections (both global and rule-specific) in feature files define prerequisite setup steps. EVERY step MUST be completed before executing the scenario steps, including both UI interactions and API calls by curl.
- During execution: Compare actual behavior against expected behavior at each assertion step.
- On failure: STOP immediately and provide a summary including:
- Expected behavior (with line numbers from feature file)
- Actual behavior (with evidence from page snapshot)
- Root cause analysis
- CRITICAL: Do NOT continue to subsequent test steps after a failure
- Executing Multiple Scenarios:
When executing multiple scenarios (e.g., "Execute all scenarios in @path/to/file.feature", "Execute ARMR-01,ARMR-02 scenarios in @path/to/file.feature"):
- Read the feature file to identify all scenario IDs and titles
- For each scenario, use the Task tool with
subagent_type="general-purpose"to run it in isolated context sequentially:
IMPORTANT: ReplaceLoad BOTH skills in this order using the Skill tool: 1. First: `story-flow:execute-bdd-scenario` (plugin - general BDD framework) 2. Then: `execute-bdd-scenario` (project-level - overrides/extends the plugin) 3. Confirm both skills are loaded before continuing with the execution. Execute BDD scenario <SCENARIO-ID> in @path/to/file.feature [--record if recording mode is active].<SCENARIO-ID>with the individual scenario ID (e.g.,ARMR-01), NOT "all". Each subagent executes exactly one scenario. Recording Mode: When executing multiple scenarios with--record, pass the--recordflag to each subagent prompt. Each subagent is responsible for generating/updating the.spec.jsfile after executing its scenario — do NOT defer spec file generation to the parent orchestrator. - Wait for subagent completion, record PASS/FAIL result
- If the scenario FAILED: STOP immediately and print the summary table with remaining scenarios marked as "⊘ SKIPPED". Do NOT proceed to the next scenario.
- Print summary table:
| Scenario | Title | Result | |----------|-------|--------| | SMG-01 | Display available languages | ✓ PASSED | | SMG-02 | Search and filter strings | ✗ FAILED | | SMG-03 | Inline edit a string value | ⊘ SKIPPED |
- Save
.featurefiles in the same folder as the stories. - If a BDD scenario has the
@screenshotstag, take one screenshot per assertion group — a maximal run of consecutive assertion steps with no action or wait step between them, since nothing re-renders in between — captured after the group's last UI assertion so every asserted condition has settled, and, in--recordmode when VRT is configured, emit one visual regression tracking call per group (see Visual Regression Testing (VRT)). Command and polling assertion steps (S3/CLI/API checks) assert outside the viewport: they take no screenshot and do not break the group. Passbrowser_take_screenshota filename explicitly prefixed with.playwright-mcp/— e.g..playwright-mcp/SMG-01-i-should-see-the-dashboard.pngso it lands in the.playwright-mcpoutput folder — never an absolute path, which writes to the project root. - If a BDD scenario doesn't have the
@screenshotstag, do not take any screenshot. - If a BDD scenario has the
@purge-datatag, restore the seed data first (before the Background steps) by executing themake reseedcommand. - If a BDD scenario does not have the
@purge-datatag, do not restore the seed data before running the scenario. - If a BDD scenario has the
@timeout-*tag, extend the scenario and expect timeout to be longer. e.g.@timeout-600smeans timeout for the scenario and every expect step is 600s(10m). - Use
mcp__plugin_story-flow_playwright__browser_run_code_unsafeto set the browser offline. - Reference the @Makefile for local development workflows.
- Navigate relative to the base URL from
BASE_URL, falling back touse.baseURLin the project's @playwright.config.js. Never hardcode a host.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 1,336 lines · 18 tokens per session scan A a86425ff7991
Execute BDD scenarios is a skill published in the GitHub repository Intai/story-flow (12 stars, last pushed 2d ago), licensed MIT. It adds 18 tokens to every session and 15,362 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 2 findings (makes network calls, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
qawolf-cli
Manage QA Wolf through the qawolf CLI. Use when asked to create, update, or list coverage requests, bug reports, or maintenance reports; start a run of flows or tags on the QA Wolf platform or read a run's results; list, set, or delete environment variables; manage environments, flows, or tags; request automation of…
playwright-expert
Expert in Playwright E2E testing framework, auto-waiting mechanisms, test generation, trace viewer, and CI/CD integration. Use when the user mentions testing, end-to-end tests, QA, automation, end-to-end testing, or test automation, or when the task involves Playwright Framework, Test Organization, Advanced Features…
selenium-expert
Expert in Selenium WebDriver, Selenium Grid, page object model, waits, cross-browser testing, and test automation frameworks. Use when the user mentions testing, end-to-end tests, QA, automation, WebDriver, or Selenium grid, or when the task involves Selenium Components, Browser Support, Advanced Features, or Basic…
argus
Argus AI-powered QA harness — Chrome DevTools MCP reference for browser automation, accessibility, performance, security, and debugging.
playwright-cli
Automate browser interactions, test web pages and work with Playwright tests.
playwright-component-testing
Set up component testing with Playwright using a story gallery — scaffold stories and a gallery dev page driven by the built-in mount fixture, no dedicated component-testing runtime. Use when asked to test React or Vue components in isolation with Playwright, or to migrate off @playwright/experimental-ct-react / -vue.