一键导入
woocommerce
WooCommerce development — products, variations, pricing rules, payment gateways, hooks, cart/checkout customization, WebToffee CSV import/export
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
WooCommerce development — products, variations, pricing rules, payment gateways, hooks, cart/checkout customization, WebToffee CSV import/export
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Interactive project scaffolding wizard — detects environment, audits existing tools, then sets up any stack with explicit user approval at every step
Share project memory across devices AND across AI tools (Claude Code, Cursor, Codex, Roo, Cline, Aider, Windsurf) — git-native, no SaaS, no lock-in.
Detects your project stack, installs the right Claude Code skills, and surfaces built-in Claude Code capabilities you might not know exist
Page through the discovered-skills queue 25 at a time — keep the good ones into the verified registry, reject the rest so they never re-appear. Resumes where you left off.
Pull the latest version of claude-scaffold-skill (and other installed skills) — shows the changelog, asks before applying, validates after.
AWS infrastructure management — EKS, ECR, VPC, RDS, ElastiCache, S3, Route53, ACM, Secrets Manager, CloudWatch, IAM
| name | woocommerce |
| description | WooCommerce development — products, variations, pricing rules, payment gateways, hooks, cart/checkout customization, WebToffee CSV import/export |
| version | 1.0.0 |
| author | veekunth217 |
| tags | ["woocommerce","wordpress","ecommerce","payment-gateway","hooks","products","cart","checkout","csv","webtoffee"] |
| platforms | ["claude-code","cursor","codex"] |
WooCommerce store development — from product setup to custom pricing, payment gateways, and checkout customization.
RULE: Show code plan before generating any hooks or overrides. Wait for GO.
🚧 Status: Stub — implementation pending
This reference skill has the structure but the snippet content is still being filled in (you'll see
<!-- TODO -->placeholders below). It activates and tells Claude the topic exists, but won't yield deep snippets yet.Want to help? Pick any TODO, write the snippet, open a PR. See CONTRIBUTING.md. Each contribution moves the skill closer to "Ready" status.
add_filter( 'woocommerce_product_get_price', function( $price, $product ) {
if ( current_user_can( 'wholesale_customer' ) ) {
return $price * 0.8; // 20% discount
}
return $price;
}, 10, 2 );
add_action( 'woocommerce_after_order_notes', function( $checkout ) {
woocommerce_form_field( 'custom_field', [
'type' => 'text',
'class' => ['form-row-wide'],
'label' => __( 'Custom Field' ),
'placeholder' => __( 'Enter value' ),
'required' => false,
], $checkout->get_value( 'custom_field' ) );
});
add_action( 'woocommerce_checkout_update_order_meta', function( $order_id ) {
if ( ! empty( $_POST['custom_field'] ) ) {
update_post_meta( $order_id, '_custom_field', sanitize_text_field( $_POST['custom_field'] ) );
}
});
add_action( 'woocommerce_order_status_changed', function( $order_id, $from, $to, $order ) {
if ( $to === 'completed' ) {
// Send custom notification, trigger fulfillment, etc.
}
}, 10, 4 );