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/fusengine/agents/apex-methodologynpx skills add fusengine/agents --skill apex-methodologygit clone --depth 1 https://github.com/fusengine/agentsWhat 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.00042 | $0.01525 |
| Opus 5 | $0.00021 | $0.00763 |
| Sonnet 5 | $0.00008 | $0.00305 |
| Haiku 4.5 | $0.00004 | $0.00153 |
Grade A, and why
apex-methodology 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 — 147 lines — stays where its author put it; the contents beside it link to each section on GitHub.
It enforces the project's hard constraints throughout: files under 100 lines (split at 90), interfaces kept out of component files, SOLID principles, and a mandatory sniper pass after every Edit/Write (blocked by PostToolUse hooks until it runs). Three modes control how much is automatic: --auto (default, no prompts), --manual (step-by-step confirmation), and --skip-elicit (bypasses the self-review phase).
Current Task: $ARGUMENTS
APEX Methodology Skill
Analyze → Plan → Execute → eLicit → eXamine
Complete development workflow for features, fixes, and refactoring.
Step 0: Initialize Tracking (MANDATORY FIRST ACTION)
BEFORE anything else, initialize APEX tracking — see references/init-tracking.md for the exact command.
This creates .claude/apex/task.json (documentation consultation status) and .claude/apex/docs/ (consulted documentation summaries). The PreToolUse hooks will BLOCK Write/Edit until documentation is consulted.
Workflow Overview
┌─────────────────────────────────────────────────────────────────┐
│ APEX WORKFLOW │
├─────────────────────────────────────────────────────────────────┤
│ 00-init-branch → Create feature branch │
│ 00.5-brainstorm → Design-first questioning (B) ← NEW │
│ 01-analyze-code → Understand codebase (A) │
│ 02-features-plan → Plan implementation (P) │
│ 03-execution → Write code with TDD (E) ← UPDATED │
│ 03.5-elicit → Expert self-review (L) │
│ 03.7-verification → Functional resolution check (V) ← NEW │
│ 04-validation → Verify quality (X) │
│ 05-review → Self-review │
│ 06-fix-issue → Handle issues │
│ 07-add-test → Write tests (TDD cycle) │
│ 08-check-test → Run tests │
│ 09-create-pr → Create Pull Request │
└─────────────────────────────────────────────────────────────────┘
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/00-init-branch.md 2.6 KB
- references/01-analyze-code.md 3.1 KB
- references/02-features-plan.md 4.1 KB
- references/03-execution.md 4.0 KB
- references/03.5-elicit.md 5.5 KB
- references/04-validation.md 6.0 KB
- references/05-review.md 4.2 KB
- references/06-fix-issue.md 5.1 KB
- references/07-add-test.md 4.6 KB
- references/08-check-test.md 4.6 KB
- references/09-create-pr.md 6.4 KB
- references/branching-strategy.md 681 B
- references/commit-conventions.md 482 B
- references/design/00-init-branch.md 1.0 KB
- references/design/01-analyze-design.md 2.4 KB
- references/design/02-search-inspiration.md 2.1 KB
- references/design/03-plan-component.md 2.3 KB
- references/design/04-code-component.md 2.7 KB
- references/design/05-add-motion.md 2.5 KB
- references/design/06-validate-a11y.md 2.9 KB
- references/design/07-review-design.md 2.7 KB
- references/design/08-sniper-check.md 2.2 KB
- references/design/09-create-pr.md 2.8 KB
- references/flow-diagram.md 2.7 KB
- references/init-tracking.md 2.3 KB
- references/language-detection.md 2.0 KB
- references/laravel/00-init-branch.md 3.0 KB
- references/laravel/01-analyze-code.md 4.0 KB
- references/laravel/02-features-plan.md 4.6 KB
- references/laravel/03-execution.md 6.9 KB
- references/laravel/03.5-elicit.md 3.8 KB
- references/laravel/04-validation.md 5.7 KB
- references/laravel/05-review.md 5.0 KB
- references/laravel/06-fix-issue.md 5.2 KB
- references/laravel/07-add-test.md 7.4 KB
- references/laravel/08-check-test.md 5.1 KB
- references/laravel/09-create-pr.md 5.7 KB
- references/nextjs/00-init-branch.md 2.8 KB
- references/nextjs/01-analyze-code.md 4.3 KB
- references/nextjs/02-features-plan.md 4.7 KB
- references/nextjs/03-execution.md 5.3 KB
- references/nextjs/03.5-elicit.md 3.7 KB
- references/nextjs/04-validation.md 6.0 KB
- references/nextjs/05-review.md 5.5 KB
- references/nextjs/06-fix-issue.md 5.4 KB
- references/nextjs/07-add-test.md 6.6 KB
- references/nextjs/08-check-test.md 4.1 KB
- references/nextjs/09-create-pr.md 6.1 KB
- references/phases-explained.md 1.4 KB
- references/pr-guidelines.md 576 B
- references/quick-start-flows.md 1.5 KB
- references/react/00-init-branch.md 2.4 KB
- references/react/01-analyze-code.md 3.2 KB
- references/react/02-features-plan.md 3.3 KB
- references/react/03-execution.md 4.2 KB
- references/react/03.5-elicit.md 3.6 KB
- references/react/04-validation.md 4.6 KB
- references/react/05-review.md 3.9 KB
- references/react/06-fix-issue.md 4.6 KB
- references/react/07-add-test.md 4.8 KB
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 · 147 lines · 42 tokens per session scan A 47e0c3cef6e9
apex-methodology is a skill published in the GitHub repository fusengine/agents (25 stars, last pushed 29d ago), licensed MIT. It adds 42 tokens to every session and 1,525 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
biopython
Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use…
clinical-decision-support
Prepare and validate research-only clinical decision-support evaluation, evidence-profile, cohort, survival, biomarker/model, privacy, and governance artifacts. Use for aggregate or synthetic research documentation and traceability—not patient care or live clinical operation.
experimental-design
Design experiments and studies BEFORE data is collected — choosing a design, randomizing, blocking, and laying out treatment combinations so results are interpretable. Use whenever someone is planning a study, asks how to assign subjects/samples to groups, mentions randomization, blocking, stratification, controls…
exploratory-data-analysis
Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…
geomaster
Comprehensive geospatial science skill covering remote sensing, GIS, spatial analysis, machine learning for earth observation, and 30+ scientific domains. Supports satellite imagery processing (Sentinel, Landsat, MODIS, SAR, hyperspectral), vector and raster data operations, spatial statistics, point cloud processing…
arboreto
Infer gene regulatory networks (GRNs) from gene expression data using scalable algorithms (GRNBoost2, GENIE3). Use when analyzing transcriptomics data (bulk RNA-seq, single-cell RNA-seq) to identify transcription factor-target gene relationships and regulatory interactions. Supports distributed computation for…