manus-config

Manage connectors, project configuration, and scheduled tasks via the manus-config CLI.

1|Updated Jul 17, 2026
One-click install
npx skills add https://github.com/waiyanphyo999/telegram-bot-deploy --skill manus-config-waiyanphyo999
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: manus-config
Source: https://github.com/waiyanphyo999/telegram-bot-deploy/tree/main/skills/manus-config
Command: npx skills add https://github.com/waiyanphyo999/telegram-bot-deploy --skill manus-config-waiyanphyo999

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing external integrations, project-level settings, and recurring task schedules requires precise CLI operations with strict state handling; mistakes like stale baselines or malformed cron expressions cause silent failures and incorrect diffs. ## Core Features & Use Cases - Connector Management: Inspect, enable, disable, and reconfigure App, Custom API, and Custom MCP connectors through a load-edit-save workflow against config.json. - Project Configuration: Maintain project instructions, shared project files, and shared web links that persist across all tasks in a project. - Scheduled Tasks: Create, update, pause, and expire one schedule per task using six-field cron expressions or interval-based triggers, with connector inheritance and run-as-new-task modes. - Use Case: A user wants a weekday 09:00 market summary. The skill guides creating a recurring schedule with the correct six-field cron 0 0 9 * * 1-5, inheriting the current task's connectors automatically. ## Quick Start Ask the assistant to create a recurring schedule that runs every weekday at 9 AM using manus-config, or to inspect which connectors are currently enabled.

Frequently Asked Questions about manus-config

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a recurring scheduled task with manus-config?

Use `manus-config schedule create` with `--title`, `--detail`, and either `--cron` or `--interval`, plus `--repeated` for recurrence. Cron requires six fields like `0 0 9 * * 1-5` for weekdays at 09:00, and recurring intervals must be at least 300 seconds.

How do I enable a connector or integration with manus-config?

Run `manus-config config load --search <service-name>` to find the connector, edit `~/.manus/config/config.json` to enable it, then run `manus-config config save`. Always load before editing so the baseline diff is correct.

Why does manus-config config save show an empty or wrong diff?

The diff is computed against a baseline snapshot refreshed only by `config load`. If you edited without loading first, or ran load again mid-edit, the baseline is stale or your edits were overwritten. Always load, edit, then save in that order.

Why does my cron schedule fire at the wrong time?

manus-config cron uses six fields (seconds minutes hours day-of-month month day-of-week), not the common five-field format. A five-field expression shifts every value and fires off-schedule; rewrite it with a leading seconds field.

What happens when schedule create is rejected as a duplicate?

Each task supports only one schedule, so a duplicate create is rejected. Inspect the existing schedule with `manus-config schedule status`, then use `schedule update` to modify, pause, or reschedule it instead.

When should I use --run-as-new-task for a schedule?

Use it only when the user explicitly asks for fresh, isolated, or clean execution at each firing. It requires a self-contained `--playbook`; otherwise the default re-triggers the current task and preserves prior context.