openmetadata-workflow
GitHubOpenMetadata开发工作流技能,自动加载并引导模型根据任务类型(如新功能、Bug修复、UI组件等)组合调用规划、测试、审查等子技能,确保结构化开发流程。
Trigger Scenarios
Install
npx skills add open-metadata/OpenMetadata --skill openmetadata-workflow -g -y
SKILL.md
Frontmatter
{
"name": "openmetadata-workflow",
"description": "Meta-skill loaded at session start. Directs Claude to check for applicable OpenMetadata skills before starting any task. Ensures structured workflows are followed."
}
OpenMetadata Development Workflow
This skill is loaded automatically at session start. It ensures you follow the right workflow for every task.
Before Starting Any Task
Check which skills apply to your task and use them. This is not optional — if a skill applies, you must follow it.
Skill Selection Guide
| Task type | Required skill(s) |
|---|---|
| New feature (multi-file) | /planning then /tdd then /test-enforcement then /verification |
| Bug fix | /systematic-debugging then /tdd (write regression test) then /verification |
| New API endpoint | /planning then /tdd then /test-enforcement (must include integration test) |
| New connector | /connector-standards then /connector-building then /test-enforcement |
| UI component | /ui-core-components + /react-best-practices + /composition-patterns before writing, then /tdd, then /web-design-guidelines after, then /test-enforcement (must include Jest + Playwright if user-facing) |
| UI a11y / UX / design audit | /web-design-guidelines |
| React perf work (re-renders, waterfalls, bundle) | /react-best-practices |
| Code review / PR review | /code-review then /test-enforcement |
| Opening / finalizing a PR | /test-enforcement then /verification then /pr-checklist |
| Connector review | /connector-review |
| E2E test creation | /playwright |
| Finishing implementation | /test-enforcement then /verification |
Note: Connector skills (
/connector-standards,/connector-building,/connector-review) and/playwrightare part of the OpenMetadata Skills plugin and ship together with this workflow skill. They are defined in theskills/directory alongside this file.
Why the UI row names skills explicitly: a skill only loads when it is invoked, and the model decides that from the skill's own
description./composition-patternsdescribes itself as being for refactoring prop proliferation and building component libraries, and/web-design-guidelinesdescribes itself as being for "review my UI" / "check accessibility" — so neither reliably fires on "build me a component". Naming them here is what makes them part of the workflow instead of a coin flip. Invoke/web-design-guidelinesafter the component exists: it is an audit, and running it first works against its own trigger.
/react-best-practices,/composition-patternsand/web-design-guidelinesare vendored from vercel-labs/agent-skills (MIT) underskills/vendor/. They are authoring aids, not gates — enforcement isui-checkstyle, seedocs/ui-code-quality-gate.md.
Workflow Rules
-
Plan before coding. For any non-trivial task, use
/planningto design the approach before writing code. -
Test-first when possible. Use
/tddto write failing tests before implementation. This applies to Java, Python, and TypeScript equally. -
Always enforce test coverage. Before any PR, use
/test-enforcementto verify:- 90% line coverage on changed Java classes
- Integration tests for all changed/new API endpoints
- Playwright E2E tests for new user-facing features
- Jest unit tests for new React components
-
Verify with evidence. Use
/verificationbefore claiming completion. Show actual test output, not claims. -
Review before merging. Use
/code-reviewfor two-stage review (spec compliance + code quality). -
Fill the PR template completely. Use
/pr-checklistbeforegh pr createto gather every required section: linked issue, high-level design (large PRs), tests + coverage, UI screen recording, and manual test steps.
OpenMetadata Cross-Layer Checklist
When your task touches multiple layers, ensure all are synchronized:
- JSON Schema in
openmetadata-spec/→ runmake generate - Connection schema → run
yarn parse-schema - Java entity changes → Flyway migration in
bootstrap/sql/migrations/ - Backend API changes → update frontend API client
- New UI strings → add to
locale/languages/en-us.jsonthen runyarn i18n - Java files → run
mvn spotless:apply - Python files → run
make py_format && make py_format_check - TypeScript/React files → run
yarn organize-imports:cli && yarn lint:fix && yarn pretty:base --write - New source files → ensure Apache 2.0 license header (run
yarn license-header-fix) - Application changes → run
yarn generate:app-docs
CLAUDE.md Takes Precedence
If CLAUDE.md instructions conflict with any skill, CLAUDE.md wins. Skills are supplementary workflows, not overrides.
Version History
-
5ab32e5
Current 2026-08-19 21:28
更新UI组件构建流程,新增/ui-core-components、/react-best-practices和/composition-patterns前置步骤;移除旧版UI组件行的/tdd前置要求,强调设计模式与最佳实践先行。
- a1e7b7a 2026-07-24 20:48


