viepilot 1.8.0 → 1.8.1

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/CHANGELOG.md CHANGED
@@ -9,10 +9,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  ### Planned
11
11
 
12
- - **M1.25 / Phase 29 (ENH-018)** — **Crystallize + ARCHITECTURE**: Mermaid diagrams **complexity-gated** from brainstorm; six diagram kinds with required/optional/N/A; vp-audit / vp-auto / vp-debug alignment; target **1.8.0** on complete.
12
+ - None.
13
13
 
14
14
  ### Added
15
15
 
16
+ - None yet.
17
+
18
+ ## [1.8.1] - 2026-04-01
19
+
20
+ ### Fixed
21
+
22
+ - **M1.26 / Phase 30 (BUG-004) completed** — enforced vp-only namespace behavior across the framework: all `vp-*` skills include scope guard rules, core workflows default to `vp-*` routing only, and external skills are allowed only via explicit user opt-in.
23
+
24
+ ### Added
25
+
26
+ - `tests/unit/vp-scope-policy-contracts.test.js` — regression tests to ensure all bundled skills/workflows retain the BUG-004 scope policy contract.
27
+
28
+ ### Documentation
29
+
30
+ - `docs/skills-reference.md`, `docs/user/features/autonomous-mode.md`, `docs/user/features/debug-mode.md`, `docs/user/quick-start.md` — clarified default `vp-*` scope and added explicit opt-in examples for external skills.
31
+
16
32
  ## [1.8.0] - 2026-04-01
17
33
 
18
34
  ### Added
@@ -274,7 +290,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
274
290
 
275
291
  ---
276
292
 
277
- [Unreleased]: https://github.com/0-CODE/viepilot/compare/v1.8.0...HEAD
293
+ [Unreleased]: https://github.com/0-CODE/viepilot/compare/v1.8.1...HEAD
294
+ [1.8.1]: https://github.com/0-CODE/viepilot/compare/v1.8.0...v1.8.1
278
295
  [1.8.0]: https://github.com/0-CODE/viepilot/compare/v1.7.0...v1.8.0
279
296
  [0.10.0]: https://github.com/0-CODE/viepilot/compare/v0.9.0...v0.10.0
280
297
  [0.9.0]: https://github.com/0-CODE/viepilot/compare/v0.8.2...v0.9.0
@@ -2,6 +2,14 @@
2
2
 
3
3
  Complete reference for all ViePilot skills.
4
4
 
5
+ ## ViePilot Scope Policy
6
+
7
+ - **Default behavior**: ViePilot workflows and responses only use skills under `vp-*`.
8
+ - **Out-of-scope by default**: skills outside the ViePilot namespace are ignored, even if present in the runtime environment.
9
+ - **Explicit opt-in**: external skills are considered only when the user explicitly asks to expand beyond ViePilot scope.
10
+ - **Routing fallback**: if an external skill is mentioned accidentally, prefer the closest built-in `vp-*` command instead.
11
+ - **Opt-in example**: "Trong bước này, cho phép dùng thêm external skills ngoài ViePilot để tham khảo."
12
+
5
13
  ---
6
14
 
7
15
  ## /vp-brainstorm
@@ -30,6 +30,12 @@ Mỗi task:
30
30
  /vp-auto --dry-run # Preview, không execute
