# common > 汎用的な開発スキル集。すべてのプロジェクトで活用可能。 - Author: Hiroaki SAWANO - Repository: SawanoLab/adaptive-claude-agents - Version: 20251220141402 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-07 - Source: https://github.com/SawanoLab/adaptive-claude-agents - Web: https://mule.run/skillshub/@@SawanoLab/adaptive-claude-agents~common:20251220141402 --- # Common Skills 汎用的な開発スキル集。すべてのプロジェクトで活用可能。 ## Attribution このディレクトリのスキルは [claude-code-templates](https://github.com/davila7/claude-code-templates) (MIT License) をベースに、本プロジェクト用に調整しています。 Original author: [@davila7](https://github.com/davila7) ## Available Skills | Skill | Description | Recommended Phase | |-------|-------------|-------------------| | [test-driven-development](./test-driven-development.md) | TDD実践ガイド | Production必須、MVP推奨 | | [systematic-debugging](./systematic-debugging.md) | 体系的デバッグ手法 | 全フェーズ | | [verification-before-completion](./verification-before-completion.md) | 完了前検証 | MVP/Production必須 | | [git-commit-helper](./git-commit-helper.md) | コミットメッセージ作成 | 全フェーズ | | [writing-plans](./writing-plans.md) | 実装計画作成 | MVP/Production推奨 | ## Phase Integration これらのスキルは Phase-Adaptive Review と連携して使用できます: ``` Prototype Phase (厳格度: 3/10) ├── systematic-debugging(問題発生時) └── git-commit-helper(コミット時) MVP Phase (厳格度: 6/10) ├── systematic-debugging(問題発生時) ├── git-commit-helper(コミット時) ├── writing-plans(機能実装前) └── verification-before-completion(完了前) Production Phase (厳格度: 10/10) ├── test-driven-development(必須) ├── systematic-debugging(問題発生時) ├── git-commit-helper(コミット時) ├── writing-plans(必須) └── verification-before-completion(必須) ``` ## Usage Claude Codeで直接参照可能: ``` このタスクには systematic-debugging スキルを適用してください ``` または、プロジェクト固有の `.claude/skills/` にコピーして使用: ```bash cp skills/common/*.md /path/to/your/project/.claude/skills/ ``` ## License These skills are derived from [claude-code-templates](https://github.com/davila7/claude-code-templates) under the MIT License. ``` MIT License Copyright (c) 2024 Daniel Avila Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ```