smithery/x-school-academy

background-process-clear-process

To remove a finished background process from the manager list, clear a stopped process after it exits so it no longer appears in listings.

Installation

$ npx skills add smithery/x-school-academy --skill background-process-clear-process

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/x-school-academy · top by installs.

npx skills add smithery/x-school-academy

Browse all from smithery/x-school-academy

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,002 B
  • docs SUMMARY.md 178 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Usage

Use the MCP tool dev-swarm.request to send the payload as a JSON string:

{"server_id":"backgroundProcess","tool_name":"clear_process","arguments":{}}

Tool Description

Clears a stopped background process from the list.

Arguments Schema

The schema below describes the arguments object in the request payload.

{
  "type": "object",
  "properties": {
    "processId": {
      "type": "string",
      "format": "uuid"
    }
  },
  "required": [
    "processId"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Background Tasks

If the tool returns a task id, poll the task status via the MCP request tool:

{"server_id":"backgroundProcess","method":"tasks/status","params":{"task_id":"<task_id>"}}