testing-wp-runtime

โดย automattic

แนวทางสำหรับการรัน wp-now เพื่อตรวจสอบปลั๊กอินและธีมของ WordPress ในขณะรันไทม์

npx skills add https://github.com/automattic/data-liberation-agent --skill testing-wp-runtime

When to use me

Use this skill when you need to verify that a WordPress plugin or theme loads correctly at runtime. Do not use this skill for static linting — use testing-php or testing-js for that.

Step 1: Determine the project mode

wp-now requires a --mode flag based on the project type:

  • Plugin project (main PHP file has a Plugin Name: header): use --mode=plugin
  • Theme project (contains style.css with Theme Name: header): use --mode=theme

Check the project root to determine which mode to use:

head -20 *.php style.css 2>/dev/null

Step 2: Start wp-now

Start wp-now in the background on an available port:

wp-now start --mode=<plugin|theme> --port=8881 &

Wait a few seconds for the server to initialize, then verify it is running:

curl -s -o /dev/null -w "%{http_code}" http://localhost:8881/
  • HTTP 200 or 302 = server is running and WordPress loaded successfully.
  • HTTP 500 = a fatal PHP error occurred — check debug log.
  • Connection refused = server failed to start.

Step 3: Check for PHP errors

After the server starts, check the WordPress debug log for errors:

find /tmp -name "debug.log" -path "*/wp-content/*" 2>/dev/null | head -1 | xargs tail -50 2>/dev/null

Look for:

  • Fatal errors: Plugin or theme could not load — must be fixed.
  • Warnings/Notices: Non-fatal but should be reported.
  • Deprecation notices: Report but do not fix.

Step 4: Validate HTTP responses

Test key endpoints to verify the project works:

# Homepage
curl -s -o /dev/null -w "%{http_code}" http://localhost:8881/

# wp-admin (should redirect to login)
curl -s -o /dev/null -w "%{http_code}" http://localhost:8881/wp-admin/

For plugins, also check if the plugin is active:

curl -s http://localhost:8881/ | grep -c "<plugin-specific-identifier>"

Step 5: Clean up

Always stop wp-now when done testing:

kill $(lsof -t -i:8881) 2>/dev/null

Rules

  • Always clean up: Never leave wp-now running after testing is complete.
  • Port 8881: Always use port 8881 to avoid conflicts.
  • Timeout: If wp-now does not respond within 15 seconds of starting, consider it failed and kill the process.
  • Never modify business logic: Only report issues found during runtime validation. Do not change how the code works.
  • Report format: After testing, report results as:
    • PASS: Server started, HTTP 200, no fatal errors in debug log
    • FAIL: List specific errors (HTTP status, debug log entries, failed endpoints)

Skills เพิ่มเติมจาก automattic

dn-info
automattic
รับข้อมูลรายละเอียดของโดเมนที่ลงทะเบียนโดยใช้ dn CLI ใช้เมื่อผู้ใช้ต้องการดูรายละเอียดโดเมน เช่น วันหมดอายุ เนมเซิร์ฟเวอร์ ผู้ติดต่อ…
official
wordpress-plugin-publish
automattic
ใช้ทักษะนี้เมื่อเผยแพร่ ส่ง อัปโหลดซ้ำ ตรวจสอบ แพ็กเกจ ทดสอบ หรือปล่อยปลั๊กอิน WordPress.org ด้วย Pressship ซึ่งครอบคลุม...
official
dev
automattic
เวิร์กโฟลว์การพัฒนาสำหรับปลั๊กอิน WordPress ActivityPub รวมถึงการตั้งค่า wp-env คำสั่งทดสอบ การตรวจสอบโค้ด และกระบวนการสร้าง ใช้เมื่อตั้งค่าการพัฒนา…
official
gitattributes
automattic
ใช้เมื่อตรวจสอบหรืออัปเดต .gitattributes export-ignore coverage เพื่อให้ไฟล์สำหรับนักพัฒนาเท่านั้น (การตั้งค่า lint, CI, การทดสอบ, เอกสาร, เครื่องมือ build) ไม่ถูกส่งไปใน…
official
integrations
automattic
รูปแบบการผสานรวมปลั๊กอิน WordPress ของบุคคลที่สาม ใช้เมื่อเพิ่มการผสานรวมใหม่ แก้ไขปัญหาความเข้ากันได้กับปลั๊กอินอื่น หรือทำงานกับที่มีอยู่…
official
design-systems
automattic
แนวทางทิศทางด้านสุนทรียศาสตร์ที่ชัดเจนสำหรับการออกแบบเว็บ ใช้เมื่อตัดสินใจเชิงสร้างสรรค์เกี่ยวกับตัวอักษร สี การเคลื่อนไหว องค์ประกอบเชิงพื้นที่ และภาพรวมทางสายตา…
official
site-specification
automattic
ดึงข้อมูลข้อกำหนดของไซต์ที่ครอบคลุมจากคำอธิบายง่ายๆ ใช้เมื่อวิเคราะห์คำขอธีมของผู้ใช้เพื่อกำหนดประเภทไซต์ กลุ่มเป้าหมาย โทนเสียง เค้าโครง…
official
wordpress-block-theming
automattic
สถาปัตยกรรมธีม WordPress Full Site Editing (FSE) ใช้เมื่อสร้าง theme.json, บล็อกเทมเพลต, ชิ้นส่วนเทมเพลต, รูปแบบ และ functions.php สำหรับ…
official