engage-exocortex

Explores parallel solution paths for algorithmic and architectural problems using schema-validated signal matching.

Updated Mar 30, 2026
One-click install
npx skills add https://github.com/rubrical-works/idpf-praxis-skills --skill engage-exocortex-rubrical-works
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: engage-exocortex
Source: https://github.com/rubrical-works/idpf-praxis-skills/tree/main/Skills/engage-exocortex
Command: npx skills add https://github.com/rubrical-works/idpf-praxis-skills --skill engage-exocortex-rubrical-works

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires ajv, and includes scripts (resource) and references (resource) components.

What problem does it solve? Complex coding and architecture problems often have multiple plausible approaches with non-obvious trade-offs, and a single-pass answer can miss a better approach. This Skill fans out into N independent solution paths explored in parallel by subagents, then synthesizes a scored recommendation. ## Core Features & Use Cases - Deterministic Signal Matching: Matches problem keywords against a JSON catalog of paradigms, structures, and strategies via Node.js scripts, with an inline fallback when Node is unavailable. - Parallel Subagent Exploration: Spawns 2-4 subagents with slot-filled briefs, enforces anti-overlap via complexity-class and invariant diversity, and validates reports against a JSON schema. - Execution-Backed Scoring: Runs candidate implementations against a shared test set for algorithmic problems, and applies operational scoring plus hybridization checks for architecture problems. - Use Case: Given a sliding-window maximum problem, the Skill selects three genuinely distinct paths (monotonic deque, lazy-deletion heap, block prefix/suffix), executes each against edge and stress cases, and recommends the O(n) deque approach with execution evidence. ## Quick Start Ask the AI to explore and compare multiple solution approaches for your algorithm or system design problem using the engage-exocortex skill.

Frequently Asked Questions about engage-exocortex

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

FAQPage Schema
How do I explore multiple solutions to an algorithm problem in parallel?▼

Invoke the skill with your problem statement; it extracts signal keywords, matches them against paradigm and structure catalogs, then spawns 2-4 subagents in parallel. Each subagent reasons through one approach and returns a structured JSON report for synthesis.

What happens when no algorithm paradigm matches my problem?▼

The skill switches to adaptive mode: it identifies 2-4 fundamental design tensions in the problem, defines paths as distinct tension resolutions, and verifies anti-overlap before dispatching subagents. You are notified that adaptive mode is active.

Does engage-exocortex require Node.js to run?▼

Node.js 18+ enables the primary deterministic path with schema-validated scripts. Without Node, the skill falls back to inline matching performed by the AI, which produces equivalent output at roughly 20-100x higher token cost and without input validation.

Can the skill actually run and test candidate implementations?▼

Yes, for algorithmic problems the execution phase is on by default: subagents return runnable code, and each candidate runs against a shared test set of edge and baseline cases. Pass --no-execution to skip, or it auto-skips for architecture problems.

When should I not use parallel solution exploration?▼

Skip it for simple problems with one obvious approach, since fan-out adds token cost without benefit. It is designed for problems where trade-offs between time, space, or architectural qualities are genuinely unclear.