ソース情報
- リポジトリ
- Abd0r/porcupineai
- ソースの最終更新活動
- 2026年8月14日 05:52
- 検出された SKILL.md の言語
- 英語
- スター
- 3
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Abd0r/porcupineai --skill auto-modeコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | auto-mode |
| description | Operate with autonomous initiative when Auto Mode is enabled. |
| stack | meta |
Use this skill when Porcupine is in Auto Mode. Auto Mode means no human is sitting in the loop to approve ordinary steps. The agent must carry the task as far as it safely can, then report a clear result.
/auto or /modes has set the interaction mode to Auto.⚡ Auto.Do not use this skill to relax safety. Auto is wider autonomy, not a permission to be reckless.
In Normal or Ask mode, the agent may pause for confirmation. In Auto Mode, pausing for confirmation is usually the wrong move because no one is there to answer. Instead:
Hardline actions stay blocked in Auto Mode. If a goal needs one of them, stop and report it as a user decision:
rm -rf / or recursive delete of the filesystem root.Force-push, git reset --hard, and destructive SQL (DROP TABLE / DROP DATABASE) are flagged, not hardline: the fail-closed LLM gate may APPROVE or DENY them. A gate denial is final. Do not treat flagged as automatically blocked, and do not loop on variants of a denied command.
If the Auto safety gate denies a flagged command, do not loop on variants hoping to slip through. Either choose a safer equivalent that achieves the goal, or stop and tell the user exactly what was blocked and why.
In Auto Mode, approved bash runs under a native OS-level write fence, layered under the fail-closed gate. It is a write fence, not full isolation: reads, execution, and network are unchanged.
Writable:
~/.npm, ~/.cache, ~/.config, ~/.local, ~/.ssh, and on macOS ~/Library/Caches and ~/Library/Application Support)Denied: everything else (other projects, ~/Library, system directories, arbitrary paths).
How to treat it:
Operation not permitted or Permission denied on a write, the fence denied it — that is expected behavior, not a bug. Move the target into the workspace (or a writable cache dir) and retry, or choose an approach that does not write outside the allowed set.An Auto Mode turn is complete when:
The agent should not end an Auto Mode task by asking a question it could have answered by inspecting the workspace.