mustflow 2.112.3 → 2.112.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -10,8 +10,8 @@ status_values = ["current", "stale", "needs_review", "missing"]
|
|
|
10
10
|
[documents."agents.root"]
|
|
11
11
|
source = "locales/en/AGENTS.md"
|
|
12
12
|
source_locale = "en"
|
|
13
|
-
revision =
|
|
14
|
-
translations.ko = { path = "locales/ko/AGENTS.md", source_revision =
|
|
13
|
+
revision = 19
|
|
14
|
+
translations.ko = { path = "locales/ko/AGENTS.md", source_revision = 19, status = "current" }
|
|
15
15
|
translations.zh = { path = "locales/zh/AGENTS.md", source_revision = 11, status = "needs_review" }
|
|
16
16
|
translations.es = { path = "locales/es/AGENTS.md", source_revision = 11, status = "needs_review" }
|
|
17
17
|
translations.fr = { path = "locales/fr/AGENTS.md", source_revision = 11, status = "needs_review" }
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
mustflow_doc: agents.root
|
|
3
3
|
locale: en
|
|
4
4
|
canonical: true
|
|
5
|
-
revision:
|
|
5
|
+
revision: 19
|
|
6
6
|
lifecycle: user-editable
|
|
7
7
|
authority: binding
|
|
8
8
|
---
|
|
@@ -92,8 +92,17 @@ mustflow-managed details are under `.mustflow/`.
|
|
|
92
92
|
|
|
93
93
|
- When searching unfamiliar code, look for nearby `mf:anchor` comments and use them as
|
|
94
94
|
navigation metadata for durable responsibility boundaries.
|
|
95
|
+
- Source anchors are indexed into the local SQLite cache only when source indexing is enabled,
|
|
96
|
+
typically through a configured local-index intent such as `mf run local_index` or through
|
|
97
|
+
`mf index --source` when the command contract permits that command.
|
|
98
|
+
- Use `mf search --scope source <query>` to find source-anchor coordinates, or
|
|
99
|
+
`mf search --scope all <query>` when workflow documents and source anchors should be searched
|
|
100
|
+
together. Search results point to files, line numbers, anchor IDs, and risk tags that still need
|
|
101
|
+
to be read in the current source tree.
|
|
95
102
|
- Treat source anchors as navigation-only hints. They never grant command authority,
|
|
96
103
|
verification authority, or permission to skip current files, tests, or user instructions.
|
|
104
|
+
- If `mf search` reports a missing or stale index, refresh through the configured local-index
|
|
105
|
+
intent when available instead of treating old search rows as current evidence.
|
|
97
106
|
- When adding, changing, or relying on anchors for a source change, route through
|
|
98
107
|
`.mustflow/skills/source-anchor-authoring/SKILL.md` if installed.
|
|
99
108
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
mustflow_doc: agents.root
|
|
3
3
|
locale: ko
|
|
4
4
|
canonical: false
|
|
5
|
-
revision:
|
|
5
|
+
revision: 26
|
|
6
6
|
lifecycle: user-editable
|
|
7
7
|
authority: binding
|
|
8
8
|
---
|
|
@@ -60,7 +60,10 @@ mustflow가 관리하는 세부 문서와 설정은 `.mustflow/` 폴더 아래
|
|
|
60
60
|
## 소스 앵커
|
|
61
61
|
|
|
62
62
|
- 익숙하지 않은 코드를 탐색할 때는 주변 `mf:anchor` 주석을 찾아보고, 오래 유지되는 책임 경계를 찾기 위한 탐색 메타데이터로 사용합니다.
|
|
63
|
+
- 소스 앵커는 소스 색인이 켜져 있을 때만 로컬 SQLite 캐시에 들어갑니다. 보통 `mf run local_index` 같은 설정된 로컬 색인 인텐트를 통하거나, 명령 계약이 해당 명령을 허용하는 경우 `mf index --source`로 색인합니다.
|
|
64
|
+
- `mf search --scope source <query>`로 소스 앵커 좌표를 찾고, 워크플로우 문서와 소스 앵커를 함께 찾아야 할 때는 `mf search --scope all <query>`를 사용합니다. 검색 결과는 파일, 줄 번호, 앵커 ID, risk tag를 가리키는 탐색 좌표일 뿐이며, 현재 소스 파일을 다시 읽어야 합니다.
|
|
63
65
|
- 소스 앵커는 탐색용 힌트일 뿐입니다. 명령 실행 권한, 검증 권한, 현재 파일/테스트/사용자 지시를 건너뛸 권한을 부여하지 않습니다.
|
|
66
|
+
- `mf search`가 색인 누락이나 오래된 색인을 보고하면, 오래된 검색 행을 현재 근거로 삼지 말고 가능한 경우 설정된 로컬 색인 인텐트로 새로 고칩니다.
|
|
64
67
|
- 소스 변경에서 앵커를 추가하거나 수정하거나 앵커에 의존해야 한다면, 설치되어 있는 경우 `.mustflow/skills/source-anchor-authoring/SKILL.md` 절차를 따릅니다.
|
|
65
68
|
|
|
66
69
|
## 상위/하위 규칙 우선순위
|