From 5d856b5a52a0ae5983f8aa19d645888ae7654535 Mon Sep 17 00:00:00 2001 From: SergeyMenshykh Date: Mon, 13 Apr 2026 12:44:19 +0100 Subject: [PATCH 1/2] Fix python-feature-lifecycle skill YAML frontmatter Remove copyright comment that preceded the YAML frontmatter delimiter, which prevented the skill from loading. The --- block must be the very first line of SKILL.md. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- python/.github/skills/python-feature-lifecycle/SKILL.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/.github/skills/python-feature-lifecycle/SKILL.md b/python/.github/skills/python-feature-lifecycle/SKILL.md index d9b654a9da..80e8af17c2 100644 --- a/python/.github/skills/python-feature-lifecycle/SKILL.md +++ b/python/.github/skills/python-feature-lifecycle/SKILL.md @@ -1,5 +1,3 @@ -# Copyright (c) Microsoft. All rights reserved. - --- name: python-feature-lifecycle description: > From 5fa25cdbafb235e985fdcd33a9352dabdb65dbe0 Mon Sep 17 00:00:00 2001 From: SergeyMenshykh Date: Mon, 13 Apr 2026 12:56:59 +0100 Subject: [PATCH 2/2] fix: update broken eslint-react plugin links in devui README The upstream eslint-react repo moved plugins from packages/plugins/ to the top-level plugins/ directory, causing 404 errors detected by linkspector CI. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- python/packages/devui/frontend/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/packages/devui/frontend/README.md b/python/packages/devui/frontend/README.md index ae7bec5b39..8c6c4a0009 100644 --- a/python/packages/devui/frontend/README.md +++ b/python/packages/devui/frontend/README.md @@ -51,7 +51,7 @@ export default tseslint.config([ ]) ``` -You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules: +You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/plugins/eslint-plugin-react-dom) for React-specific lint rules: ```js // eslint.config.js