@taskplex/cli
v0.1.0
Published
TaskPlex — adaptive development workflow with quality gates, multi-agent execution, and real-time progress tracking
Maintainers
Readme
TaskPlex
Adaptive development workflow with quality gates, multi-agent execution, and real-time progress tracking.
Part of codicis.dev — alongside memplex.
Standalone — no Claude Code required.
Installation
npx @taskplex/cliThat's it. Defaults to OpenCode, installs to ~/.config/opencode/.
Options
npx @taskplex/cli # OpenCode (default)
npx @taskplex/cli --claude # Claude Code (~/.claude/)
npx @taskplex/cli --local # Current project directory
npx @taskplex/cli --with-mcp # Include memplex MCP wrapper
npx @taskplex/cli --config-dir <dir> # Custom directory
npx @taskplex/cli --uninstall # Remove installed filesUsage
/tp add user authentication # full design, single-agent
/tp --light fix the login button # light design, quick fix
/tp --parallel refactor the API layer # full design, multi-agent
/tp --architect redesign the pipeline # full design + architect
/tp --prd Q3 feature roadmap # PRD modeOr start OpenCode with the TaskPlex agent:
opencode --agent taskplexWhat Gets Installed
~/.config/opencode/
├── taskplex/ # Core workflow files
│ ├── phases/ # init, planning, validation, bootstrap, prd
│ ├── manifest-schema.json # Manifest schema v2
│ ├── policy.json # Quality profiles, gates, limits
│ ├── gates.md # Gate catalog
│ ├── artifact-contract.md # Required artifacts
│ ├── hardening-checks.md # Hardening check registry
│ └── VERSION # Installed version
├── agents/
│ ├── core/ # Subagent definitions
│ │ ├── architect.md
│ │ ├── bootstrap.md
│ │ ├── compliance-agent.md
│ │ ├── implementation-agent.md
│ │ ├── reviewer.md
│ │ └── researcher.md
│ └── taskplex.md # Orchestrator agent
├── commands/
│ ├── tp.md # /tp slash command
│ └── taskplex.md # /taskplex alias
├── bin/ # (with --with-mcp)
│ └── cm-mcp-wrapper.* # Memplex MCP graceful fallback
└── taskplex-manifest.json # Install manifest (for upgrades)Memplex Integration
Install with MCP support:
npx @taskplex/cli --with-mcpSet the OPENCODE_CM_CLI environment variable to your memplex CLI path. The wrapper skips gracefully if unset.
Upgrading
npx @taskplex/cliUninstalling
npx @taskplex/cli --uninstall