From 5972679f78686849427c94e89becbdb51d5b8cf7 Mon Sep 17 00:00:00 2001 From: thomaslovaslokoy-ui Date: Thu, 19 Mar 2026 00:41:00 +0100 Subject: [PATCH 1/2] Update SECURITY.md with reporting instructions , --- SECURITY.md | 1 + 1 file changed, 1 insertion(+) diff --git a/SECURITY.md b/SECURITY.md index efb3959..79ff886 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -5,3 +5,4 @@ If you believe you have found a security vulnerability, we encourage you to let We will investigate all legitimate reports and do our best to quickly fix the problem. Please report any vulnerabilities in our open source repositories to responsible.disclosure@vercel.com. +package-lock.json From bc7abda8a19365b89140f1d3d64dbe7bc0deee62 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 19 Mar 2026 01:55:32 +0000 Subject: [PATCH 2/2] Add AGENTS.md with guidance for AI coding agents Co-authored-by: thomaslovaslokoy-ui --- AGENTS.md | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..8fb1284 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,42 @@ +# AGENTS.md + +This file provides guidance for AI coding agents working on this repository. + +## Repository Overview + +This repository contains shared community files for [the Vercel organization](https://vercel.com/). It is intentionally minimal and serves as a central location for org-wide community health files such as security policies. + +## Repository Structure + +``` +. +├── README.md # Brief description of the repository +├── SECURITY.md # Security vulnerability reporting policy +└── AGENTS.md # This file — guidance for AI agents +``` + +## Guidelines for AI Agents + +### Scope of Changes + +- This repository contains **community health files** only. Do not add application code, build tooling, or unrelated documentation. +- Any new files should be community-facing documents (e.g., `CODE_OF_CONDUCT.md`, `CONTRIBUTING.md`, `SUPPORT.md`). + +### Editing Existing Files + +- `SECURITY.md`: Changes must preserve the contact address (`responsible.disclosure@vercel.com`) and the core reporting instructions. Do not remove or alter security-critical content. +- `README.md`: Keep it concise. It should remain a short description pointing to the Vercel organization. + +### Commit Conventions + +- Use clear, descriptive commit messages (e.g., `Add CODE_OF_CONDUCT.md`, `Update SECURITY.md contact info`). +- Prefer small, focused commits over large batched changes. + +### No Build or Test Steps + +This repository has no build system, test suite, or CI pipeline. There is nothing to install or run. + +### Pull Requests + +- Open PRs against the `main` branch. +- PR descriptions should briefly explain what community file is being added or updated and why.