← Back to list

autofix-permission
by hyz0906
⭐ 0🍴 0📅 Jan 19, 2026
SKILL.md
name: autofix-permission description: Fixes script permission errors by making files executable.
Permission Skill
Fixes build errors where scripts cannot be executed due to missing permissions.
Detection Patterns
Permission deniedEACCES: permission deniedcannot executenot executable
Strategy
- Identify Script: Extract the script path from the error.
- Make Executable: Add execute permission to the file.
Instructions
Step 1: Parse the Error
From: bash: ./configure: Permission denied
Script: ./configure
Step 2: Apply Fix
chmod +x ./configure
Or for multiple scripts:
chmod +x scripts/*.sh
Step 3: For Version Control
If using git, also update the file mode:
git update-index --chmod=+x ./configure
Common Scripts Needing Permissions
configureautogen.shbuild.sh*.py(if run directly)- Scripts in
scripts/directories
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