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 skills/mendixlabs/mxcli/migrate-oracle-formsnpx skills add mendixlabs/mxcli --skill migrate-oracle-formsgit 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.00047 | $0.03370 |
| Opus 5 | $0.00023 | $0.01685 |
| Sonnet 5 | $0.00009 | $0.00674 |
| Haiku 4.5 | $0.00005 | $0.00337 |
Grade A, and why
migrate-oracle-forms 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 2d ago.
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 — 411 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Oracle Forms to Mendix Migration Skill
This skill provides comprehensive guidance for migrating Oracle Forms applications to Mendix using MDL (Mendix Definition Language).
When to Use This Skill
Use this skill when:
- Converting Oracle Forms (.fmb) applications to Mendix
- Translating PL/SQL logic to Mendix microflows
- Mapping Oracle Forms UI elements to Mendix widgets
- Planning a migration strategy for legacy Oracle Forms systems
Migration Overview
Oracle Forms migration to Mendix involves:
- Data Model: Oracle tables → Mendix entities
- Business Logic: PL/SQL triggers/procedures → Mendix microflows
- User Interface: Forms blocks/items → Mendix pages/widgets
- Navigation: Form canvases → Mendix page navigation
Reserved Word Conflicts
Most common words (check, text, format, value, type, index, status, select, etc.) now work unquoted as attribute names in MDL. Only structural keywords (create, delete, begin, end, return, entity, module) need quoting.
Naming Best Practices
While most words are no longer reserved, using descriptive names is still recommended for clarity:
| Oracle Forms Field | Recommended Mendix Name | Notes |
|---|---|---|
check |
check or CheckStatus |
Works unquoted |
text |
text or TextContent |
Works unquoted |
format |
format or FormatType |
Works unquoted |
value |
value or FieldValue |
Works unquoted |
Name |
Name or ItemName |
Works unquoted (not a keyword) |
type |
type or ItemType |
Works unquoted |
create |
"create" or CreatedBy |
Requires quoting (structural keyword) |
delete |
"delete" or IsDeleted |
Requires quoting (structural keyword) |
Example
create persistent entity MyModule.FormField (
check: boolean default false, -- Works unquoted
text: string(500), -- Works unquoted
format: string(50), -- Works unquoted
CheckFlag: boolean default false, -- Renamed alternative (also fine)
TextContent: string(500), -- Renamed
FormatType: string(50) -- Renamed
);
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.
- 2d ago First seen · 411 lines · 47 tokens per session scan A e6c081e0b10b
migrate-oracle-forms is a skill published in the GitHub repository mendixlabs/mxcli (115 stars, last pushed 2d ago), licensed Apache-2.0. It adds 47 tokens to every session and 3,370 once invoked, about $0.0002 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 skills, from other repositories
openai-whisper
Local speech-to-text with the Whisper CLI (no API key).
find-simplifications
Use for a periodic repo-wide sweep of qwen-code for accumulated excess surface — dead components and files, orphaned locale keys, exports nothing consumes, added-then-removed scaffolding — filing candidates on a tracking issue and landing only what a maintainer has said yes to. Repo-wide and evidence-first; every…
localization-design
Design for multiple languages, writing directions, and cultural contexts — text expansion, RTL mirroring, and locale formats. Use when shipping beyond one locale. For the words themselves, use ux-writing (designer-toolkit).
native-app-profiling
Profile native macOS/iOS apps using Time Profiler via CLI (xctrace). Use when asked to identify performance hotspots, profile CPU usage, or diagnose slow code paths without opening Instruments.
product-ui-taste
Anti-slop skill for PRODUCT UI - dashboards, data tables, forms, multi-step flows, settings, list/detail, app shells. The agent reads the surface, budgets the frame first, and ships dense interfaces that are correct at every edge case (overflow, long labels, empty/error/loading states, i18n expansion, keyboard/a11y).…
adapter
Creates or modifies infrastructure adapters in src/infrastructure/adapters/ and their corresponding port interfaces in src/domain/ports/. Use when adding a new I/O boundary (file system, HTTP, git, npm, OS), changing how an existing adapter translates errors, or wiring a new adapter into createDeps. Do NOT use for…