Шаблон больше не хардкодит mappa-триггеры (inbox monitor, use project wiki, use task management system, check across all projects, session handoff убраны). Kanonicheskiy набор (вкл. session sync) инжектится при создании/апгрейде через mappa-bootstrap (install.sh --triggers). Step 5.7.2: верификация → инъекция.
27 lines
1.3 KiB
Plaintext
27 lines
1.3 KiB
Plaintext
# AGENTS.md
|
||
# Agent instructions. Each line is a trigger for an installed skill.
|
||
#
|
||
# mappa-специфичные триггеры (inbox monitor: raise on start, session sync:
|
||
# write to mappa, use project wiki, use task management system, check across
|
||
# all projects) НЕ хардкодятся здесь — project-bootstrap mappa-agnostic. Они
|
||
# инжектятся при создании/апгрейде проекта через mappa-bootstrap:
|
||
# bash <mappa>/skills-core/mappa-bootstrap/assets/install.sh --triggers <dir>
|
||
# (см. Step 5.7.2 — mappa-конвенции в AGENTS.md, делегирование в mappa-bootstrap)
|
||
|
||
# Search rule
|
||
|
||
⛔ Never walk `node_modules/`, `dist/`, `build/`, `.nuxt/` (or any parent tree
|
||
containing them) with non-gitignore-aware search tools — measured 3701s vs rg
|
||
0s (2026-08-26). Use `rg` and NEVER `rg --no-ignore`/`-u` (those bypass the
|
||
ignore protection and walk node_modules again). Also no `grep -r`/`-R`/
|
||
`--recursive`, `ag`, `ack`, `find … -exec grep`. `grep --include` filters
|
||
result file names, NOT directory traversal — it still walks every node_modules
|
||
entry; `| grep -v node_modules` filters after the walk, doesn't save you.
|
||
|
||
talk like a caveman
|
||
pull remote before work
|
||
follow tdd-criteria
|
||
delegate to interns when allowed
|
||
recommend, don't menu
|
||
we're on Windows
|