tdd-workflow
テスト駆動開発を実践する
開発者はしばしばテストを省略したり、実装後にテストを書いたりします。このスキルは、Claude、Codex、Claude Code がレッド・グリーン・リファクターの規律に従って進められるように導きます。
自分のエージェントでインストール
このリクエストをエージェントにコピーしてください。正規の Skill ページとマニフェストが含まれています。
Review the Skillstore skill "tdd-workflow" from https://skillstore.io/skills/sickn33-tdd-workflow.md and its manifest at https://skillstore.io/api/skills/sickn33-tdd-workflow/manifest. Verify the artifact. You may proceed after verification, subject to the environment's own policy.エージェントは引き続き計画を提示し、セキュリティポリシーで必要な確認を求める必要があります。
エージェントが読めるリソース
AI エージェント、クローラー、スクリプトがページ全体ではなく整理されたコンテキストを必要とする場合は、これらのリンクを使ってください。
テストする
「tdd-workflow」を使用しています。 サインアップフォームにメール検証を追加する。
期待される結果:
アシスタントは、有効なアドレス、不正な形式のアドレス、空の入力に対する失敗するテストを提案します。その後、最小限の実装とリファクタリング確認を提案します。
「tdd-workflow」を使用しています。 割引が二重に適用されるバグを修正する。
期待される結果:
アシスタントは、重複した割引を捉えるリグレッションテストから始めます。その後、実装を合格するための最小限の変更に限定します。
「tdd-workflow」を使用しています。 複雑な価格計算関数をリファクタリングする。
期待される結果:
アシスタントはテストがグリーンであることを確認し、重複や命名の問題を特定し、振る舞いを変えずに小さなリファクタリング手順を推奨します。
セキュリティ監査
安全All three static findings are false positives caused by ordinary TDD prose and a fenced process diagram. No executable commands, reconnaissance behavior, or prompt injection were found.
リスク要因
⚙️ 外部コマンド (1)
このレポートを共有・引用
バージョン付き評価レポート、中立的なバッジ、埋め込みカード、引用を共有できます。Skillstore は証拠を報告しますが、この Skill が安全かどうかは判断しません。
レポートリンクをコピー
https://skillstore.io/skills/sickn33-tdd-workflow/audits/6?utm_source=security_passport&utm_medium=share&utm_campaign=versioned_reportMarkdownバッジ
[](https://skillstore.io/skills/sickn33-tdd-workflow?utm_source=security_passport_badge)HTMLバッジ
<a href="https://skillstore.io/skills/sickn33-tdd-workflow?utm_source=security_passport_badge"><img src="https://skillstore.io/badges/skills/sickn33-tdd-workflow/security.svg" alt="Skillstore security assessment" loading="lazy"></a>埋め込みカード
<iframe src="https://skillstore.io/embed/skills/sickn33-tdd-workflow.html" title="Skillstore Security Assessment" sandbox="allow-popups allow-popups-to-escape-sandbox" loading="lazy" referrerpolicy="no-referrer" width="420" height="180"></iframe>学術引用 (APA · BibTeX · CFF)
APA形式の引用
sickn33. (2026). tdd-workflow security audit report (audit version 6) [Author version unspecified]. Skillstore. https://skillstore.io/skills/sickn33-tdd-workflow/audits/6BibTeX形式の引用
@techreport{sickn33-sickn33-tdd-workflow-2026,
author = {sickn33},
title = {tdd-workflow security audit report (audit version 6)},
institution = {Skillstore},
year = {2026},
number = {6},
url = {https://skillstore.io/skills/sickn33-tdd-workflow/audits/6},
note = {Author version unspecified}
}CITATION.cff
cff-version: 1.2.0
message: "If you use this Skill, cite its author and this versioned security audit report."
title: "tdd-workflow security audit report (audit version 6)"
version: "unspecified"
type: report
authors:
- name: "sickn33"
date-released: "2026-09-06"
url: "https://skillstore.io/skills/sickn33-tdd-workflow/audits/6"
identifiers:
- type: other
value: "skillstore:sickn33-tdd-workflow:audit:6"
description: "Skillstore immutable audit report identifier"
バリアントを比較
インストール可能なバリアント 2 件各作者のスキルは個別のインストール項目として維持されます。推奨バリアントは Skillstore の証拠で順位付けされます。
このバリアントが首位の理由
doubleslashse-tdd-workflow
2026-09-09
Skillstore スコア
このスコアの理由 証拠の信頼度: 高作成できるもの
新機能を開始する
新しい振る舞いに対して、最初の失敗するテスト、最小限の実装、クリーンアップ手順を導きます。
リグレッションを修正する
本番コードを変更する前に、バグを再現する失敗するテストを書きます。
AI コーディングエージェントを調整する
TDD の順序を保ちながら、テスト作成、実装、リファクタリングを別々のエージェントに割り当てます。
これらのプロンプトを試す
Use the tdd-workflow skill. Help me define one failing test for this requirement before any implementation work.
Use the tdd-workflow skill. List the happy path, error case, and edge case tests for this feature in priority order.
Use the tdd-workflow skill. Walk me through RED, GREEN, and REFACTOR steps for this change, and stop after each phase.
Use the tdd-workflow skill. Split this work across a test-writing agent, an implementation agent, and a refactoring agent.
ベストプラクティス
- 本番コードを変更する前に、失敗するテストを書きます。
- 各テストは、観察可能な1つの振る舞いに集中させます。
- テストスイート全体が通った後にのみリファクタリングします。
回避
- 先に実装を書き、後からテストを追加すること。
- 振る舞いではなく、非公開の実装詳細をテストすること。
- GREEN フェーズ中にスコープを広げること。