General
How long until inbox items are attended to?
How long until inbox items are attended to?
Usually 10-60 seconds. The Curator watches for new inbox items and attends to them automatically. If things seem delayed, check that the Curator is running via your dashboard or
GET /api/v1/workers/status.Can I edit records Alfred created?
Can I edit records Alfred created?
Yes. You can create, edit, move, and delete records via the API. Use
PATCH /api/v1/vault/records/{path} to edit a record’s metadata or content, or POST /api/v1/vault/records/{path}/move to rename or retype it. See the Vault API Reference for details.What happens if I delete a record?
What happens if I delete a record?
The record is permanently removed from your vault. Any connections from other records that pointed to the deleted record will become broken links. The Janitor will flag these during its next scan and can repair them automatically.
How do I see what Alfred did?
How do I see what Alfred did?
Check specialist history via the API:
- Janitor history:
GET /api/v1/workers/janitor/history - Distiller history:
GET /api/v1/workers/distiller/history
What models does Alfred use?
What models does Alfred use?
Alfred uses state-of-the-art language models optimized for knowledge extraction. You can choose which model each specialist uses from your dashboard’s Services page — including models from Anthropic, OpenAI, Google, xAI, and others via OpenRouter.
Intuition
What is Alfred's intuition?
What is Alfred's intuition?
Intuition is Alfred’s learning system. As you route inputs and make organizational decisions, Alfred observes the patterns. Over time, those observations are refined into instincts — learned routing patterns that let Alfred handle routine decisions on your behalf. See the Intuition guide for the full picture.
How long until Alfred starts routing things on its own?
How long until Alfred starts routing things on its own?
Alfred needs at least 3 observations of the same pattern before creating an instinct, and new instincts start with high discretion thresholds. In practice, expect Alfred to begin handling its first routine decisions within 1-2 weeks of regular use. The more you route through Alfred, the faster it learns.
Can I turn off intuition?
Can I turn off intuition?
Yes. Disable it with
POST /api/v1/learning/disable or from your dashboard. Disabling pauses all learning processes but preserves your existing observations and instincts. Re-enable at any time to pick up where you left off.What if Alfred routes something incorrectly?
What if Alfred routes something incorrectly?
Route it correctly yourself — this creates a new observation that will be factored into the next nightly reflection. Alfred adjusts its instincts based on new evidence. If an instinct becomes consistently wrong, reflection will deprecate it automatically.
Troubleshooting
Why isn't my inbox being attended to?
Why isn't my inbox being attended to?
- Check the Curator status — Go to your dashboard Command Center or call
GET /api/v1/workers/status - Restart the Curator — Try
POST /api/v1/workers/restart - Manual run — Trigger a manual run with
POST /api/v1/workers/process
GET /api/v1/admin/health.How many API keys can I create?
How many API keys can I create?
Up to 10 per account. You can manage your keys in Settings > API Keys in your dashboard. Revoke keys you no longer need to free up slots.
Is my data backed up?
Is my data backed up?
Yes. Your Alfred runs daily automatic encrypted backups. You don’t need to manage backups yourself.
Can I use Obsidian to view my vault?
Can I use Obsidian to view my vault?
Yes. Your vault is fully Obsidian-compatible. Pair your device to access it directly. See the Device Pairing guide for instructions on connecting Obsidian to your Alfred.
My vault has broken links or structural issues
My vault has broken links or structural issues
Have the Janitor take a look:
- Scan for issues:
POST /api/v1/workers/janitor/scan - Repair what it finds:
POST /api/v1/workers/janitor/fix
How do I surface deeper knowledge from existing records?
How do I surface deeper knowledge from existing records?
Ask the Distiller:
- Scan for extractable knowledge:
POST /api/v1/workers/distiller/scan - Run extraction:
POST /api/v1/workers/distiller/run
Getting help
If you can’t find the answer here, check:- API Reference — Full endpoint documentation
- Your Specialists guide — Specialist troubleshooting
- Intuition guide — How Alfred learns your preferences
- Monitoring guide — Health and diagnostics
