소스 정보
- 저장소
- Abd0r/porcupineai
- 최근 소스 활동
- 2026년 8월 6일 14:20
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Abd0r/porcupineai --skill customization-recovery명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
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.
| name | customization-recovery |
| description | Recover safely from broken Porcupine customizations. |
| stack | meta |
Use this playbook when Porcupine stops starting, behaves incorrectly, or breaks after a settings, extension, skill, prompt, theme, project-resource, model, or source customization. It identifies the failing layer, preserves the user's work, and verifies a minimal repair. It does not delete customizations, reset credentials, or reinstall software without explicit user approval.
/reload..disabled; do not delete.Use bash to run:
porcupine --no-extensions --no-skills --no-prompt-templates --no-themes --no-context-files --no-session
For a suspicious project, add --no-approve. This matters because project trust does not prevent AGENTS.md and CLAUDE.md from loading; --no-context-files does.
Keep built-in tools enabled. Do not use --no-tools unless a built-in tool itself is known to be the failure.
Compare the original launch to recovery variants:
--no-extensions: extension or package extension.--no-skills --no-prompt-templates: skill frontmatter/body or prompt resource.--no-themes: custom theme.--no-context-files --no-approve: project settings, resource directories, or context instructions.--provider <provider> --model <model>: saved provider/model selection.--no-session: corrupt or problematic session.Do not infer the layer from timing alone. A flag must make a reproducible difference.
Settings are at ~/.porcupine/agent/settings.json globally and .porcupine/settings.json per project. Use bash to create a private timestamped backup directory, then copy only the affected settings/resource file. Do not include auth or credential files.
Validate a settings file before editing it:
python3 -m json.tool <settings-file> >/dev/null
.disabled, then re-enable resources one by one.--provider / --model override first, then update saved settings if the user wants it.git status --short, git diff --check, run the focused test, and preserve the diff. Never run a destructive git command without approval.Run the original command. For source edits, run npm run build and focused tests. Report:
| Purpose | Command/flag |
|---|---|
| Disable discovered extensions | --no-extensions / -ne |
| Disable discovered skills | --no-skills / -ns |
| Disable prompt templates | --no-prompt-templates / -np |
| Disable themes | --no-themes |
| Disable AGENTS/CLAUDE context | --no-context-files / -nc |
| Ignore project-local resources | --no-approve / -na |
| Isolate session state | --no-session |
| Override saved model | --provider <name> --model <id> |
A repair is complete only if normal startup succeeds without recovery flags, the affected resource is either working or explicitly quarantined, and no credential or unrelated customization changed.
docs/customization-recovery.md in the Porcupine checkout.docs/extensions.md.docs/security.md and docs/settings.md.