Available Permissions
| Permission | Description | Use Case |
|---|---|---|
inference | Access LLM inference API | Generate text, chat |
storage | Read/write app-scoped data | Save user preferences |
clipboard_read | Read from system clipboard | Paste code/text |
clipboard_write | Write to system clipboard | Copy results |
embeddings | Generate text embeddings | Semantic analysis |
vector_store | Index and search documents | RAG, knowledge base |
network | Make HTTP requests | Future feature |
Requesting Permissions
Inmanifest.json:
Best Practices
- Request only what you need.
- Explain why each permission is needed.
- Handle denials gracefully.
- Test without permissions to verify fallback behavior.