31
31
  ```
32
32
 
33
+ ## ViePilot Scope Policy (BUG-004)
34
+
35
+ - Mặc định, `/vp-auto` chỉ route/gợi ý các skill thuộc namespace `vp-*`.
36
+ - Nếu môi trường runtime có skills ngoài framework, workflow sẽ bỏ qua và ưu tiên skill ViePilot tương đương.
37
+ - Chỉ khi bạn ghi rõ yêu cầu mở rộng (explicit opt-in), agent mới được phép dùng external skills.
38
+
33
39
  ### Doc-first gate (v0.8.2 / BUG-001)
34
40
 
35
41
  Workflow `autonomous.md` yêu cầu **ghi nhận kế hoạch trong file task** và **`PHASE-STATE` → `in_progress`** trước khi chỉnh sửa deliverable. Xem `workflows/autonomous.md` — *Pre-execution documentation gate*.
@@ -75,3 +75,4 @@ Active debug sessions:
75
75
  - Mô tả problem cụ thể: "X happens when Y" thay vì "something is broken"
76
76
  - Một session per issue — không mix nhiều bugs
77
77
  - Dùng `/vp-debug continue` sau context reset để không mất progress
78
+ - Theo policy BUG-004, `/vp-debug` mặc định chỉ dùng hệ skill `vp-*`; external skills chỉ dùng khi bạn explicit opt-in.
@@ -182,6 +182,14 @@ Hiển thị:
182
182
 
183
183
  ---
184
184
 
185
+ ## Skill Scope (BUG-004)
186
+
187
+ - Theo mặc định, ViePilot chỉ dùng hệ lệnh/skill `vp-*` trong toàn bộ workflow.
188
+ - Nếu bạn thấy đề cập skill ngoài framework, hãy coi đó là out-of-scope trừ khi bạn đã explicit opt-in.
189
+ - Ví dụ opt-in hợp lệ: "Cho phép dùng thêm external skills ngoài ViePilot trong bước research này."
190
+
191
+ ---
192
+
185
193
  ## Next Steps
186
194
 
187
195
  - [Skills Reference](../skills-reference.md) — Chi tiết tất cả commands
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "viepilot",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "description": "**Autonomous Vibe Coding Framework / Bộ khung phát triển tự động có kiểm soát**",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -15,6 +15,13 @@ Display audit results clearly with actionable suggestions grouped by tier.
15
15
  ## C. Tool Usage
16
16
  Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`, `WebFetch`, `Subagent`
17
17
  </cursor_skill_adapter>
18
+ <scope_policy>
19
+ ## ViePilot Namespace Guard (BUG-004)
20
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
21
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
22
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
23
+ </scope_policy>
24
+
18
25
 
19
26
  <objective>
20
27
  Audit ViePilot project state và documentation để phát hiện drift.
@@ -18,6 +18,13 @@ Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`,
18
18
  ## D. Subagent Spawning
19
19
  Use `Task(subagent_type="generalPurpose", ...)` for parallel execution.
20
20
  </cursor_skill_adapter>
21
+ <scope_policy>
22
+ ## ViePilot Namespace Guard (BUG-004)
23
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
24
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
25
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
26
+ </scope_policy>
27
+
21
28
 
22
29
  <objective>
23
30
  Autonomous execution của project phases. Cho mỗi phase: analyze → plan → execute → verify → iterate.
@@ -15,6 +15,13 @@ Prompt user conversationally với numbered list options.
15
15
  ## C. Tool Usage
16
16
  Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`, `WebFetch`, `Subagent`
17
17
  </cursor_skill_adapter>
18
+ <scope_policy>
19
+ ## ViePilot Namespace Guard (BUG-004)
20
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
21
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
22
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
23
+ </scope_policy>
24
+
18
25
 
19
26
  <objective>
20
27
  Thu thập ý tưởng, requirements, quyết định kiến trúc cho dự án thông qua interactive Q&A.
@@ -15,6 +15,13 @@ Prompt user conversationally với numbered list options.
15
15
  ## C. Tool Usage
16
16
  Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`, `WebFetch`, `Subagent`
17
17
  </cursor_skill_adapter>
18
+ <scope_policy>
19
+ ## ViePilot Namespace Guard (BUG-004)
20
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
21
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
22
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
23
+ </scope_policy>
24
+
18
25
 
19
26
  <objective>
20
27
  Chuyển đổi brainstorm sessions thành structured artifacts để AI có thể autonomous execution.
@@ -15,6 +15,13 @@ Prompt user conversationally. Guide through systematic debugging steps.
15
15
  ## C. Tool Usage
16
16
  Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`, `WebFetch`, `Subagent`
17
17
  </cursor_skill_adapter>
18
+ <scope_policy>
19
+ ## ViePilot Namespace Guard (BUG-004)
20
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
21
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
22
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
23
+ </scope_policy>
24
+
18
25
 
19
26
  <objective>
