feat: bootstrap he maintainer skill

This commit is contained in:
2026-04-29 21:52:55 +08:00
commit c507e52dc1
10 changed files with 377 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
# Monorepo Harness Notes
Use this reference when the repository contains multiple apps, packages, crates, or services.
## What to map clearly
- workspace root vs package roots
- shared libraries vs deployable apps
- root-level commands vs package-level commands
- ownership boundaries between packages
## Common risks
- commands at the root may not validate a specific package well
- agents may edit shared packages when a local override is safer
- build, lint, and test commands may vary by package manager and workspace tool
## Good harness patterns
- include a short workspace map
- show how to run commands for one package
- define allowed scope for a task
- prefer targeted validation for the touched package first