Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/mendixlabs/mxcli/exploregit clone --depth 1 https://github.com/mendixlabs/mxcliWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00009 | $0.00821 |
| Opus 5 | $0.00005 | $0.00411 |
| Sonnet 5 | $0.00002 | $0.00164 |
| Haiku 4.5 | $0.00001 | $0.00082 |
Grade A, and why
explore scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 136 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Explore Project
Explore and understand the Mendix project structure.
Start Here: Project Structure Overview
All element names in the output are fully qualified (Module.Element). In VS Code terminals, these are clickable links — click any element name to open its MDL description.
-- Get a compact overview of the entire project (best first command)
SHOW STRUCTURE;
-- Module-level summary with element counts
SHOW STRUCTURE DEPTH 1;
-- Elements with signatures (default) — entities, microflows, pages, etc.
SHOW STRUCTURE DEPTH 2;
-- Full types and parameter names
SHOW STRUCTURE DEPTH 3;
-- Focus on a single module
SHOW STRUCTURE IN ModuleName;
-- Include system/marketplace modules
SHOW STRUCTURE DEPTH 1 ALL;
CLI equivalent:
mxcli structure -p app.mpr # depth 2 (default)
mxcli structure -p app.mpr -d 1 # counts only
mxcli structure -p app.mpr -d 3 # full types
mxcli structure -p app.mpr -m ModuleName # single module
mxcli structure -p app.mpr -d 1 --all # include system modules
Quick Commands
-- List all modules
SHOW MODULES;
-- List entities in a module
SHOW ENTITIES IN ModuleName;
-- Show entity definition
DESCRIBE ENTITY Module.EntityName;
-- List microflows
SHOW MICROFLOWS IN ModuleName;
-- Show microflow logic
DESCRIBE MICROFLOW Module.MicroflowName;
-- List pages
SHOW PAGES IN ModuleName;
-- List workflows
SHOW WORKFLOWS IN ModuleName;
-- Show workflow definition
DESCRIBE WORKFLOW Module.WorkflowName;
Catalog Queries
For more flexible searching, use catalog queries:
REFRESH CATALOG;
-- Find entities by name pattern
SELECT QualifiedName, AttributeCount
FROM CATALOG.ENTITIES
WHERE Name LIKE '%Customer%';
-- Find large microflows
SELECT QualifiedName, ActivityCount
FROM CATALOG.MICROFLOWS
WHERE ActivityCount > 10
ORDER BY ActivityCount DESC;
Code Search Commands
For deeper code navigation (requires REFRESH CATALOG FULL). Like structure output, qualified names in the results are clickable in VS Code terminals.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 136 lines · 9 tokens per session scan A caa43ec36587
explore is a command published in the GitHub repository mendixlabs/mxcli (115 stars, last pushed 2d ago), licensed Apache-2.0. It adds 9 tokens to every session and 821 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
MIGRATE_DESIGN
Design doc for the migration tool PR. Author: Sol ([email protected]). Co-authored-by: wakesync.
plan
Create a structured task-by-task implementation plan for a feature and write it to docs/superpowers/plans/.
toh-help
Display all Toh Framework commands and quick usage guide.
specsmd-construction-agent
Command "specsmd-construction-agent" from fabriqaai/specs.md, covering activate construction agent, activation, parameters, critical first steps and your skills.
fire
FIRE orchestrator - Fast Intent-Run Engineering main entry point.
issue-resolve
Drive an assessed gflow-cli issue (verdict CONFIRMED-BUG or LIKELY-BUG, with localized verifiable scope) to a fix: isolated worktree off develop, test-first fix, /gflow:check, then a DRAFT PR for human review. Mutating and gated — runs inside a strict action envelope (never merges, never spends credits, never marks a…