20
27
  Systematic debugging với persistent state tracking. Giúp track vấn đề qua nhiều sessions.
@@ -15,6 +15,13 @@ Prompt user conversationally với options.
15
15
  ## C. Tool Usage
16
16
  Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`, `WebFetch`, `Subagent`
17
17
  </cursor_skill_adapter>
18
+ <scope_policy>
19
+ ## ViePilot Namespace Guard (BUG-004)
20
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
21
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
22
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
23
+ </scope_policy>
24
+
18
25
 
19
26
  <objective>
20
27
  Generate comprehensive documentation từ code và artifacts.
@@ -15,6 +15,13 @@ Prompt user conversationally với options.
15
15
  ## C. Tool Usage
16
16
  Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`, `WebFetch`, `Subagent`
17
17
  </cursor_skill_adapter>
18
+ <scope_policy>
19
+ ## ViePilot Namespace Guard (BUG-004)
20
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
21
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
22
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
23
+ </scope_policy>
24
+
18
25
 
19
26
  <objective>
20
27
  Nâng cấp hoặc mở rộng dự án sau khi hoàn thành milestone hoặc cần thêm features.
@@ -12,6 +12,13 @@ version: 0.1.0
12
12
  ## B. Tool Usage
13
13
  Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`, `WebFetch`, `Subagent`
14
14
  </cursor_skill_adapter>
15
+ <scope_policy>
16
+ ## ViePilot Namespace Guard (BUG-004)
17
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
18
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
19
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
20
+ </scope_policy>
21
+
15
22
 
16
23
  <objective>
17
24
  Chạy **`vp-tools info`** để lấy metadata bundle ViePilot (không cần `.viepilot/` trong project đích).
@@ -15,6 +15,13 @@ Prompt user conversationally để gather state info.
15
15
  ## C. Tool Usage
16
16
  Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`, `WebFetch`, `Subagent`
17
17
  </cursor_skill_adapter>
18
+ <scope_policy>
19
+ ## ViePilot Namespace Guard (BUG-004)
20
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
21
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
22
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
23
+ </scope_policy>
24
+
18
25
 
19
26
  <objective>
20
27
  Save complete work state để có thể resume từ bất kỳ context nào.
@@ -15,6 +15,13 @@ Prompt user conversationally với numbered list options.
15
15
  ## C. Tool Usage
16
16
  Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`, `WebFetch`, `Subagent`
17
17
  </cursor_skill_adapter>
18
+ <scope_policy>
19
+ ## ViePilot Namespace Guard (BUG-004)
20
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
21
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
22
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
23
+ </scope_policy>
24
+
18
25
 
19
26
  <objective>
20
27
  Tạo và quản lý requests cho dự án đang phát triển:
@@ -15,6 +15,13 @@ Prompt user conversationally với options.
15
15
  ## C. Tool Usage
16
16
  Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`, `WebFetch`, `Subagent`
17
17
  </cursor_skill_adapter>
18
+ <scope_policy>
19
+ ## ViePilot Namespace Guard (BUG-004)
20
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
21
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
22
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
23
+ </scope_policy>
24
+
18
25
 
19
26
  <objective>
20
27
  Restore complete project context và resume work seamlessly.
@@ -15,6 +15,13 @@ Show available checkpoints and confirm before rollback.
15
15
  ## C. Tool Usage
16
16
  Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`, `WebFetch`, `Subagent`
17
17
  </cursor_skill_adapter>
18
+ <scope_policy>
19
+ ## ViePilot Namespace Guard (BUG-004)
20
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
21
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
22
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
23
+ </scope_policy>
24
+
18
25
 
19
26
  <objective>
20
27
  Rollback đến bất kỳ checkpoint nào một cách an toàn, với backup và state preservation.
@@ -12,6 +12,13 @@ version: 0.1.0
12
12
  ## B. Tool Usage
13
13
  Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`, `WebFetch`, `Subagent`
14
14
  </cursor_skill_adapter>
15
+ <scope_policy>
16
+ ## ViePilot Namespace Guard (BUG-004)
17
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
18
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
19
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
20
+ </scope_policy>
21
+
15
22
 
