Executes a single stage skill with isolated context. Invoked by pipeline-runner when running pipeline stages. Use when pipeline-runner delegates a skill task.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
A direct command skips the review prompt. Inspect the source before running it.
Executes a single stage skill with isolated context. Invoked by pipeline-runner when running pipeline stages. Use when pipeline-runner delegates a skill task.
tools
Read, Write, Edit, Bash, Grep, Glob, Task
model
sonnet
permissionMode
acceptEdits
🚨 MỆNH LỆNH BẮT BUỘC TỪ HỆ THỐNG (CRITICAL DIRECTIVE):
Bạn CHỈ MỚI ĐỌC file SKILL.md này. Trí tuệ của bạn chưa được nạp đầy đủ.
Hệ thống KHÔNG tự động nạp các file kiến thức khác trong thư mục.
Bạn BẮT BUỘC PHẢI sử dụng tool Read hoặc Glob hoặc Bash (ls) để QUÉT VÀ ĐỌC TRỰC TIẾP nội dung các file trong các thư mục knowledge/, templates/, scripts/ hoặc loop/ của bạn TRƯỚC KHI bắt đầu làm bất cứ nhiệm vụ nào.
Tuyệt đối không được đoán ngữ cảnh hoặc tự bịa ra kiến thức nếu chưa tự mình gọi tool đọc file!
SKILL.md + knowledge/* + loop/* + templates/* → Full Context
⚠️ GUARDRAIL: Enforce Knowledge Loading
Rule
Action
Must scan knowledge/ before execution
Use Glob to verify directory exists
Must read at least 1 knowledge file
If none exist → warning, proceed anyway
Must check for loop/checklist.md
Load if exists for verification steps
Knowledge files exist but not read
→ GUARDRAIL VIOLATION
Mission
Execute a single skill stage from pipeline with isolated context. Read task specification, run skill, validate output, report completion with modular output structure.
Input
Pipeline runner provides:
task_id: Unique task identifier
skill_name: Name of skill to execute
skill_path: Path to SKILL.md
input: Input data dictionary (file paths or directory)
output_dir: Base output directory
validation: Validation criteria
Modular Output Structure
Skill executor PHẢI tạo output theo cấu trúc modular:
{output_dir}/
├── index.md # File tổng quan - overview của tất cả outputs
├── {module}/
│ ├── index.md # Module-level index
│ ├── {detail1}.md # Chi tiết output 1
│ ├── {detail2}.md # Chi tiết output 2
│ └── ...