From 9631e077a24b18d3638703714ef0e7e46a0788b1 Mon Sep 17 00:00:00 2001 From: 0xDevNinja Date: Fri, 26 Jun 2026 13:18:35 +0530 Subject: [PATCH] docs: scope orphaned skill-level AGENTS.md as supplementary references Three skill directories ship a long-form upstream AGENTS.md alongside their loadable SKILL.md: .agents/skills/flux-best-practices/AGENTS.md .agents/skills/vercel-composition-patterns/AGENTS.md .agents/skills/vercel-react-best-practices/AGENTS.md None were referenced by their parent SKILL.md, skills/INDEX.md, AGENT_GUIDE.md, or any pipeline manifest, leaving their authority scope undefined relative to the repository-root AGENTS.md (override / extend / ignore?). Reference each from its SKILL.md with explicit scope: the AGENTS.md is supplementary upstream reference material for that skill only, SKILL.md is the loadable entry point and the authority, and it does not override or extend the root AGENTS.md / AGENT_GUIDE.md. Preserves the vendored content while removing the ambiguity. Refs #61 --- .agents/skills/flux-best-practices/SKILL.md | 2 ++ .agents/skills/vercel-composition-patterns/SKILL.md | 2 ++ .agents/skills/vercel-react-best-practices/SKILL.md | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.agents/skills/flux-best-practices/SKILL.md b/.agents/skills/flux-best-practices/SKILL.md index 414e8cf..7d725f1 100644 --- a/.agents/skills/flux-best-practices/SKILL.md +++ b/.agents/skills/flux-best-practices/SKILL.md @@ -11,6 +11,8 @@ metadata: Use this skill when generating prompts for any BFL FLUX model to ensure optimal image quality and accurate prompt interpretation. +> **Extended reference:** [`AGENTS.md`](AGENTS.md) in this directory is the long-form upstream FLUX guide (vendored from Black Forest Labs). It is supplementary reference material scoped to this skill only — `SKILL.md` is the loadable entry point and the authority. It does not override or extend the repository-root `AGENTS.md` / `AGENT_GUIDE.md`. + ## When to Use - Creating prompts for FLUX.2 or FLUX.1 models diff --git a/.agents/skills/vercel-composition-patterns/SKILL.md b/.agents/skills/vercel-composition-patterns/SKILL.md index d07025b..a460ad7 100644 --- a/.agents/skills/vercel-composition-patterns/SKILL.md +++ b/.agents/skills/vercel-composition-patterns/SKILL.md @@ -19,6 +19,8 @@ boolean prop proliferation by using compound components, lifting state, and composing internals. These patterns make codebases easier for both humans and AI agents to work with as they scale. +> **Extended reference:** [`AGENTS.md`](AGENTS.md) in this directory is the long-form upstream guide (vendored from Vercel). It is supplementary reference material scoped to this skill only — `SKILL.md` is the loadable entry point and the authority. It does not override or extend the repository-root `AGENTS.md` / `AGENT_GUIDE.md`. + ## When to Apply Reference these guidelines when: diff --git a/.agents/skills/vercel-react-best-practices/SKILL.md b/.agents/skills/vercel-react-best-practices/SKILL.md index df17a29..c836c90 100644 --- a/.agents/skills/vercel-react-best-practices/SKILL.md +++ b/.agents/skills/vercel-react-best-practices/SKILL.md @@ -11,6 +11,8 @@ metadata: Comprehensive performance optimization guide for React and Next.js applications, maintained by Vercel. Contains 65 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. +> **Extended reference:** [`AGENTS.md`](AGENTS.md) in this directory is the long-form upstream guide (vendored from Vercel). It is supplementary reference material scoped to this skill only — `SKILL.md` is the loadable entry point and the authority. It does not override or extend the repository-root `AGENTS.md` / `AGENT_GUIDE.md`. + ## When to Apply Reference these guidelines when: