From conexus
Use when synthesising across prose and code corpora or ranking candidates by a criterion — tries the analyze plan library first (search prose + code → reference-chain traversal → rank → generate), falls through to /conexus:query if nothing matches
How this skill is triggered — by the user, by Claude, or both
Slash command
/conexus:analyzeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Tier-aware discipline** — apply at session start and before every major step:
Tier-aware discipline — apply at session start and before every major step:
mcp__plugin_conexus_nexus__nx_answer(...) for verb-shape questions; mcp__plugin_conexus_nexus__search(...) for keyword lookup.mcp__plugin_conexus_nexus__memory_search(query="<topic>", project="<repo>").mcp__plugin_conexus_nexus__scratch(action="search", query="<topic>").mcp__plugin_conexus_nexus__plan_search(query="<task>", limit=3).mcp__plugin_conexus_nexus__scratch(action="put", ..., tags="<topic>") for sibling agents downstream THIS session (T1, narrowest scope, cheapest write).mcp__plugin_conexus_nexus__memory_put(...) for project-scoped decisions, future sessions same project (T2).mcp__plugin_conexus_nexus__store_put(...) for permanent cross-project knowledge, future sessions everywhere (T3).mcp__plugin_conexus_nexus__plan_save(...) for multi-agent pipeline outcomes (so future callers hit plan-match).You MUST call nx_answer for cross-corpus synthesis or ranking. Direct
search returns unstructured chunks; analytical questions need the
search → extract → rank → generate composition that the analyze plans
provide. This is the one verb where bundling gives the biggest wins:
a 3-op chain collapses from ~45s of per-step spawns to ~15s in a single
claude -p call.
mcp__plugin_conexus_nexus__nx_answer(
question=<caller's phrasing>,
dimensions={"verb": "analyze"},
context=<area, criterion, limit — as JSON string if needed>,
)
One tool call. nx_answer handles match → run → record, including the
operator-bundle optimization. Plan-miss falls through to an inline
claude -p planner.
area — the subject area being analysed.criterion — the axis used to rank candidates (e.g. "recency",
"citation count", "coverage breadth").limit — per-corpus result cap (default_bindings → 12).search is fineIf the question is a single-corpus lookup — e.g. "find the chunks that
mention algorithm X" — use mcp__plugin_conexus_nexus__search. Analyze
earns its latency cost when the question requires multi-corpus
alignment, ranking by a semantic criterion, or structured extraction
before synthesis.
search directly for a cross-corpus synthesis question.
You get top-K chunks with no composition, no cross-corpus alignment,
no ranking. If the question requires ranking or comparing across
multiple collections, you need nx_answer's full DAG.plan_match directly instead of nx_answer. You lose
the record step, the inline-planner fallback, and use_count telemetry.analyze when research would suffice. research is
single-concept; analyze implies cross-corpus / cross-approach
synthesis. If the caller only wants to understand one thing, use
/conexus:research.criterion. "important" is not a criterion; pick
an axis the ranker can actually sort by.See /conexus:plan-first and docs/plan-authoring-guide.md.
npx claudepluginhub hellblazer/nexus --plugin conexusGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.