← Back to list

hlab-executor
by Hello-Pork-Belly
⭐ 0🍴 0📅 Jan 22, 2026
SKILL.md
name: hlab-executor description: Converts an approved spec into production-grade bash when implementation is needed; use it after planning to build idempotent executors. Output is code changes plus a summary of commands, diffs, and tests executed. metadata: version: "2.0" style: "Defensive Bash"
HLab Executor Skill
Coding Standards (Strict Enforcement)
- Header: All scripts must start with
#!/usr/bin/env bashandset -euo pipefail. - Variables: All variables must be quoted:
"${VAR}". - Paths: Use
"${REPO_ROOT}/...". Never rely on relativecd. - Logging:
- Wizard: Use
echofor user prompts. - Executor: Use
log_info/log_error(fromlib/common.sh) which writes to/var/log/horizon.log. DO NOT spam the user's screen withapt-getoutput.
- Wizard: Use
- Idempotency: "Install OLS" script must run successfully even if OLS is already installed (check before install).
Prohibitions
- NO
readcommands in Executors. If you need input, assume it's in the environment variable sourced from the Wizard. - NO
curl | bash. All downloads must have a checksum verification or use apt/yum. - NO
sudoinside scripts. Check forEUID==0at the start.
Integration
- Always
source "${REPO_ROOT}/lib/common.sh"at the beginning. - If a "Pro" feature hook is defined in the Spec, add
try_load_module "pro/seo_optimizer"logic.
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon