소스 정보
- 저장소
- 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명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| 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.