Skip to content

Commit 4062bb4

Browse files
committed
feat: compliance with AGENTS.md and standard project health files
1 parent 93662b7 commit 4062bb4

11 files changed

Lines changed: 1709 additions & 1 deletion

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
node_modules/
2+
.DS_Store
3+
*.log
4+
.gemini/
5+
.claude/
6+
.threads.jsonl

.markdownlint.json

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

AGENTS.md

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

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
## [1.0.0] - 2026-03-02
9+
10+
### Added
11+
12+
- Initial release of `skill-quality-workflow`.
13+
- `AGENTS.md` rules.
14+
- `package.json` with linting and verification scripts.
15+
- `CONTRIBUTING.md`, `SECURITY.md`, and `CHANGELOG.md`.
16+
- `.gitignore`.

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: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Contributing
2+
3+
We welcome contributions to the `skill-quality-workflow` project!
4+
5+
## Development
6+
7+
This repository uses [Agent Skills](https://agentskills.io) format.
8+
9+
### Prerequisite
10+
11+
- Node.js (latest LTS)
12+
- npm
13+
14+
### Setup
15+
16+
```bash
17+
npm install
18+
```
19+
20+
### Verification
21+
22+
Before committing, run:
23+
24+
```bash
25+
npm run verify
26+
```
27+
28+
This will run linting and regenerate `AGENTS.md`.
29+
30+
## Pull Requests
31+
32+
1. Create a new branch.
33+
2. Make your changes.
34+
3. Verify your changes.
35+
4. Open a Pull Request.
36+
37+
## License
38+
39+
By contributing to this repository, you agree to license your contributions under the MIT License.

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ Provides guidance for:
2121
npx skills add metyatech/skill-quality-workflow --yes --global
2222
```
2323

24+
## Community and Support
25+
26+
- [Contributing](CONTRIBUTING.md) — How to contribute to this project
27+
- [Security](SECURITY.md) — Security policy and reporting
28+
- [Changelog](CHANGELOG.md) — Notable changes to this project
29+
2430
## License
2531

26-
MIT
32+
MIT - see [LICENSE](LICENSE) for details.

SECURITY.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Security Policy
2+
3+
## Reporting a Vulnerability
4+
5+
If you've discovered a security vulnerability in this project, please report it via [GitHub Issues](https://github.com/metyatech/skill-quality-workflow/issues).
6+
7+
We will investigate all reports as quickly as possible.
8+
9+
## Security Guidelines
10+
11+
- Never log, print, or commit secrets, API keys, or sensitive credentials.
12+
- Use secure methods for handling sensitive data.
13+
- Regularly update dependencies to fix security issues.

agent-ruleset.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"source": "github:metyatech/agent-rules@latest",
3+
"domains": ["node"],
4+
"extra": [],
5+
"claude": {
6+
"enabled": true,
7+
"output": "CLAUDE.md"
8+
},
9+
"output": "AGENTS.md"
10+
}

0 commit comments

Comments
 (0)