Agent Skillswebiny/webiny-js › preflight

preflight

GitHub

用于 Webiny 项目发布前的预检流程,依次执行依赖安装、版本同步、代码格式化、Lint 检查、构建及测试等步骤,确保包状态就绪。

.claude/skills/preflight/SKILL.md webiny/webiny-js

Trigger Scenarios

准备发布 Webiny 包之前 需要验证代码质量和构建完整性时

Install

npx skills add webiny/webiny-js --skill preflight -g -y
More Options

Non-standard path

npx skills add https://github.com/webiny/webiny-js/tree/next/.claude/skills/preflight -g -y

Use without installing

npx skills use webiny/webiny-js@preflight

指定 Agent (Claude Code)

npx skills add webiny/webiny-js --skill preflight -a claude-code -g -y

安装 repo 全部 skill

npx skills add webiny/webiny-js --all -g -y

预览 repo 内 skill

npx skills add webiny/webiny-js --list

SKILL.md

Frontmatter
{
    "name": "preflight",
    "description": "Webiny-only. Run all checks required before packages are ready for publish: deps, build, lint, format, tests."
}

Preflight

Webiny-only skill. Run all checks required before packages are ready for publish.

Important

  • Run steps in order.
  • If any step fails, diagnose and fix the issue, then restart from step 1.
  • Never run tests in parallel. Run each package sequentially.
  • Before running tests for each package, count active test cases and shard at 32 tests per shard.
  • To count active tests: rg "^\s*(it|test|it\.each|test\.each)\s*\(" packages/<name>/__tests__ -t ts --count-matches | awk -F: '{s+=$2} END {print s}'
  • Calculate shards: shards = ceil(count / 32). If shards is 1, no --shard flag needed.
  • Suppress noisy output: redirect stdout to /dev/null or pipe through tail as needed.

Steps

1. Install dependencies

yarn > /dev/null 2>&1

2. Generate webiny package

yarn webiny-scripts generate-webiny-package

3. Sync dependency versions

yarn webiny sync-dependencies

Verify packages/cli/files/duplicates.json is an empty array ([]). If it contains entries, there are duplicate dependency versions that must be resolved before continuing.

4. Generate tsconfig files

node scripts/generateTsConfigsInPackages.js

5. Check package node_modules

node scripts/checkPackageNodeModules.js

6. Verify package.json dependencies match source imports

yarn adio

Must output "All dependencies in order!" to pass.

7. Format code

yarn format:fix > /dev/null 2>&1

This auto-fixes formatting issues. No manual intervention needed.

8. Lint

yarn eslint

This only checks — it does not auto-fix. If eslint reports errors, fix them manually, then restart from step 1.

9. Full clean build

yarn build --no-cache 2>&1 | tail -10

10. Check dist paths

node scripts/checkDistPaths.js

Verifies no src/ paths remain in built output.

11. Run DDB tests

Run yarn test for each package below, sequentially. Count active tests first and shard at 32.

Packages that need yarn test:

  • api
  • api-aco
  • api-audit-logs
  • api-core
  • api-file-manager
  • api-file-manager-aco
  • api-headless-cms
  • api-headless-cms-aco
  • api-headless-cms-bulk-actions
  • api-headless-cms-ddb
  • api-headless-cms-import-export
  • api-headless-cms-scheduler
  • api-headless-cms-tasks
  • api-headless-cms-workflows
  • api-mailer
  • api-record-locking
  • api-scheduler
  • api-sync-system
  • api-website-builder
  • api-website-builder-scheduler
  • api-websockets
  • api-workflows
  • app-admin
  • cognito
  • db-dynamodb
  • form
  • handler
  • handler-aws
  • api-graphql
  • lexical-converter
  • plugins
  • react-composition
  • react-properties
  • react-rich-text-lexical-renderer
  • tasks
  • utils
# 1. Count active tests
count=$(rg "^\s*(it|test|it\.each|test\.each)\s*\(" packages/<name>/__tests__ -t ts --count-matches | awk -F: '{s+=$2} END {print s}')
shards=$(( (count + 31) / 32 ))

# 2a. If shards <= 1, run without sharding
yarn test packages/<name> 2>&1 | grep "Test Files"

# 2b. If shards > 1, run each shard sequentially
yarn test packages/<name> --shard=1/$shards 2>&1 | grep "Test Files"
yarn test packages/<name> --shard=2/$shards 2>&1 | grep "Test Files"
# ... etc

12. Run OpenSearch tests

Run yarn test:os for each package below, sequentially. Count active tests first and shard at 32.

