Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:75
forks:20
updated:May 6, 2026 at 12:49
File Explorer
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | Complete Task |
| description | Mark a task as complete with a summary of the work done. |
| version | 1.1.0 |
| category | task-management |
| skillType | claude-skill |
| assignableRoles | ["developer","qa","tpm","designer","frontend-developer","backend-developer","fullstack-dev","qa-engineer","product-manager","architect","generalist","sales","support"] |
| triggers | ["complete task","finish task","mark done","task done"] |
| tags | ["task","completion","status"] |
| execution | {"type":"script","script":{"file":"execute.sh","interpreter":"bash","timeoutMs":15000}} |
Mark a task as complete with a summary of the work done. If the task has an output schema, provide structured output that will be validated against the schema. Optionally skip quality gates if they have already been verified separately.
| Parameter | Required | Description |
|---|---|---|
absoluteTaskPath | Yes | Absolute filesystem path to the task file |
sessionName | Yes | Your agent session name |
summary | Yes | Summary of the work completed |
output | No | Structured output object (required if task has an output schema) |
skipGates | No | Set to true to skip quality gate checks |
bash config/skills/agent/complete-task/execute.sh '{"absoluteTaskPath":"/projects/app/tasks/implement-login.md","sessionName":"dev-1","summary":"Implemented login form with validation and tests"}'
bash config/skills/agent/complete-task/execute.sh '{"absoluteTaskPath":"/projects/app/tasks/implement-login.md","sessionName":"dev-1","summary":"Implemented login","output":{"summary":"Login form with validation","filesChanged":["src/login.tsx","src/login.test.tsx"],"testsAdded":2}}'
If the task markdown contains an ## Output Schema section with a JSON Schema definition, your output object must validate against that schema. If validation fails, the response will include the errors and you can retry (up to 2 retries). After max retries, the task will be moved to blocked/.
Before calling this skill, verify:
JSON confirmation of task completion status. If validation fails:
{
"success": false,
"validationFailed": true,
"errors": ["error details"],
"retryCount": 1,
"maxRetries": 2,
"message": "Output validation failed. 1 retries remaining."
}