一键导入
resolving-scope-boundaries
Use when validating IDD scenarios - load .scope file, establish hard analysis boundary, index all in-scope source files
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when validating IDD scenarios - load .scope file, establish hard analysis boundary, index all in-scope source files
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | resolving-scope-boundaries |
| description | Use when validating IDD scenarios - load .scope file, establish hard analysis boundary, index all in-scope source files |
Load the .scope file, read every listed source file, and establish a hard boundary for all subsequent analysis. Files not in scope do not exist for this validation run.
Read every path listed in the === SCOPE FILES === section provided in the prompt.
For each path:
.py, .ts, .tsx, .js, .jsx files (skip .spec.*, .test.*, .map){
"path": "relative/path/to/file.py",
"language": "python | typescript | javascript",
"line_count": 234,
"functions": ["function_name"],
"classes": ["ClassName"],
"imports": ["module.path"],
"status": "loaded | unresolvable"
}
Output this declaration before proceeding:
Scope boundary established.
Loaded: [N] files
• path/to/file.py (234 lines)
• ...
Unresolvable: [M] files
• path/not/found.py
Hard Boundary Rules:
✓ Only files above are analyzed
✓ Imports to unresolvable files are not followed
✓ No prior-session knowledge used
✓ No codebase knowledge beyond loaded files
Indexed scope boundary. All subsequent skills operate ONLY within this boundary.
Coaching Agent — validate and execute @regression scenarios for the Baseline Assessment (baseline-assessment.feature) and the Module-Based Training Journey (training-flow.feature) against the app. Logs in first, runs only @regression scenarios (ignoring @smoke/@sanity/@wip/untagged), captures evidence, and generates a regression report. Trigger with /coaching-agent.
Generate complete BDD/Gherkin test cases for the coaching platform from a scenario description or file.
Mandatory SDLC workflow for new features, bug fixes, refactors, architecture changes, API changes, database changes, UI changes, tests, and deployment-related work. Use before implementation.
Use when producing final IDD validation output - create markdown table with scenario findings, assign PASS/PARTIAL/FAIL verdict, follow schema exactly
Use when IDD scenario is not COVERED - trace code line-by-line to find what the code ACTUALLY does, not what it should do
Use when validating IDD scenarios - map each scenario's steps to specific implementation locations in scope-bounded source files