Packages that need BOTH yarn test (step 11) AND yarn test:os:

  • api-aco
  • api-audit-logs
  • api-file-manager
  • api-file-manager-aco
  • api-headless-cms
  • api-headless-cms-aco
  • api-headless-cms-bulk-actions
  • api-headless-cms-import-export
  • api-mailer
  • api-scheduler
  • api-workflows
  • tasks

Packages that need ONLY yarn test:os (not in step 11):

  • api-dynamodb-to-elasticsearch
  • api-elasticsearch-tasks
  • api-headless-cms-ddb-es
  • api-headless-cms-es-tasks
  • api-opensearch
yarn test:os packages/<name> 2>&1 | grep "Test Files"

13. Check for uncommitted changes

git status

Report any unexpected uncommitted changes from the steps above.

Keeping the package lists up to date

If the lists seem stale, re-derive them:

# All testable packages (have vitest.config.ts)
find packages -maxdepth 2 -name "vitest.config.ts" | sed 's|packages/||;s|/vitest.config.ts||' | sort

# Packages with ddb-os support
grep -rl "ddb-os" --include="ci.config.json" packages/ | sed 's|packages/||;s|/ci.config.json||' | sort

# Check if a package has standalone ddb tests too
grep -o '"ddb"' packages/<name>/ci.config.json

Version History

  • 80eb1c5 Current 2026-08-20 10:06

Same Skill Collection

.claude/skills/grill-me/SKILL.md
.claude/skills/prd-to-plan/SKILL.md
.claude/skills/tester/SKILL.md
.claude/skills/write-a-prd/SKILL.md
skills/repo-skills/add-feature-flag/SKILL.md
skills/user-skills/admin/admin-architect/SKILL.md
skills/user-skills/admin/admin-permissions/SKILL.md
skills/user-skills/admin/form-model/SKILL.md
skills/user-skills/admin/new-entry-wizard/SKILL.md
skills/user-skills/admin/website-builder/page-settings/SKILL.md
skills/user-skills/admin/website-builder/wb-preview-url-modifier/SKILL.md
skills/user-skills/api-bundle-size-limit/SKILL.md
skills/user-skills/api/api-architect/SKILL.md
skills/user-skills/api/cms-bulk-actions/SKILL.md
skills/user-skills/api/custom-field-type/SKILL.md
skills/user-skills/api/event-handler-pattern/SKILL.md
skills/user-skills/api/graphql-api/SKILL.md
skills/user-skills/api/http-route/SKILL.md
skills/user-skills/api/permissions/SKILL.md
skills/user-skills/api/use-case-pattern/SKILL.md
skills/user-skills/api/v5-to-v6-migration/SKILL.md
skills/user-skills/api/websocket-notifications/SKILL.md
skills/user-skills/cli-extensions/SKILL.md
skills/user-skills/configure-auth0/SKILL.md
skills/user-skills/configure-entraid/SKILL.md
skills/user-skills/configure-okta/SKILL.md
skills/user-skills/dependency-injection/SKILL.md
skills/user-skills/full-stack-architect/SKILL.md
skills/user-skills/generated/api/aco/SKILL.md
skills/user-skills/generated/api/cms/SKILL.md
skills/user-skills/generated/api/file-manager/SKILL.md
skills/user-skills/generated/api/scheduler/SKILL.md
skills/user-skills/generated/api/security/SKILL.md
skills/user-skills/generated/api/system/SKILL.md
skills/user-skills/generated/api/tenancy/SKILL.md
skills/user-skills/generated/api/tenant-manager/SKILL.md
skills/user-skills/generated/api/website-builder/SKILL.md
skills/user-skills/generated/infra/SKILL.md
skills/user-skills/infrastructure-extensions/SKILL.md
skills/user-skills/local-development/SKILL.md
skills/user-skills/mailer-smtp/SKILL.md
skills/user-skills/project-structure/SKILL.md
.claude/skills/webiny-skill-creator/SKILL.md
skills/user-skills/admin/ui-extensions/SKILL.md
skills/user-skills/api/ai-powerups-content/SKILL.md
skills/user-skills/cognito-federation/SKILL.md
skills/user-skills/content-models/SKILL.md
skills/user-skills/generated/admin/aco/SKILL.md
skills/user-skills/generated/admin/ai-powerups/SKILL.md

Metadata

Files
0
Version
8796183
Hash
5f103ee4
Indexed
2026-08-20 10:06

trang chủ - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-03 19:23
浙ICP备14020137号-1 $bản đồ khách truy cập$