Skip to content

Commit db5707c

Browse files
committed
chore: add repository infrastructure for AGENTS.md compliance
1 parent 3d0014a commit db5707c

9 files changed

Lines changed: 728 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [main]
5+
pull_request:
6+
branches: [main]
7+
jobs:
8+
verify:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: DavidAnson/markdownlint-cli2-action@v19
13+
with:
14+
globs: "**/*.md"

.markdownlint.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"MD013": false,
3+
"MD033": false,
4+
"MD041": false
5+
}

.markdownlintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
AGENTS.md

AGENTS.md

Lines changed: 659 additions & 0 deletions
Large diffs are not rendered by default.

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [0.1.0] - Initial release

CLAUDE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@AGENTS.md

CONTRIBUTING.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Contributing
2+
3+
Thank you for your interest in contributing to `skill-user-proxy`.
4+
5+
## Development setup
6+
7+
```bash
8+
git clone https://github.com/metyatech/skill-user-proxy.git
9+
cd skill-user-proxy
10+
```
11+
12+
## Submitting changes
13+
14+
1. Fork the repository and create a feature branch.
15+
2. Add or update tests for any changed behavior.
16+
3. Open a pull request with a clear description of the change.
17+
18+
## Scope
19+
20+
This skill covers **reviewer proxy approval procedures**. Please keep PRs scoped to plan review and quality validation.

SECURITY.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
| Version | Supported |
6+
| ------- | --------- |
7+
| 0.1.x | Yes |
8+
9+
## Reporting a Vulnerability
10+
11+
Please report security vulnerabilities by opening a [GitHub Security Advisory](https://github.com/metyatech/skill-user-proxy/security/advisories/new).
12+
13+
Do not open a public issue for security vulnerabilities.
14+
15+
We aim to respond within 5 business days and will coordinate a fix and disclosure timeline with you.

agent-ruleset.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"source": "github:metyatech/agent-rules@HEAD",
3+
"global": true,
4+
"domains": []
5+
}

0 commit comments

Comments
 (0)