16
23
  <objective>
17
24
  Hiển thị visual progress dashboard với actionable insights.
@@ -12,6 +12,13 @@ version: 0.1.0
12
12
  ## B. Tool Usage
13
13
  Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`, `WebFetch`, `Subagent`
14
14
  </cursor_skill_adapter>
15
+ <scope_policy>
16
+ ## ViePilot Namespace Guard (BUG-004)
17
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
18
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
19
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
20
+ </scope_policy>
21
+
15
22
 
16
23
  <objective>
17
24
  Manual control over tasks khi cần fine-grained management.
@@ -15,6 +15,13 @@ Prompt user conversationally với numbered list options.
15
15
  ## C. Tool Usage
16
16
  Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`, `WebFetch`, `Subagent`
17
17
  </cursor_skill_adapter>
18
+ <scope_policy>
19
+ ## ViePilot Namespace Guard (BUG-004)
20
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
21
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
22
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
23
+ </scope_policy>
24
+
18
25
 
19
26
  <objective>
20
27
  Thu thập, phân loại, và lưu trữ UI components để tái sử dụng:
@@ -12,6 +12,13 @@ version: 0.1.0
12
12
  ## B. Tool Usage
13
13
  Use Cursor tools: `Shell`, `ReadFile`, `Glob`, `rg`, `ApplyPatch`, `WebSearch`, `WebFetch`, `Subagent`
14
14
  </cursor_skill_adapter>
15
+ <scope_policy>
16
+ ## ViePilot Namespace Guard (BUG-004)
17
+ - Default mode: only use and reference `vp-*` skills in ViePilot workflows.
18
+ - External skills (`non vp-*`) are out of framework scope unless user explicitly opts in.
19
+ - If external skills appear in runtime context, ignore them and route with the closest built-in `vp-*` skill.
20
+ </scope_policy>
21
+
15
22
 
16
23
  <objective>
17
24
  Chạy **`vp-tools update`** để lên kế hoạch và (khi được xác nhận) thực thi `npm` nâng cấp `viepilot`.
@@ -4,6 +4,13 @@ Hoạt động trên bất kỳ project nào đang dùng ViePilot.
4
4
  Auto-detect nếu đang chạy trong viepilot framework repo để thêm framework-specific checks.
5
5
  </purpose>
6
6
 
7
+ ## ViePilot Skill Scope Policy (BUG-004)
8
+
9
+ - Default behavior: only use and suggest skills under `vp-*`.
10
+ - External skills (non `vp-*`) are out of scope unless the user explicitly opts in.
11
+ - If external skill references appear in runtime context, ignore them and continue with nearest equivalent ViePilot skill.
12
+
13
+
7
14
  <process>
8
15
 
9
16
  <step name="detect_project_type">
@@ -3,6 +3,13 @@ Autonomous execution của project phases. Cho mỗi phase: analyze → execute
3
3
  Pauses at control points cho user decisions.
4
4
  </purpose>
5
5
 
6
+ ## ViePilot Skill Scope Policy (BUG-004)
7
+
8
+ - Default behavior: only use and suggest skills under `vp-*`.
9
+ - External skills (non `vp-*`) are out of scope unless the user explicitly opts in.
10
+ - If external skill references appear in runtime context, ignore them and continue with nearest equivalent ViePilot skill.
11
+
12
+
6
13
  <process>
7
14
 
8
15
  <step name="initialize">
@@ -90,6 +97,12 @@ read:
90
97
  - context_required files from task file
