manus-config

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

Updated Jun 3, 2025
One-click install
npx skills add https://github.com/avladova/lms-analytics --skill manus-config-avladova
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: manus-config
Source: https://github.com/avladova/lms-analytics
Command: npx skills add https://github.com/avladova/lms-analytics --skill manus-config-avladova

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It gives the agent a controlled, review-card-confirmed way to enable integrations, edit project-level configuration, and schedule recurring task execution without manual UI navigation. ## Core Features & Use Cases - Connector management: Inspect, enable, create, update, and delete App, Custom API, and Custom MCP connectors with a strict load-edit-save workflow and secret-handling rules. - Project configuration: Edit project instructions, shared project files, and shared web links that persist across all tasks in a project. - Scheduled tasks: Create, update, pause, or expire one schedule per task using six-field cron expressions or second-based intervals, with connector inheritance and run-as-new-task modes. - Use Case: A user provides an MCP server URL and API key; the skill drafts a connector, submits it for user confirmation, verifies it with a real tool call, and then schedules a daily recurring task that uses it. ## Quick Start Ask the agent to enable the connector for a specific service and create a weekday 09:00 recurring schedule that summarizes new data from it.

Frequently Asked Questions about manus-config

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

FAQPage Schema
How do I enable a connector with manus-config?

Run manus-config config load --search <service> to refresh the snapshot, edit ~/.manus/config/config.json to enable the connector, then run manus-config config save. Always load before editing so the save diff is computed against a fresh baseline.

How do I create a custom MCP connector from a server URL?

Write a draft JSON file with the server URL (and headers for key-authenticated servers), then run manus-config connector create --file. Secret values must come from the user, go only in the draft file, and nothing is created until the user confirms the review card.

What cron format does manus-config schedule use?

It uses six fields: seconds minutes hours day-of-month month day-of-week, with 0 for Sunday. For example, weekdays at 09:00 is "0 0 9 * * 1-5". Five-field cron expressions cause off-schedule firing.

Why does config save show an empty diff?

An empty diff means no edits were made or a later load overwrote them. Re-edit config.json and save without running load again mid-edit, since load resets both the working file and the baseline.

Can I delete multiple connectors at once?

Yes, pass all UIDs to a single manus-config connector delete invocation so they appear on one review card. Splitting deletes across commands creates separate cards, each blocking a turn on user confirmation.

Why is connector creation not working in my session?

Connector CRUD requires the Manus web app because mutations need a human review card. Coordinator, map-reduce, and auto-confirm sessions cannot render it, so open the task in a browser and retry.