원클릭으로
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, 子账号.
Harnessed audio-artifact starter. Synthesizes a minimal WAV file under audio/ and relies on the workspace contract to deliver it.
Harnessed coding-assistant starter. Produces a unified-diff artifact and a file-list preview under patches/.
Minimal harnessed single-artifact starter. Use as a template for a custom app that produces one deliverable.
Harnessed report-generator starter. Writes a markdown artifact under reports/ and relies on the workspace contract to deliver it.
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, 语音识别, 语音合成, 模型管理.
Recursively crawl websites using headless Chrome. Triggers: crawl, scrape website, 爬取, crawl site, deep crawl, website content.
| 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.