Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Do297

ASecurity

Use when scoping an IMA platform, planning module acceptance, or laying out development assurance steps for an integrated modular avionics system. Plan the integrated modular avionics (IMA) platform architecture in the spirit of DO-297: identify the IMA modules, application partitions, and shared resources, allocate applications to partitions with CPU, memory, and I/O budgets, and check the allocation for resource contention against integrity and availability requirements. Produce the module ...

2 stars
0 votes
0 copies
0 views
Added 9/27/2026
ai-agentspythontesting

Works with

claude code

Security Analysis

A100/100

Scanned 9/27/2026

Install to Claude Code

$npx -y skills add ashfordeOU/aero-agent-skills --skill do297 --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Do297?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Do297
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-do297/badge)](https://www.skillsdirectory.com/skills/ashfordeou-do297)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: do297
description: "Use when scoping an IMA platform, planning module acceptance, or laying out development assurance steps for an integrated modular avionics system. Plan the integrated modular avionics (IMA) platform architecture in the spirit of DO-297: identify the IMA modules, application partitions, and shared resources, allocate applications to partitions with CPU, memory, and I/O budgets, and check the allocation for resource contention against integrity and availability requirements. Produce the module and application allocation plan, the resource budget table, and the module acceptance criteria that support incremental certification of the platform. Trigger: integrated modular avionics, IMA architecture, module acceptance, incremental certification, partition allocation, resource budget."
license: Apache-2.0
compliance: STANDARDS-REF
standards:
  - id: do-178c
    reference-only: true
  - id: do-254
    reference-only: true
gated: false
domain: avionics
pack: avionics
compatibility: "agentskills.io SKILL.md; any SKILL.md host (Claude Code, Hermes, OpenClaw)"
metadata:
  domain: avionics
  subdomain: ima
  tags: [integrated-modular-avionics, do297, module-acceptance, incremental-certification, partition-allocation, resource-budget, cpu-memory-io, integrity-requirements, ima-architecture, shared-resources]
  version: 0.1.0
  author: Aero Agent Skills
---

# DO-297 IMA Architecture and Acceptance (avionics/ima/do297)

Use when the task is integrated modular avionics (IMA) architecture and
acceptance planning for civil avionics in the spirit of DO-297: identify
the platform modules, partitions, and shared resources, allocate
applications to partitions with CPU, memory, and I/O budgets, check for
resource contention, map integrity and availability requirements, and lay
out module acceptance and incremental certification evidence. The module
is data-driven: you supply the module resources and the application list
with integrity and availability requirements, and the functions allocate
applications to partitions, compute partition and module budgets, flag
over-subscription, and generate deterministic acceptance criteria.

This leaf covers the IMA integration and acceptance process. It is
different from avionics/ima/ima-partitioning, which sizes the ARINC 653
partition schedule, major frame, and inter-partition communication ports.

## Domain quick reference

- DO-297 (proprietary RTCA guidance; name and paraphrase only here)
  describes the IMA development and integration approach: a platform of
  modules hosts multiple applications in isolated partitions, acceptance
  evidence is gathered at module and application level, and incremental
  certification lets an accepted module or application be reused with
  reduced re-verification.
- Platform elements: modules (line replaceable units that host
  partitions), applications (functions hosted inside partitions), and
  shared resources (CPU time, memory, I/O ports, buses, power).
- Allocation rule: each application runs in exactly one partition, one or
  more partitions share a module, and every partition budget must fit
  inside the module resources in every dimension.
- Contention: when the summed demand of the hosted applications exceeds a
  module budget dimension (CPU, memory, or I/O), the platform is
  over-subscribed and the offending application must be flagged.
- Integrity levels: derived from failure-condition severity
  (catastrophic maps to level A, hazardous to B, major to C, minor to D,
  no effect to E), consistent with the DO-178C software level approach
  (referenced only; see standards-map.yaml).
- Availability classes: class 1 functions must remain available on
  demand, class 2 permits loss of function with a warning, class 3
  permits loss of function without a warning.
- Module acceptance: evidence that the module hosts its allocated
  applications within resource budgets and preserves failure containment
  between partitions. Incremental certification records the accepted
  module configuration so later applications reuse it with limited
  re-acceptance.

## IMA architecture model

- Module: name, cpu_units, memory_bytes, io_ports.
- Application: name, integrity (A-E), availability (1-3), cpu_units,
  memory_bytes, io_ports.
- Partition: hosts one or more applications; the partition budget is the
  sum of the demands of the applications it hosts.
- Module totals: sum of the demands of every partition on the module.
- Acceptance criteria: deterministic statements covering platform
  definition, module acceptance testing, resource usage verification,
  failure containment, availability demonstration, and incremental
  certification credit.

## Workflow

1. Identify the platform: list the modules with their CPU, memory, and
   I/O budgets.
2. Identify the applications with their integrity and availability
   requirements; map failure-condition severity to integrity level.
3. Allocate applications to partitions (one partition per application by
   default, or group applications into shared partitions).
4. Compute the partition budgets and the module totals; check every
   dimension against the module budget.
5. Run the contention check: any dimension over budget flags the
   over-budget application for re-allocation or module upgrade.
6. Generate the module acceptance criteria for the incremental
   certification record.
7. Lay out the development assurance steps per integrity level.

## Worked example

A module has 100 CPU units, 1,000,000 bytes of memory, and 16 I/O ports.
Three applications are hosted:

- FMS: integrity A, availability class 1, 40 CPU, 400,000 bytes, 6 ports.
- ADIRU: integrity B, availability class 1, 30 CPU, 300,000 bytes, 4 ports.
- Display: integrity C, availability class 2, 20 CPU, 200,000 bytes, 3 ports.

Module totals: 40 + 30 + 20 = 90 CPU, 900,000 bytes, 13 ports. Every
dimension fits with slack 10 CPU, 100,000 bytes, 3 ports, so the
allocation is accepted with no contention. If FMS grows to 60 CPU units
the total becomes 110 CPU against a budget of 100, the contention check
flags FMS as the over-budget application, and the module must either drop
the growth or move an application to another module.

## Pitfalls

- Checking applications against the module budget one at a time: the
  contention check sums the demand of every hosted application per
  dimension - FMS at 40 CPU fits alone, but with ADIRU and Display the
  module total is 90, and FMS growing to 60 pushes the total to 110
  against the 100 CPU budget, flagging FMS as the over-budget
  application.
- Verifying only one resource dimension: the module budget must hold
  in CPU, memory, and I/O ports at once - an allocation that fits 90
  of 100 CPU units can still bust the 16-port I/O budget, so every
  dimension needs its own total-versus-budget check.
- Double-counting partition demand: the module total is the sum of the
  partition budgets, and each partition budget is the sum of the
  applications it hosts - an application grouped into a shared
  partition must not also be counted at the module level on its own.
- Confusing integrity with availability: integrity levels A-E come
  from failure-condition severity (catastrophic to A, hazardous to B,
  major to C), while availability classes 1-3 say whether loss of
  function is permitted and whether it warns - a class 1 display is
  not automatically level A, and a level D function can still demand
  class 1 availability.
- Treating module acceptance as a one-time certificate: incremental
  certification records the accepted module configuration so later
  applications reuse it with limited re-acceptance - a changed module
  (an application moving in or a budget growing) changes the accepted
  configuration and re-opens the acceptance evidence.
- Routing software-lifecycle questions here: DO-297 is the platform
  integration and acceptance frame (name and paraphrase only - the
  text is proprietary RTCA guidance); per-application software
  assurance belongs to the DO-178C leaves and partition scheduling to
  avionics/ima/ima-partitioning.

## Behavior contract (gate 3)

Run the deterministic contract test (stdlib unittest, offline):

    python3 scripts/test_do297.py

Attribution

ashfordeOUashfordeOU
View sourceMore from ashfordeOU →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

694821 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →