export

export is a command for Claude Code from maxime-tremblay/APEXLang-Project-Template. It costs 14 tokens per session (339 once invoked), scanned A, original, MIT.

A command that exports Oracle APEX applications into APEXLang files, a text format for storing an app's definition in a project folder.

In plain words
What is it for?
Use it to export the default APEX application or several applications by ID into separate folders, then review the created files in Git.
Why use it?
It removes the need to export applications manually through SQLcl commands. It also checks for uncommitted file changes before replacing existing exports.

Command for Claude Code

Install

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.

agentmods
npx agentmods add commands/maxime-tremblay/apexlang-project-template/export
Clone the repo
git clone --depth 1 https://github.com/maxime-tremblay/APEXLang-Project-Template

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for export

README.md
[![agentmods](https://agentmods.dev/badge/commands/maxime-tremblay/apexlang-project-template/export.svg)](https://agentmods.dev/commands/maxime-tremblay/apexlang-project-template/export)
Your own site
<a href="https://agentmods.dev/commands/maxime-tremblay/apexlang-project-template/export"><img src="https://agentmods.dev/badge/commands/maxime-tremblay/apexlang-project-template/export.svg" alt="Measured on agentmods" height="20"></a>
Per session 14 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 339 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5 $0.00014 $0.00339
Opus 5 $0.00007 $0.00169
Sonnet 5 $0.00003 $0.00068
Haiku 4.5 $0.00001 $0.00034

Measured 5d ago against content hash e9ae31ec23d9, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

export 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 5d 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.

.claude/commands/export.md · 32 lines

What it actually says

Export one or more APEX applications to APEXLang format.

Usage:

  • /export — exports the default app ($APEX_APP_ID) to apex/app{id}/
  • /export 101 — exports app 101 to apex/app101/
  • /export 100 101 102 — exports each app to its own apex/app{id}/ subfolder

Steps:

  1. Resolve the list of app IDs:
    • If $ARGUMENTS is provided, treat it as a space-separated list of app IDs
    • Otherwise, use $APEX_APP_ID as the single app ID
  2. For each app ID, check whether apex/app{id}/ contains uncommitted changes. If so, flag it and ask the developer to confirm before overwriting.
  3. Open a SQLcl session and connect using the saved connection:
    sql /nolog
    connect -name "$SQLCL_CONNECTION"
    
  4. For each app ID, run the export:
    apex export -applicationid {id} -exptype APEXLANG -dir ./apex/app{id}
    
  5. Confirm each export completed successfully
  6. List the top-level files and folders created (per app) so the developer can see what changed
  7. Remind the developer to review the diff in Git before making any changes

Note: exporting overwrites existing files in apex/app{id}/. Always check for uncommitted changes first (step 2).

Changes

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.

  1. 5d ago First seen · 32 lines · 14 tokens per session scan A e9ae31ec23d9

Subscribe to this mod's changes

export is a command published in the GitHub repository maxime-tremblay/APEXLang-Project-Template (2 stars, last pushed 3mo ago), licensed MIT. It adds 14 tokens to every session and 339 once invoked, about $0.0001 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-31.