소스 정보
- 저장소
- PayPerQ/ppq-private-mode-proxy
- 최근 소스 활동
- 2026년 8월 25일 20:04
- 감지된 SKILL.md 언어
- 영어
- 스타
- 6
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/PayPerQ/ppq-private-mode-proxy --skill ppq-private-mode명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | ppq-private-mode |
| description | Configure PPQ.AI Private Mode encrypted models in OpenClaw |
| user-invocable | true |
This skill installs and configures OpenClaw to use PPQ.AI's end-to-end encrypted models.
Run this command to install the PPQ Private Mode plugin:
openclaw plugins install ppq-private-mode
Check that the plugin exists:
ls ~/.openclaw/extensions/ppq-private-mode/
If the directory does not exist, the install may have failed. Try running the install command again.
First, check if the user already has a PPQ API key configured. Read ~/.openclaw/openclaw.json and look for an existing key in any of these locations:
plugins.entries.ppq-private-mode.config.apiKeybaseUrl pointing to api.ppq.aiIf a valid key is found (starts with sk-), reuse it -- no need to ask the user. Let them know you found their existing key.
If no key is found, ask the user for their PPQ.AI API key. They can find it at https://ppq.ai/api-docs -- it starts with sk-.
Do not proceed until you have a key.
IMPORTANT: You must add BOTH sections below to ~/.openclaw/openclaw.json. Do not skip either one. Merge them into the existing config, preserving all existing settings.
Here is the complete config to merge (replace USER_API_KEY with the actual key):
{
"models": {
"providers": {
"ppq-private": {
"baseUrl": "http://127.0.0.1:8787/v1",
"apiKey": "unused",
"api": "openai-completions",
"models": [
{ "id": "private/kimi-k3", "name": "private/kimi-k3" },
{ "id": "private/gpt-oss-120b", "name": "private/gpt-oss-120b" },
{ "id": "private/llama3-3-70b", "name": "private/llama3-3-70b" },
{
After merging, verify that ~/.openclaw/openclaw.json contains BOTH:
ppq-private entry under models.providers with the 6 private models listedppq-private-mode entry under plugins.entries with the user's API keyIf either is missing, the private models will not work.
systemctl --user restart openclaw-gateway.service
Tell the user PPQ Private Mode is configured. Available encrypted models:
private/kimi-k3 -- Moonshot flagship multimodal MoE, reasoning, strong coding, 256K contextprivate/gpt-oss-120b -- Cost-efficient general useprivate/llama3-3-70b -- Open-source tasksprivate/glm-5-2 -- Agentic engineering with long-horizon tool use, 384K contextprivate/gemma4-31b -- Vision plus text with thinking mode, 262K contextprivate/deepseek-v4-flash -- Fast, cost-efficient reasoning and coding, 1M contextSwitch with: openclaw models set private/kimi-k3
systemctl --user restart openclaw-gateway.serviceppq-private provider is missing from models.providers in openclaw.json. Add it using the config block above."port": 8788 to the plugin config in openclaw.jsonPPQ.AI provides pay-per-query AI with no subscriptions. Private models run inside hardware secure enclaves. Learn more at https://ppq.ai