soleri-intakelisted
Install: claude install-skill adrozdenko/soleri
# Intake — Ingest External Content
Import external content (URLs, books, text, batch files) into the vault with automatic knowledge extraction. The intake skill handles chunking, entity extraction, and vault persistence so you don't have to do it manually.
## When to Use
- User pastes a URL ("save this article to vault")
- User shares a book or long document ("ingest this book into your knowledge base")
- User wants to capture raw text from an external source
- Batch importing multiple sources at once
## Orchestration
### Step 1: Identify Content Type
Determine what the user is providing:
| Type | Use Op | When |
| ---------------- | -------------- | -------------------------------------- |
| URL | `ingest_url` | User pastes a web link |
| Book / long doc | `ingest_text` | Read the file, ingest content in parts |
| Raw text | `ingest_text` | User pastes text directly |
| Multiple sources | `ingest_batch` | List of text items with metadata |
### Step 2: Ingest
**URL:**
```
YOUR_AGENT_intake op:ingest_url
params: {
url: "<url>",
domain: "<inferred domain>",
tags: ["<tag1>", "<tag2>"]
}
```
**Book / Long Document:** read the file first, then ingest the content
(chapter by chapter for very long documents):
```
YOUR_AGENT_intake op:ingest_text
params: {
text: "<chapter or section content>",
title: "<document title — chapter name>"