Agent Skillsopen-metadata/OpenMetadata › openmetadata-workflow

openmetadata-workflow

GitHub

作为会话启动的元技能,强制AI在执行任务前检查并调用适用的OpenMetadata子技能(如规划、TDD、测试等),确保遵循标准化的开发工作流。

skills/openmetadata-workflow/SKILL.md open-metadata/OpenMetadata

Trigger Scenarios

用户请求新功能开发 用户请求修复Bug 用户请求代码审查或PR处理 任何需要执行具体开发任务的场景

Install

npx skills add open-metadata/OpenMetadata --skill openmetadata-workflow -g -y
More Options

Use without installing

npx skills use open-metadata/OpenMetadata@openmetadata-workflow

指定 Agent (Claude Code)

npx skills add open-metadata/OpenMetadata --skill openmetadata-workflow -a claude-code -g -y

安装 repo 全部 skill

npx skills add open-metadata/OpenMetadata --all -g -y

预览 repo 内 skill

npx skills add open-metadata/OpenMetadata --list

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 Read openmetadata-ui/src/main/resources/ui/DEVELOPER_HANDBOOK.md first (folder structure + file naming for any new file), then /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 /playwright are part of the OpenMetadata Skills plugin and ship together with this workflow skill. They are defined in the skills/ 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-patterns describes itself as being for refactoring prop proliferation and building component libraries, and /web-design-guidelines describes 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-guidelines after the component exists: it is an audit, and running it first works against its own trigger.

/react-best-practices, /composition-patterns and /web-design-guidelines are vendored from vercel-labs/agent-skills (MIT) under skills/vendor/. They are authoring aids, not gates — enforcement is ui-checkstyle, see docs/ui-code-quality-gate.md.

Workflow Rules

  1. Plan before coding. For any non-trivial task, use /planning to design the approach before writing code.

  2. Test-first when possible. Use /tdd to write failing tests before implementation. This applies to Java, Python, and TypeScript equally.

  3. Always enforce test coverage. Before any PR, use /test-enforcement to 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
  4. Verify with evidence. Use /verification before claiming completion. Show actual test output, not claims.

  5. Review before merging. Use /code-review for two-stage review (spec compliance + code quality).

  6. Fill the PR template completely. Use /pr-checklist before gh pr create to 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/ → run make 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.json then run yarn 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

  • 9cf866c Current 2026-08-27 19:11

    新增 UI 组件开发流程中读取 DEVELOPER_HANDBOOK.md 的要求,以规范文件夹结构和文件命名;修正了旧版文档中关于路由和存储位置的错误描述。

  • 5ab32e5 2026-08-19 21:28

    更新UI组件构建流程,新增/ui-core-components、/react-best-practices和/composition-patterns前置步骤;移除旧版UI组件行的/tdd前置要求,强调设计模式与最佳实践先行。

  • a1e7b7a 2026-07-24 20:48

Same Skill Collection

.agents/skills/java-checkstyle/SKILL.md
.agents/skills/ui-checkstyle/SKILL.md
.claude/skills/java-checkstyle/SKILL.md
.claude/skills/playwright-validation/SKILL.md
.claude/skills/playwright/SKILL.md
.claude/skills/writing-playwright-tests/SKILL.md
skills/code-review/SKILL.md
skills/connector-audit/SKILL.md
skills/connector-building/SKILL.md
skills/connector-review/SKILL.md
skills/connector-standards/SKILL.md
skills/dev-setup/SKILL.md
skills/java-checkstyle/SKILL.md
skills/planning/SKILL.md
skills/playwright-validation/SKILL.md
skills/playwright/SKILL.md
skills/pr-checklist/SKILL.md
skills/systematic-debugging/SKILL.md
skills/tdd/SKILL.md
skills/test-enforcement/SKILL.md
skills/test-locally/SKILL.md
skills/ui-checkstyle/SKILL.md
skills/verification/SKILL.md
skills/writing-playwright-tests/SKILL.md
.claude/skills/ui-checkstyle/SKILL.md
.claude/skills/ui-core-components/SKILL.md
skills/ui-core-components/SKILL.md

Metadata

Files
0
Version
1a15f79
Hash
aa98fd9d
Indexed
2026-07-24 20:48

ホーム - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-30 06:28
浙ICP备14020137号-1 $お客様$