ワンクリックで
bdd
Behavior-Driven Development with Gherkin, Cucumber, and executable specifications
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Behavior-Driven Development with Gherkin, Cucumber, and executable specifications
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
3D computer vision, depth estimation, and 3D reconstruction
Adversarial machine learning, robustness, and security in ML
Expert guidance on agentic AI systems, autonomous agents, and AI orchestration. Use for: building agentic AI systems, tool orchestration, memory systems, planning and reasoning, multi-step workflows, feedback loops, evaluation frameworks, ReAct patterns, and building sophisticated AI pipelines.
Algebraic topology, homotopy, homology, and topological invariants
Design and analysis of analog electronic circuits and systems
Expert assistant for working with Anthropic's Claude API and Claude-powered applications. Use this skill whenever you need help with: API integration, message formatting, tool use implementation, context window management, Constitutional AI principles, prompt engineering, Claude models (Claude 3.5, Claude 3), vision capabilities, computer use, or building production systems with Claude. Also use for understanding Anthropic's safety approaches, token optimization, or any Claude-related development task.
| name | bdd |
| description | Behavior-Driven Development with Gherkin, Cucumber, and executable specifications |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"software-development"} |
When practicing BDD, creating living documentation, or improving team communication.
Feature: Search functionality
As a user
I want to search for products
So that I can find what I'm looking for
Scenario: Successful search
Given I am on the search page
When I enter "laptop" in the search box
And I click the search button
Then I should see search results
And the results should contain "laptop"
Scenario: No results found
Given I am on the search page
When I enter "xyz123" in the search box
And I click the search button
Then I should see "No results found"
Scenario Outline: Add items to cart
Given the product "<product>" costs "<price>"
When I add it to cart
Then my cart total should be "<total>"
Examples:
| product | price | total |
| Laptop | 1000 | 1000 |
| Mouse | 50 | 1050 |