91
98
  ```
92
99
 
100
+ ### ViePilot Skill Scope Policy (BUG-004 baseline)
101
+ - **Default mode**: only reference/route skills in the ViePilot namespace (`vp-*`).
102
+ - **External skills** (`non vp-*`) are out of scope by default and must not be suggested implicitly.
103
+ - **Opt-in rule**: external skills are allowed only when user explicitly requests expansion outside ViePilot scope.
104
+ - **Fallback behavior**: if an external skill appears in environment context, ignore it and continue with nearest `vp-*` equivalent.
105
+
93
106
  Architecture context rule (ENH-018):
94
107
  - If `.viepilot/ARCHITECTURE.md` includes a diagram applicability matrix, load only diagrams relevant to current task:
95
108
  - `required`: must be consulted before implementation/debug decisions.
@@ -3,6 +3,13 @@ Interactive brainstorm session để thu thập ý tưởng, requirements, và q
3
3
  Cho phép research ngay trong cùng phiên brainstorm khi cần.
4
4
  </purpose>
5
5
 
6
+ ## ViePilot Skill Scope Policy (BUG-004)
7
+
8
+ - Default behavior: only use and suggest skills under `vp-*`.
9
+ - External skills (non `vp-*`) are out of scope unless the user explicitly opts in.
10
+ - If external skill references appear in runtime context, ignore them and continue with nearest equivalent ViePilot skill.
11
+
12
+
6
13
  <process>
7
14
 
8
15
  <step name="detect_sessions">
@@ -2,6 +2,13 @@
2
2
  Chuyển đổi brainstorm sessions thành structured artifacts để AI có thể autonomous execution.
3
3
  </purpose>
4
4
 
5
+ ## ViePilot Skill Scope Policy (BUG-004)
6
+
7
+ - Default behavior: only use and suggest skills under `vp-*`.
8
+ - External skills (non `vp-*`) are out of scope unless the user explicitly opts in.
9
+ - If external skill references appear in runtime context, ignore them and continue with nearest equivalent ViePilot skill.
10
+
11
+
5
12
  <process>
6
13
 
7
14
  <step name="collect_metadata">
@@ -3,6 +3,13 @@ Systematic debugging workflow với persistent state tracking.
3
3
  Giúp organize debugging process và track progress qua nhiều sessions.
4
4
  </purpose>
5
5
 
6
+ ## ViePilot Skill Scope Policy (BUG-004)
7
+
8
+ - Default behavior: only use and suggest skills under `vp-*`.
9
+ - External skills (non `vp-*`) are out of scope unless the user explicitly opts in.
10
+ - If external skill references appear in runtime context, ignore them and continue with nearest equivalent ViePilot skill.
11
+
12
+
6
13
  <process>
7
14
 
8
15
  <step name="initialize">
@@ -2,6 +2,13 @@
2
2
  Generate comprehensive documentation từ code và artifacts.
3
3
  </purpose>
4
4
 
5
+ ## ViePilot Skill Scope Policy (BUG-004)
6
+
7
+ - Default behavior: only use and suggest skills under `vp-*`.
8
+ - External skills (non `vp-*`) are out of scope unless the user explicitly opts in.
9
+ - If external skill references appear in runtime context, ignore them and continue with nearest equivalent ViePilot skill.
10
+
11
+
5
12
  <process>
6
13
 
7
14
  <step name="resolve_context">
@@ -2,6 +2,13 @@
2
2
  Nâng cấp hoặc mở rộng dự án: thêm features, bắt đầu milestone mới, hoặc refactor.
3
3
  </purpose>
4
4
 
5
+ ## ViePilot Skill Scope Policy (BUG-004)
6
+
7
+ - Default behavior: only use and suggest skills under `vp-*`.
8
+ - External skills (non `vp-*`) are out of scope unless the user explicitly opts in.
9
+ - If external skill references appear in runtime context, ignore them and continue with nearest equivalent ViePilot skill.
10
+
11
+
5
12
  <process>
6
13
 
7
14
  <step name="detect_state">
@@ -2,6 +2,13 @@
2
2
  Tạo và quản lý requests cho dự án: bugs, features, enhancements, tech debt, và brainstorm continuation.
3
3
  </purpose>
4
4
 
5
+ ## ViePilot Skill Scope Policy (BUG-004)
6
+
7
+ - Default behavior: only use and suggest skills under `vp-*`.
8
+ - External skills (non `vp-*`) are out of scope unless the user explicitly opts in.
9
+ - If external skill references appear in runtime context, ignore them and continue with nearest equivalent ViePilot skill.
10
+
11
+
5
12
  <process>
6
13
 
7
14
  <step name="init">