woocommerce-dev-cycle
Run tests, linting, and quality checks for WooCommerce development. Use when running tests, fixing code style, or following the development workflow.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o woocommerce-dev-cycle.zip https://jpskill.com/download/21034.zip && unzip -o woocommerce-dev-cycle.zip && rm woocommerce-dev-cycle.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/21034.zip -OutFile "$d\woocommerce-dev-cycle.zip"; Expand-Archive "$d\woocommerce-dev-cycle.zip" -DestinationPath $d -Force; ri "$d\woocommerce-dev-cycle.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
woocommerce-dev-cycle.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
woocommerce-dev-cycleフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
WooCommerce 開発サイクル
このスキルは、テストの実行、コード品質チェック、トラブルシューティングなど、WooCommerce の開発ワークフローに関するガイダンスを提供します。
手順
WooCommerce 開発ワークフローについては、以下のガイドラインに従ってください。
- テストの実行: PHP および JavaScript のテストコマンド、テスト環境のセットアップ、トラブルシューティングについては、running-tests.md を参照してください。
- コード品質: リンティングとコードスタイルの修正については、code-quality.md を参照してください。
- PHP リンティングパターン: 一般的な PHP リンティングの問題と修正については、php-linting-patterns.md を参照してください。
- Markdown リンティング: Markdown ファイルのリンティングとフォーマットについては、markdown-linting.md を参照してください。
開発ワークフロー
標準的な開発ワークフローは以下のとおりです。
- コードを変更します。
- 関連するテストを実行します:
pnpm run test:php:env -- --filter YourTestClass - リンティング/型チェックを実行します:
pnpm run lint:changes:branch:php - 問題を修正します:
pnpm run lint:php:fix - テストがパスした後にのみ変更をコミットします。
主要な原則
- 機能を確認するために、変更を加えた後は常にテストを実行してください。
- 開発中は、特定のテストフィルターを使用して関連するテストを実行してください。
- 現在のブランチのコードのみ、リンティングエラーを修正してください。
- テストの失敗は、期待値と実際値を示す詳細な出力を提供します。
- テスト環境は、WordPress/WooCommerce のセットアップを自動的に処理します。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
WooCommerce Development Cycle
This skill provides guidance for the WooCommerce development workflow, including running tests, code quality checks, and troubleshooting.
Instructions
Follow these guidelines for WooCommerce development workflow:
- Running tests: See running-tests.md for PHP and JavaScript test commands, test environment setup, and troubleshooting
- Code quality: See code-quality.md for linting and code style fixes
- PHP linting patterns: See php-linting-patterns.md for common PHP linting issues and fixes
- Markdown linting: See markdown-linting.md for markdown file linting and formatting
Development Workflow
The standard development workflow:
- Make code changes
- Run relevant tests:
pnpm run test:php:env -- --filter YourTestClass - Run linting/type checking:
pnpm run lint:changes:branch:php - Fix any issues:
pnpm run lint:php:fix - Commit changes only after tests pass
Key Principles
- Always run tests after making changes to verify functionality
- Use specific test filters to run relevant tests during development
- Fix linting errors solely for code in your current branch
- Test failures provide detailed output showing expected vs actual values
- The test environment handles WordPress/WooCommerce setup automatically