chore: implement repo improvements plan (npm scripts, docs, catalog CI, i18n, validator)
- Add npm scripts: validate, validate:strict, index, readme, chain, catalog, build - Align docs to V4 and 560 skills (GETTING_STARTED, FAQ, BUNDLES, MAINTENANCE, vietnamese) - build-catalog: output to data/ for catalog, bundles, aliases; add to CI and drift check - Add yaml dep, Node setup and catalog step in CI; extend auto-commit and drift msg - Translate CI and MAINTENANCE to English; update CI_DRIFT_FIX and maintenance routine - QUALITY_BAR/CONTRIBUTING: canonical validator npm run validate; legacy note in validate-skills.js
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
# 🤝 Contributing Guide - V3 Enterprise Edition
|
||||
# 🤝 Contributing Guide - V4 Enterprise Edition
|
||||
|
||||
**Thank you for wanting to make this repo better!** This guide shows you exactly how to contribute, even if you're new to open source.
|
||||
With V3, we raised the bar for quality. Please read the **new Quality Standards** below carefully.
|
||||
With V4, we raised the bar for quality. Please read the **new Quality Standards** below carefully.
|
||||
|
||||
---
|
||||
|
||||
## 🧐 The "Quality Bar" (V3 Standard)
|
||||
## 🧐 The "Quality Bar" (V4 Standard)
|
||||
|
||||
**Critical for new skills:** Every skill submitted must pass our **5-Point Quality Check** (see `docs/QUALITY_BAR.md` for details):
|
||||
|
||||
@@ -112,16 +112,13 @@ code example here
|
||||
- ❌ Don't do this
|
||||
```
|
||||
|
||||
#### Step 4: Validate (CRITICAL V3 STEP)
|
||||
#### Step 4: Validate (CRITICAL V4 STEP)
|
||||
|
||||
Run the validation script locally. **We will not merge PRs that fail this check.**
|
||||
Use the canonical validator `scripts/validate_skills.py` via `npm run validate`. **We will not merge PRs that fail this check.**
|
||||
|
||||
```bash
|
||||
# Soft mode (warnings only)
|
||||
python3 scripts/validate_skills.py
|
||||
|
||||
# Hard mode (what CI runs)
|
||||
python3 scripts/validate_skills.py --strict
|
||||
npm run validate # soft mode (warnings only)
|
||||
npm run validate:strict # strict mode (what CI runs)
|
||||
```
|
||||
|
||||
This checks:
|
||||
|
||||
Reference in New Issue
Block a user