FAQ
Use this page for quick answers. If something is actively broken, start with Troubleshooting, Diagnostics, and Gateway Troubleshooting.First 60 Seconds If Something’s Broken
Run this first:- Agent > Models for model/provider issues.
- Agent > Channels for chat routes.
- Agent > Services for external APIs.
- Agent > Skills and Agent > Tools for runtime capability issues.
- Agent > Memory for memory/QMD/session-memory state.
- Agent > Tasks for saved task definitions and runs.
- Wallets, Mining, or Fased Network for crypto/operator state.
I’m Stuck - What’s The Fastest Way To Get Unstuck?
- Run
fased status --all. - Open Logs and filter for the failing subsystem.
- Check the focused owner page instead of raw config.
- Run
fased doctor. - If it is a channel issue, run
fased channels status --probe.
Install And First Run
What’s the recommended way to install and set up Fased?
Use Getting Started. The normal path is:- Install.
- Run onboarding.
- Open the Control UI.
- Configure a model provider.
- Send a first chat.
- Add channels, skills, tasks, wallets, mining, or Fased Network only when you need them.
What does onboarding do?
Onboarding creates the local runtime baseline: state directory, config, workspace, Gateway, dashboard access, and optional initial wallet/mining setup. It does not fully configure every model, channel, skill, task, service, wallet, or network role. Those belong in the Control UI after the base runtime works. See Onboarding Overview and Control UI Setup.How do I open the dashboard?
Use:How long does install and onboarding take?
Local install is usually minutes. Real channel, provider, wallet, node, or remote setup can take longer because each external service has its own account, token, permission, and network requirements.Installer stuck? How do I get more feedback?
Run:Models And Providers
Do I need a model subscription or API key?
You need at least one usable model path. That can be an API key, OAuth profile, subscription-backed CLI path where supported, or a local model endpoint. Configure it in Agent > Models. Use Models and Model Providers for details.What model do you recommend?
Use the strongest reliable model available for the Agent’s job. Tool-enabled Agents that read untrusted content should use stronger instruction-following models and tighter tool policy. Smaller/local models can be useful, but reduce tool authority and sandbox aggressively.How do I switch models?
Use Agent > Models or chat model commands where enabled. Avoid editing raw config unless the UI does not expose the option you need.Why do I see “All models failed”?
Usually one of these:- no credential for the selected provider/profile;
- model ref is not allowed by the provider config;
- provider quota/account issue;
- network/API failure;
- fallback model also lacks credentials.
Channels And Replies
Fased does not reply. What should I check?
Run:- sender not paired or allowlisted;
- group requires a mention;
- channel token/account is not ready;
- selected Agent route is wrong;
- Gateway auth/URL mismatch.
Do groups and DMs share context?
Groups are isolated by channel/group/thread. DMs default to the main Agent session for continuity, but multi-user setups should use:Tasks And Automation
Can Fased run tasks on a schedule?
Yes. Tasks are saved definitions owned by an Agent/session. Runs are history. Use Agent > Tasks or:Tasks or reminders do not fire. What should I check?
Check:- Agent > Tasks shows the saved Task.
- The Task is not paused.
- Gateway/worker is running.
- Model/skill/service preflight passes.
- Delivery target still exists.
- Logs show no stale lease or queue error.
How do I stop a running task?
Use Agent > Tasks run controls,/task cancel-run <run-id>, or:
Wallets, Mining, And Fased Network
Which docs should I read?
- Wallet page
- Wallet roles and policies
- Mining page
- Mining troubleshooting
- Fased Network
- Bond operator
How should I split wallets?
Use separate roles where possible:- Agent wallet for normal Agent wallet actions.
- Mining wallet for SAT mining.
- Vault/bond wallet for bond/operator inventory.
What do I need before SAT mining?
You need:- a configured mining wallet;
- signer reachable;
- RPC reachable;
- SOL wallet balance for fees;
- funded miner capital;
- readiness checks passing.
Why can a submitted commit be lower than my target?
The runtime caps actual commit by usable miner capital, locked/pending capital, fee reserve, erosion coverage, and recovery buffer. A lower submit can be correct when capital is clearing or fee headroom changes.Does Fased Network require a bond?
Some public/operator flows may use bond state as an eligibility or trust signal. The Wallet, Agent, and local runtime do not require a bond for normal use.Memory, Files, And Backup
Where does Fased store its data?
Default state lives under~/.fased.
Common paths:
~/.fased/fased.json~/.fased/credentials/~/.fased/agents/<agentId>/sessions/~/.fased/workspace~/.fased/extensions/~/.fased/sandboxes/
What’s the recommended backup strategy?
Back up the Agent workspace privately. Keep~/.fased/credentials,
auth profiles, secrets, and sessions out of public repos. If you migrate to a
new machine, copy state deliberately and verify paths with fased status.
See Migration Guide.
Does memory persist forever?
Workspace memory files persist until changed or deleted. Session transcripts and session metadata are controlled by session maintenance settings. See Memory and Session Management.Config And Environment
Env Vars And .env Loading
See Environment Variables.How does Fased load environment variables?
Precedence is:- process environment;
.envin current working directory;~/.fased/.env;- config
envblock; - optional login-shell import.
What format is config?
~/.fased/fased.json uses JSON5. Prefer the Control UI for normal setup. Use
raw config when a field has no focused UI yet.
Do I have to restart after changing config?
Some fields hot-apply; others require restart. If behavior looks stale, restart the Gateway and re-runfased status.