mustflow 1.16.0 → 1.18.0

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/README.md CHANGED
@@ -55,7 +55,7 @@ flowchart TD
55
55
 
56
56
  `read_order` defines the required reading sequence, while `optional_read_order` and `[context]` control how task-specific context loads. The `[refresh]` policy sets when agents reread the same instructions.
57
57
 
58
- The skills index acts as an active routing step: agents compare the task with `.mustflow/skills/INDEX.md` and read matching `SKILL.md` files before editing that scope. Skills guide procedure only; command execution still comes from `.mustflow/config/commands.toml`.
58
+ The skills index acts as an active routing step: agents compare the task with `.mustflow/skills/INDEX.md` and read matching `SKILL.md` files before editing that scope. This step is required before file edits even when `mf doctor` or `mf check` passes, because health checks do not decide which task procedure applies. When files are created or modified, the final report should include a concise skill-selection note. Skills guide procedure only; command execution still comes from `.mustflow/config/commands.toml`.
59
59
 
60
60
  ## Quick start
61
61
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mustflow",
3
- "version": "1.16.0",
3
+ "version": "1.18.0",
4
4
  "description": "Agent workflow documents and CLI for mustflow repository roots.",
5
5
  "type": "module",
6
6
  "license": "MIT-0",
@@ -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 = 11
14
- translations.ko = { path = "locales/ko/AGENTS.md", source_revision = 11, status = "current" }
13
+ revision = 13
14
+ translations.ko = { path = "locales/ko/AGENTS.md", source_revision = 13, 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" }
@@ -40,8 +40,8 @@ translations.hi = { path = "locales/hi/.mustflow/context/PROJECT.md", source_rev
40
40
  [documents."docs.agent-workflow"]
41
41
  source = "locales/en/.mustflow/docs/agent-workflow.md"
42
42
  source_locale = "en"
43
- revision = 18
44
- translations.ko = { path = "locales/ko/.mustflow/docs/agent-workflow.md", source_revision = 18, status = "current" }
43
+ revision = 19
44
+ translations.ko = { path = "locales/ko/.mustflow/docs/agent-workflow.md", source_revision = 19, status = "current" }
45
45
  translations.zh = { path = "locales/zh/.mustflow/docs/agent-workflow.md", source_revision = 18, status = "needs_review" }
46
46
  translations.es = { path = "locales/es/.mustflow/docs/agent-workflow.md", source_revision = 18, status = "needs_review" }
47
47
  translations.fr = { path = "locales/fr/.mustflow/docs/agent-workflow.md", source_revision = 18, status = "needs_review" }
@@ -2,7 +2,7 @@
2
2
  mustflow_doc: docs.agent-workflow
3
3
  locale: en
4
4
  canonical: true
5
- revision: 18
5
+ revision: 19
6
6
  lifecycle: mustflow-owned
7
7
  authority: workflow-policy
8
8
  ---
@@ -62,7 +62,7 @@ Activate a skill later if new evidence changes the task type. For example, a fai
62
62
 
63
63
  When multiple skills apply, follow the most specific skill for each affected scope and combine only their declared command intents. Skills never authorize raw shell commands, long-running processes, or writes outside the task scope.
64
64
 
65
- When a skill is used, or when a plausible skill is intentionally skipped, report the skill name and the selection reason briefly in the next user-facing update or final report. Do not create a versioned worklog solely to record skill selection.
65
+ When a skill is used, report the skill name and selection reason briefly in the next user-facing update or final report. When files were created or modified, the final report must include a concise skill-selection note: list the skills used, say that no matching installed skill was found, or report that a plausible skill is missing from the installed profile. Do not create a versioned worklog solely to record skill selection.
66
66
 
67
67
  ## Input Stability
68
68
 
@@ -336,10 +336,11 @@ Do not store raw full logs, secrets, customer data, or long transcripts in `.mus
336
336
 
337
337
  Final reports should include:
338
338
 
339
+ - Skill selection note, when files were created or modified
339
340
  - Changed files
340
341
  - Command intents run
341
342
  - Command intents skipped with reasons
342
343
  - Verification results
343
344
  - Remaining risk
344
345
 
345
- Suggest commits only when `.mustflow/config/preferences.toml` allows it.
346
+ Suggest commits only when `.mustflow/config/preferences.toml` allows it.
@@ -2,7 +2,7 @@
2
2
  mustflow_doc: agents.root
3
3
  locale: en
4
4
  canonical: true
5
- revision: 11
5
+ revision: 13
6
6
  lifecycle: user-editable
7
7
  authority: binding
8
8
  ---
@@ -63,7 +63,14 @@ mustflow-managed details are under `.mustflow/`.
63
63
  - If `DESIGN.md` exists, read it only for UI, visual design, layout, design-token, or accessibility
64
64
  work. Do not create a `DESIGN.md` if one does not exist.
65
65
  - Read the matching skill document when one applies to the task.
66
- - Before editing, use `.mustflow/skills/INDEX.md` to decide whether one or more skills apply.
66
+ - Before creating or modifying any file, use `.mustflow/skills/INDEX.md` to decide whether one or more skills apply.
67
+ This skill-selection gate is mandatory even for small or seemingly obvious tasks.
68
+ - `mf doctor`, `mf check`, and other health checks do not satisfy the skill-selection gate. They
69
+ confirm repository health; they do not decide which task procedure applies.
70
+ - If a matching skill applies, read the matching `SKILL.md` before editing that scope. After
71
+ creating or modifying files, include a concise skill-selection note in the final report: name the
72
+ skills used, state that no matching installed skill was found, or report that a plausible skill is
73
+ missing from the installed profile.
67
74
  - If a skill becomes relevant after new evidence, such as a command failure or a documentation
68
75
  change, read the matching `SKILL.md` before continuing that part of the work.
69
76
  - Skill documents guide procedure. They do not authorize commands outside
@@ -2,7 +2,7 @@
2
2
  mustflow_doc: docs.agent-workflow
3
3
  locale: ko
4
4
  canonical: false
5
- revision: 25
5
+ revision: 26
6
6
  lifecycle: mustflow-owned
7
7
  authority: workflow-policy
8
8
  ---
@@ -104,7 +104,7 @@ mustflow 문서는 각각 명확한 역할을 갖습니다. 단순히 편하게
104
104
 
105
105
  여러 스킬이 동시에 맞으면 변경 범위별로 가장 구체적인 스킬을 따르며, 각 스킬이 선언한 명령 의도만 합쳐서 검토합니다. 스킬은 원시 셸 명령, 장기 실행 프로세스, 작업 범위 밖 쓰기를 허용하지 않습니다.
106
106
 
107
- 스킬을 사용했거나 사용할 수 있어 보이는 스킬을 일부러 건너뛰었다면, 다음 사용자 업데이트나 최종 보고에서 스킬 이름과 선택 이유를 간략히 밝힙니다. 스킬 선택 기록만을 위해 버전 관리되는 작업 로그를 만들지 않습니다.
107
+ 스킬을 사용했다면 다음 사용자 업데이트나 최종 보고에서 스킬 이름과 선택 이유를 간략히 밝힙니다. 파일을 만들거나 수정한 작업의 최종 보고에는 반드시 짧은 스킬 선택 기록을 포함합니다. 사용한 스킬 목록, 설치된 스킬 중 맞는 항목이 없었다는 사실, 또는 그럴듯한 스킬이 현재 프로필에 설치되어 있지 않다는 누락 중 해당 내용을 밝힙니다. 스킬 선택 기록만을 위해 버전 관리되는 작업 로그를 만들지 않습니다.
108
108
 
109
109
  ## 상위/하위 규칙 우선순위
110
110
 
@@ -503,4 +503,4 @@ Git 기록을 바꾸는 행동은 기본적으로 금지합니다.
503
503
  - 명령어가 변경되면 `.mustflow/config/commands.toml`을 갱신합니다.
504
504
  - 언어, 서식, 주석, 커밋 메시지, 로그 기본값이 변경되면 `.mustflow/config/preferences.toml`을 갱신합니다.
505
505
  - 보호 경로나 기준 문서가 변경되면 `.mustflow/config/mustflow.toml`을 갱신합니다.
506
- - 구조가 변경되고 저장소 지도가 필요하면 `repo_map` 의도를 통해 `REPO_MAP.md`를 갱신합니다.
506
+ - 구조가 변경되고 저장소 지도가 필요하면 `repo_map` 의도를 통해 `REPO_MAP.md`를 갱신합니다.
@@ -2,7 +2,7 @@
2
2
  mustflow_doc: agents.root
3
3
  locale: ko
4
4
  canonical: false
5
- revision: 17
5
+ revision: 19
6
6
  lifecycle: user-editable
7
7
  authority: binding
8
8
  ---
@@ -46,7 +46,9 @@ mustflow가 관리하는 세부 문서와 설정은 `.mustflow/` 폴더 아래
46
46
  - `.mustflow/context/` 파일은 프로젝트 방향과 도메인 약속을 설명하는 작업별 문맥입니다. 코드, 테스트, 명령 계약, 사용자 지시를 대신하는 최종 기준으로 보지 않습니다.
47
47
  - `DESIGN.md`가 있으면 UI, 시각 디자인, 레이아웃, 디자인 토큰, 접근성 작업에서만 읽습니다. 없는 `DESIGN.md`를 임의로 생성하지 않습니다.
48
48
  - 작업과 맞는 스킬이 있으면 해당 `SKILL.md`를 읽고 따릅니다.
49
- - 수정 `.mustflow/skills/INDEX.md`를 기준으로 현재 작업에 적용 가능한 스킬이 하나 이상 있는지 판단합니다.
49
+ - 파일을 만들거나 수정하기 전에 `.mustflow/skills/INDEX.md`를 기준으로 현재 작업에 적용 가능한 스킬이 하나 이상 있는지 판단합니다. 이 스킬 선택 단계는 작업이 작거나 명백해 보이는 경우에도 반드시 거쳐야 합니다.
50
+ - `mf doctor`, `mf check` 같은 상태 점검 명령은 스킬 선택 단계를 대신하지 않습니다. 이 명령들은 저장소 상태를 확인할 뿐, 현재 작업에 어떤 절차가 필요한지 결정하지 않습니다.
51
+ - 적용되는 스킬이 있으면 해당 범위를 편집하기 전에 맞는 `SKILL.md`를 읽습니다. 파일을 만들거나 수정한 뒤에는 최종 보고에 짧은 스킬 선택 기록을 포함합니다. 사용한 스킬 이름, 설치된 스킬 중 맞는 항목이 없었다는 사실, 또는 색인상 그럴듯한 스킬이 현재 프로필에 설치되어 있지 않다는 누락 중 해당 내용을 밝힙니다.
50
52
  - 명령 실패나 문서 변경 등 작업 중 새 근거가 생겨 스킬이 필요해지면, 해당 범위를 계속하기 전에 반드시 맞는 `SKILL.md`를 읽습니다.
51
53
  - 스킬 문서는 절차 안내용일 뿐 `.mustflow/config/commands.toml` 밖의 명령 실행을 허용하거나 사용자, 호스트, 저장소, 안전 규칙을 덮어쓰지 않습니다.
52
54
  - 생성 파일, 외부 의존성, 비밀 정보 파일은 명시적 요청 없이는 수정하지 않습니다.
@@ -1,6 +1,6 @@
1
1
  id = "default"
2
2
  name = "default"
3
- version = "1.16.0"
3
+ version = "1.18.0"
4
4
  description = "Minimal workflow for LLM agents to read, edit, and verify their work in a repository."
5
5
  common_root = "common"
6
6
  locales_root = "locales"