用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Abd0r/porcupineai --skill auto-mode命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Write code that does not look like AI output. Reject low-evidence and low-signal TypeScript patterns (chained assertions, unknown/object widening, Reflect, runtime typeof, module mocks) in favor of typed, boundary-checked code.
Control a Home Assistant smart home through its MCP server. Query sensor and entity states read-only, then act on devices (lights, switches, climate) via call_service with explicit user approval. Use for "turn off the living room lights", "what is the thermostat set to", "set bedroom temp", or any Home Assistant entity/device task.
Produce clear, accessible diagrams and charts (architecture, flow, sequence, ER, state, org, Gantt, timeline) as Mermaid or polished self-contained SVG. Covers picking the right diagram type, a consistent visual system, and accessibility. Use whenever you need to explain a system, a flow, data, or a process in a README, doc, benchmark report, plan, or launch graphic.
基于 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.