with one click
account-manager
// Manage sub-accounts under the current profile. Triggers: create account, 创建账号, sub account, manage account, list accounts, 子账号.
// Manage sub-accounts under the current profile. Triggers: create account, 创建账号, sub account, manage account, list accounts, 子账号.
Recursively crawl websites using headless Chrome. Triggers: crawl, scrape website, 爬取, crawl site, deep crawl, website content.
OminiX ASR (speech-to-text), preset-voice TTS with emotion/speed control, and model management via Qwen3 models on Apple Silicon. For voice cloning and custom voice profiles, use mofa-fm. Triggers: voice, transcribe audio, text to speech, speak this, read aloud, model management, download model, 语音识别, 语音合成, 模型管理.
Deep multi-round web research with parallel fetching. Triggers: deep search, research, 深度搜索, 调研, investigate, deep research.
Validates and optimizes run_pipeline DOT graphs with model selection from QoS catalog
Send emails via SMTP or Feishu/Lark Mail. Triggers: send email, 发邮件, email to, 发送邮件, mail, send mail.
Get current weather for any city worldwide. Triggers: weather, forecast, temperature, 天气, 气温, how cold, how hot, is it raining, wind.
| name | account-manager |
| description | Manage sub-accounts under the current profile. Triggers: create account, 创建账号, sub account, manage account, list accounts, 子账号. |
This skill provides the manage_account tool for managing sub-accounts under the current profile. Sub-accounts share the parent profile's LLM provider configuration and API keys (same billing) but have their own data directory, memory, sessions, skills, and messaging channels.
Use this tool when the user asks to:
{ "action": "list" }
{
"action": "create",
"name": "work bot",
"system_prompt": "You are a professional work assistant.",
"telegram_token": "123456:ABC-DEF...",
"enable": true
}
Only name is required. Other fields are optional.
Incrementally update config — only provide the fields you want to change:
{
"action": "update",
"sub_account_id": "parent-id--work-bot",
"telegram_token": "123456:ABC-DEF...",
"telegram_senders": "5460262597,123456789",
"system_prompt": "You are a coding assistant."
}
Supported fields: telegram_token, telegram_senders, whatsapp (bool), feishu_app_id, feishu_app_secret, system_prompt, enabled (bool), sandbox (bool), sandbox_mode ("auto"/"macos"/"docker"/"bwrap"), sandbox_network (bool).
{
"action": "update",
"sub_account_id": "parent-id--work-bot",
"sandbox": true,
"sandbox_mode": "auto",
"sandbox_network": true
}
{ "action": "start", "sub_account_id": "parent-id--work-bot" }
{ "action": "stop", "sub_account_id": "parent-id--work-bot" }
{ "action": "restart", "sub_account_id": "parent-id--work-bot" }
{
"action": "delete",
"sub_account_id": "parent-id--work-bot"
}
{
"action": "info",
"sub_account_id": "parent-id--work-bot"
}
This tool reads OCTOS_HOME and OCTOS_PROFILE_ID from the environment (set automatically by the gateway). No manual configuration is needed.