Module orchestrator — routes to create, explore
Scanned 6/5/2026
Install via CLI
openskills install event4u-app/agent-config---
model_tier: medium
name: module
pack: engineering-base
tier: 2
description: Module orchestrator — routes to create, explore
cluster: module
type: orchestrator
suggestion:
eligible: true
trigger_description: "create a new module, explore an existing module"
trigger_context: "user wants to scaffold or load a module's docs and structure"
workspaces:
- agent-config-maintainer
packs:
- meta
---
# /module
Top-level orchestrator for the `/module` family. Replaces 2 standalone
commands with a single entry point + sub-command dispatch.
## Sub-commands
| Sub-command | Routes to | Purpose |
|---|---|---|
| `/module create` | `commands/module/create.md` | Create a new module from `.module-template` |
| `/module explore` | `commands/module/explore.md` | Load a module's structure, docs, and context into the conversation |
Sub-command names match the locked contract in
[`docs/contracts/command-clusters.md`](../../docs/contracts/command-clusters.md).
## Dispatch
1. Parse the user's argument: `/module <sub-command> [args]`.
2. Look up the sub-command in the table above.
3. Load the body of the routed file and follow its `## Instructions` section
verbatim with the remaining args.
4. If the sub-command is unknown or missing, print the table above and ask:
> 1. create — scaffold a new module from the template
> 2. explore — load a module's docs and structure
## Rules
- **Do NOT commit, push, or open a PR** unless the sub-command explicitly
authorizes it.
- **Do NOT chain sub-commands.** One `/module <sub>` per turn.
- If the user invokes `/module` with no argument, **show the menu** — do
not guess which sub-command they meant.
No comments yet. Be the first to comment!