manus-config

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

Updated Aug 28, 2026
One-click install
npx skills add https://github.com/AnderHonorato/Mem-rias-IA---Infinity --skill manus-config-anderhonorato
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: manus-config
Source: https://github.com/AnderHonorato/Mem-rias-IA---Infinity/tree/main/Manus/Skills/manus-config
Command: npx skills add https://github.com/AnderHonorato/Mem-rias-IA---Infinity --skill manus-config-anderhonorato

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing external integrations, project-level settings, and recurring task schedules in Manus requires careful handling of connector credentials, configuration state, and cron timing. This Skill provides the operational rules and CLI workflows to do all three safely without corrupting config state or leaking secrets. ## Core Features & Use Cases - Connector Management: Inspect, create, update, and delete App, Custom API, and Custom MCP connectors, with strict rules for handling user-provided secrets and review-card confirmation. - Project Configuration: Load and edit 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 intervals, with connector inheritance and run-as-new-task firing modes. - Use Case: A user provides an API key for a service with no existing connector. You verify no duplicate exists, draft a connector file grounded in the official API docs, submit it for user confirmation, then verify it with a health-check call. ## Quick Start Ask the agent to enable the connector for a specific service, or to create a recurring weekday schedule for the current task.

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 new MCP connector in Manus?

First run config load --search to confirm no existing connector covers the service. Then write a draft JSON file with the MCP server URL or stdio command and submit it with manus-config connector create --file. The connector is created only after the user confirms the review card.

How do I schedule a recurring task with cron in Manus?

Use manus-config schedule create with --cron and --repeated. Cron expressions require exactly six fields: seconds, minutes, hours, day-of-month, month, day-of-week. Each task supports only one schedule, so use update if one already exists.

Can I update a connector without exposing its API key?

Yes. Run connector get to retrieve the config, where secrets appear as __ENCRYPTED__. In your update patch, pass __ENCRYPTED__ to keep an existing secret or a new value to replace it. Never put secrets on the command line or in URLs.

Why does config save show an empty diff?

An empty diff means no edits were made or a later load overwrote them. The workflow must be load, edit config.json, then save. Running load mid-edit resets both the working file and baseline, discarding your changes.

What are the limitations of scheduled tasks in Manus?

Each task supports only one schedule, recurring intervals must be at least 300 seconds, and cron requires six fields. The delete operation is Coordinator-only; normal schedules are removed by disabling them or setting an expiration time.