verify

โดย anthropic

Verify harness changes end-to-end without docker — drive the real pinned CLI against a header-capturing stub server with the exact env resolve_auth_env()…

npx skills add https://github.com/anthropics/defending-code-reference-harness --skill verify

Verifying harness changes on a docker-less host

The pipeline's real surface is the in-container claude -p process and its outbound API requests. Without docker, drive the same pinned CLI binary directly with the env dict the harness would inject via docker -e.

Recipe

  1. Get the pinned CLI (version from harness/agent_image.py:CLAUDE_CODE_VERSION): npm install --no-save @anthropic-ai/claude-code@<pin> in a temp dir → binary at node_modules/@anthropic-ai/claude-code/bin/claude.exe (the .exe name is the real native-binary entry on Linux too, filled in by the package's postinstall — not a Windows leftover).
  2. Stub API server: a tiny HTTP server that appends each request's headers to a JSONL file and returns a 400 invalid_request_error (non-retryable, so the CLI exits fast; exit=1 is expected).
  3. Build the agent env exactly as the pipeline does: python3 -c "from harness.auth import resolve_auth_env; ..." and dump to an export-lines file with shlex.quote (values contain newlines — NEVER pass via env $(...), word-splitting mangles them; source the file).
  4. Emulate the container env: unset ANTHROPIC_CUSTOM_HEADERS (and any other ambient var not in the resolved dict) before sourcing — a Claude Code session in this repo injects .claude/settings.json env into shells, which containers never see.
  5. Run: ANTHROPIC_BASE_URL=http://127.0.0.1:<port> CLAUDECODE= IS_SANDBOX=1 timeout 30 <cli> -p hi --model claude-sonnet-4-5 --max-turns 1, then read the captured JSONL.

Gotchas

  • Unit tests in tests/test_patch.py / tests/test_patch_grade.py need docker and fail on docker-less hosts — pre-existing, not your change.
  • The docker -e injection leg itself can't be exercised without docker; it's the same mechanism that carries ANTHROPIC_API_KEY in production.
  • For the interactive-skills surface, copy .claude/settings.json into a fresh temp dir and run the host claude from there (with ambient ANTHROPIC_CUSTOM_HEADERS unset so settings.json is the only source).

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

access
anthropic
จัดการการเข้าถึงช่อง Discord — อนุมัติการจับคู่ แก้ไขรายการที่อนุญาต ตั้งค่านโยบาย DM/กลุ่ม ใช้เมื่อผู้ใช้ขอจับคู่ อนุมัติใครบางคน ตรวจสอบว่าใครได้รับอนุญาต…
official
session-report
anthropic
สร้างรายงาน HTML ที่สามารถสำรวจได้เกี่ยวกับการใช้งานเซสชันของ Claude Code (โทเค็น, แคช, ตัวแทนย่อย, ทักษะ, พรอมพ์ที่มีค่าใช้จ่ายสูง) จากบันทึกการสนทนาใน ~/.claude/projects
official
build-mcp-server
anthropic
ทักษะนี้ควรใช้เมื่อผู้ใช้ขอให้ "สร้าง MCP server", "สร้าง MCP", "ทำการรวม MCP", "ห่อ API สำหรับ Claude", "เปิดเผยเครื่องมือให้กับ…
official
cookbook-audit
anthropic
ตรวจสอบสมุดบันทึก Cookbook ของ Anthropic ตามเกณฑ์ที่กำหนด ใช้เมื่อมีการขอให้ตรวจสอบหรือประเมินสมุดบันทึก
official
handle-complaint
anthropic
จัดการข้อร้องเรียนของลูกค้าที่เข้ามาตั้งแต่ต้นจนจบ — ดึงข้อมูลบริบท ร่างคำตอบ และแนะนำแนวทางแก้ไขการดำเนินงาน รองรับอีเมลหรือรหัสตั๋วที่เป็นทางเลือก…
official
use-case-triage
anthropic
ระบุอย่างรวดเร็วว่ากิจกรรมการประมวลผลจำเป็นต้องมี PIA, DPIA ตามข้อบังคับ GDPR หรือสามารถดำเนินการต่อได้ — แสดงข้อขัดแย้งของนโยบายความเป็นส่วนตัวและนำทางไปยัง...
official
board-minutes
anthropic
ร่างรายงานการประชุมคณะกรรมการหรือคณะอนุกรรมการในรูปแบบขององค์กรของคุณ ตรวจจับการประชุมคณะกรรมการและคณะอนุกรรมการที่กำลังจะมาถึงจากปฏิทินของคุณโดยอัตโนมัติ สอบถามวาระการประชุมและ…
official
renewal-tracker
anthropic
แสดงสัญญาที่มีกำหนดเส้นตายการยกเลิกที่กำลังจะมาถึง และเตือนก่อนที่กรอบเวลาการแจ้งเตือนจะปิดลง โดยทำงานจากทะเบียนการต่ออายุที่ได้รับการดูแล ใช้เมื่อผู้ใช้ถาม…
official