c

cortex-plugin-goal-decomposer

ESM
v1.0.0MIT

Official CortexPrism plugin

0.00CortexPrism
agent-strategyaicortex-plugindevelopmentesmreasoning

Install Command

$ cortex plugin install marketplace:cortexprism.io/plugins/cortex-plugin-goal-decomposer
Website RepositoryLicense: MITEntry: mod.ts

Configuration

Plugin Type
ESM
Entry Point
mod.ts
License
MIT

Capabilities

tools

Tags

agent-strategyaicortex-plugindevelopmentesmreasoning

Statistics

Downloads
0
Rating
0.0
/ 5.0
Version
v1.0.0
Published
June 15, 2026

Reviews (0)

No reviews yet. Be the first to rate this plugin!

README

Goal Decomposition Engine

Breaks complex goals into dependency-ordered subtasks.

Installation

cortex plugin install marketplace:cortex-plugin-goal-decomposer
cortex plugin install github:CortexPrism/cortex-plugin-goal-decomposer
cortex plugin install ./manifest.json

Quick Start

cortex tools list
cortex chat --plugin cortex-plugin-goal-decomposer

Tools

decompose_goal

Break a complex goal into dependency-ordered subtasks.

Parameters:

  • goal (string, required) — The complex goal to decompose
  • context (string, optional) — Additional context
  • max_subtasks (number, optional) — Maximum subtasks (default: 8)

assign_subtasks

Assign subtasks to agents/roles.

Parameters:

  • subtasks (string, required) — JSON array of subtask objects
  • agents (string, optional) — JSON array of available agents

track_progress

Track completion of subtasks.

Parameters:

  • goal_id (string, required) — The goal identifier
  • subtask_id (string, optional) — Specific subtask to update
  • status (string, optional) — Status: pending, in_progress, completed, blocked

goal_status

Get status of a decomposed goal.

Parameters:

  • goal_id (string, required) — The goal identifier

replan

Replan remaining subtasks if something changes.

Parameters:

  • goal_id (string, required) — The goal identifier
  • change_description (string, required) — Description of what changed

Configuration

{
  "plugins": {
    "cortex-plugin-goal-decomposer": {
      "enabled": true,
      "config": {
        "maxSubtasks": 8,
        "autoAssign": true
      }
    }
  }
}

Development

deno task test
deno fmt
deno lint
deno task validate

License

MIT — See LICENSE file

Published June 15, 2026 · Updated June 15, 2026