Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
Warranty Claim Agent - Aviation Invoice Automation Skill Warranty Claim Agent - Aviation Invoice Automation Skill Purpose Automate warranty claim submission for aviation maintenance invoices by extracting data from PDF invoices and filling warranty portal forms automatically. Primary target: Collins Aerospace (Rockwell Collins) warranty portal, but designed to be adaptable to other vendors (Honeywell, Pratt & Whitney, etc.). Project Goal Build an agent that reduces warrant
git clone https://github.com/agentic-aviation/Warranty-Engineer-Agent.gitOverall rank
#30
Adoption
No public adoption signal
Trust
Unknown
Freshness
Apr 15, 2026
Freshness
Last checked Apr 15, 2026
Best For
Warranty-Engineer-Agent is best for general automation workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Warranty Claim Agent - Aviation Invoice Automation Skill Warranty Claim Agent - Aviation Invoice Automation Skill Purpose Automate warranty claim submission for aviation maintenance invoices by extracting data from PDF invoices and filling warranty portal forms automatically. Primary target: Collins Aerospace (Rockwell Collins) warranty portal, but designed to be adaptable to other vendors (Honeywell, Pratt & Whitney, etc.). Project Goal Build an agent that reduces warrant Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Apr 15, 2026
Vendor
Agentic Aviation
Artifacts
0
Benchmarks
0
Last release
Unpublished
Install & run
git clone https://github.com/agentic-aviation/Warranty-Engineer-Agent.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Agentic Aviation
Protocol compatibility
MCP
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
0
Examples
3
Snippets
0
Languages
typescript
Parameters
text
warranty-engineer-agent/
├── SKILL.md # This file (project spec + status + observations)
├── WARRANTY_CLAIM_AGENT_SKILL.md # Original project spec (backup)
├── README.md # Project documentation
├── DEMO_SCRIPT.md # LinkedIn video recording script (6-act structure)
├── requirements.txt # Python dependencies
├── invoices/
│ └── sample_invoice_001.pdf # Generated (3 pages, professional layout)
├── extracted_data/
│ ├── sample_invoice_001_data.json # Parsed and verified
│ └── rockwell_field_map.json # Auto-discovered DDM field map from live portal
├── screenshots/ # Demo screenshots (11 screenshots per run)
├── config/
│ └── field_mappings.json # Invoice -> portal field mappings
└── scripts/
├── generate_invoice_pdf.py # Phase 1: ReportLab PDF generator
├── invoice_parser.py # Phase 2: pdfplumber + regex parser
├── portal_navigator.py # Phase 3: Selenium browser automation
├── form_filler.py # Phase 4: Configurable form filler
├── main.py # Phase 5: Main orchestrator (--parse-only works)
├── demo_portal.html # Local demo portal (Collins-style warranty form)
├── demo_run.py # Demo script for local portal
├── demo_collins_portal.py # Old Collins portal demo (deprecated)
└── demo_rockwell_live.py # LIVE Rockwell Collins portal demo (WORKING)bash
# Navigate to project directory cd C:\Users\delye\.claude\skills\warranty-engineer-agent # Generate sample invoice PDF python scripts/generate_invoice_pdf.py # Parse invoice (no browser needed) python scripts/main.py invoices/sample_invoice_001.pdf --parse-only # Run LIVE Rockwell Collins portal demo (RECOMMENDED) # Chrome opens on RIGHT half of screen for split-screen recording python scripts/demo_rockwell_live.py # Run local demo (offline, opens Chrome with local portal) python scripts/demo_run.py
text
Invoice: INV-2026-001234 | Date: 2026-02-10
Aircraft: N12345 | PC-12/47E | MSN 1845
Failed Part: P/N 4077690-901 — Digital Flight Control Computer
Serial: DFCC-45678 → Replacement: DFCC-56789
Hours: 487.5 | Warranty: ELIGIBLE
Labor: 4.5 hrs @ $125/hr | Freight: $156.00
Grand Total: $1,391.17Editorial read
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Warranty Claim Agent - Aviation Invoice Automation Skill Warranty Claim Agent - Aviation Invoice Automation Skill Purpose Automate warranty claim submission for aviation maintenance invoices by extracting data from PDF invoices and filling warranty portal forms automatically. Primary target: Collins Aerospace (Rockwell Collins) warranty portal, but designed to be adaptable to other vendors (Honeywell, Pratt & Whitney, etc.). Project Goal Build an agent that reduces warrant
Automate warranty claim submission for aviation maintenance invoices by extracting data from PDF invoices and filling warranty portal forms automatically. Primary target: Collins Aerospace (Rockwell Collins) warranty portal, but designed to be adaptable to other vendors (Honeywell, Pratt & Whitney, etc.).
Build an agent that reduces warranty claim processing time from 60+ minutes to ~2 minutes by automating:
warranty-engineer-agent/
├── SKILL.md # This file (project spec + status + observations)
├── WARRANTY_CLAIM_AGENT_SKILL.md # Original project spec (backup)
├── README.md # Project documentation
├── DEMO_SCRIPT.md # LinkedIn video recording script (6-act structure)
├── requirements.txt # Python dependencies
├── invoices/
│ └── sample_invoice_001.pdf # Generated (3 pages, professional layout)
├── extracted_data/
│ ├── sample_invoice_001_data.json # Parsed and verified
│ └── rockwell_field_map.json # Auto-discovered DDM field map from live portal
├── screenshots/ # Demo screenshots (11 screenshots per run)
├── config/
│ └── field_mappings.json # Invoice -> portal field mappings
└── scripts/
├── generate_invoice_pdf.py # Phase 1: ReportLab PDF generator
├── invoice_parser.py # Phase 2: pdfplumber + regex parser
├── portal_navigator.py # Phase 3: Selenium browser automation
├── form_filler.py # Phase 4: Configurable form filler
├── main.py # Phase 5: Main orchestrator (--parse-only works)
├── demo_portal.html # Local demo portal (Collins-style warranty form)
├── demo_run.py # Demo script for local portal
├── demo_collins_portal.py # Old Collins portal demo (deprecated)
└── demo_rockwell_live.py # LIVE Rockwell Collins portal demo (WORKING)
reportlab — PDF generationpdfplumber — PDF text extractionselenium — Browser automationwebdriver-manager — Chrome WebDriver managementgenerate_invoice_pdf.py creates professional 3-page MRO invoiceinvoice_parser.py extracts all data with 95%+ accuracy:
main.py --parse-only runs full parse pipeline end-to-enddemo_portal.html is a Collins-style HTML warranty form with:
demo_run.py opens the local portal and auto-fills with animationdemo_rockwell_live.py line ~584: replaced --start-maximized with:
--window-position=640,0 and --window-size=640,720When manually filling the Collins portal form via Claude in Chrome MCP tools:
What worked:
ref_612 (Accept necessary cookies only)Date Picker Issue (KNOWN BUG — USE FOR DEMO FAILURE SCENE):
02/08/2026 directly into date fields via browser automation does NOT trigger Liferay validationinput[ref="inputElement"] shows the typed value but the hidden input stays emptynativeInputValueSetter + dispatching input/change/blur events sets the display value but Liferay DDM may still not register it in the hidden fieldbutton with "Select date from a Datepicker" text), navigate month/year, click day$$DateOfFailure$hash$0$$en_US pattern name), set its value to YYYY-MM-DD format, dispatch change eventThis date bug is the PLANNED FAILURE for the LinkedIn demo video — see DEMO_SCRIPT.md Act 4.
C:\Users\delye\Downloads\warranty-claim-agent-demo.gif (7.2 MB)demo_rockwell_live.py — FULLY WORKING on live Rockwell Collins portal
Correct URL: https://portal.rockwellcollins.com/web/support-self-service/business-and-regional-claim-form
/warranty/-/warranty_claim/business-regional) — that lands on a different pagePortal Technology: Liferay DDM (Dynamic Data Mapping) form
data-field-name attribute (e.g., DealerNameOEMName, ACType)$$FieldName$hash$0$$en_US patternbutton.lfr-ddm-form-pagination-next) to advanceCookie Banner: Uses <a> tags (NOT <button>) with onclick handlers
a.gdpr-btn.btn-accept or a[onclick*='acceptNecessaryCookies']visibility: collapse — use JS click fallbackPage 0 Fields (8): DealerNameOEMName, DealerNumberCustomerNumber, City, State, Country, SubmitterName, Email, Phone
Page 1 Fields (21): ReferenceClaimNumberNonCollinsID, WorkOrderInvoiceReference, CASPContract, CustomerName, City1, State1, Country1, ACType, ACSerial, ACTail, ManufacturerSPart, OldRemovedSerial, NewInstalledSerial, LaborHours, LaborRate, FreightCASPOnly, DateOfFailure (date picker), DateOfRepair (date picker), Complaint (textarea), CorrectiveActionPartsUsed (textarea), Notes (textarea)
Date Fields: Use ref="inputElement" attribute — type value directly into the visible input, then click body to close datepicker. SEE DATE PICKER ISSUE ABOVE for known validation bug.
Special Characters Warning: Portal shows "Please avoid using special characters" — script uses re.sub(r'[^\w\s.,;:()/#\-]', '', text) to sanitize
# Navigate to project directory
cd C:\Users\delye\.claude\skills\warranty-engineer-agent
# Generate sample invoice PDF
python scripts/generate_invoice_pdf.py
# Parse invoice (no browser needed)
python scripts/main.py invoices/sample_invoice_001.pdf --parse-only
# Run LIVE Rockwell Collins portal demo (RECOMMENDED)
# Chrome opens on RIGHT half of screen for split-screen recording
python scripts/demo_rockwell_live.py
# Run local demo (offline, opens Chrome with local portal)
python scripts/demo_run.py
DEMO_SCRIPT.mdFull 6-act recording script saved in project root. Summary:
| Act | Duration | What Happens | |-----|----------|-------------| | 1. Intro | 30s | User asks Claude to check invoice & file claim | | 2. Parse | 30-45s | Claude extracts data, user shows PDF on right side | | 3. Portal Fill | 60-90s | Agent auto-fills 29 fields on LIVE Collins portal | | 4. The Failure | 30s | User spots date picker validation error | | 5. The Learn | 30-45s | User tells Claude to update skill knowledge — agent improves | | 6. Closing | 15s | Show metrics: 60 min → 2 min, 97% reduction |
The date picker validation error is REAL and REPRODUCIBLE:
When the user types the keyword "SKYLINE" in chat, Claude must immediately start the full demo workflow. No questions asked — just go.
SKYLINEStep 1 — Acknowledge (instant, 1 line):
"Checking invoice INV-2026-001234... Extracting warranty data from 3-page MRO invoice."
Step 2 — Parse Invoice (show in terminal):
extracted_data/sample_invoice_001_data.jsonInvoice: INV-2026-001234 | Date: 2026-02-10
Aircraft: N12345 | PC-12/47E | MSN 1845
Failed Part: P/N 4077690-901 — Digital Flight Control Computer
Serial: DFCC-45678 → Replacement: DFCC-56789
Hours: 487.5 | Warranty: ELIGIBLE
Labor: 4.5 hrs @ $125/hr | Freight: $156.00
Grand Total: $1,391.17
Step 3 — Open Collins Portal & Fill Form (browser automation):
python scripts/demo_rockwell_live.py from the skill base directoryStep 4 — Report Results:
"Done. 29 fields filled, 0 failures. Check the date picker fields — they may show validation errors (known Liferay DDM bug)."
Invoice: INV-2026-001234 (Feb 10, 2026) Customer: Regional Air Services LLC Aircraft: N12345, PC-12/47E, MSN 1845 Failed Parts:
invoice_parser.py)pdfplumber for text extractionextracted_data/portal_navigator.py)form_filler.py)config/field_mappings.jsondemo_rockwell_live.py — PRIMARY DEMO — LIVE Rockwell Collins portal:
<a> tags)data-field-name attributescreenshots/demo_portal.html — Local Collins-style HTML form (offline fallback)demo_run.py — Simpler demo for local portal onlySmall aviation operators and MROs spend significant time manually transcribing invoice data into vendor warranty portals. Each claim requires:
This agent automates the entire workflow.
Emin Delyev - Aviation AMOS Expert @ Lufthansa
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/agentic-aviation-warranty-engineer-agent/snapshot"
curl -s "https://xpersona.co/api/v1/agents/agentic-aviation-warranty-engineer-agent/contract"
curl -s "https://xpersona.co/api/v1/agents/agentic-aviation-warranty-engineer-agent/trust"
Operational fit
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/agentic-aviation-warranty-engineer-agent/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/agentic-aviation-warranty-engineer-agent/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/agentic-aviation-warranty-engineer-agent/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/agentic-aviation-warranty-engineer-agent/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/agentic-aviation-warranty-engineer-agent/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/agentic-aviation-warranty-engineer-agent/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T06:24:06.684Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Agentic Aviation",
"href": "https://github.com/agentic-aviation/Warranty-Engineer-Agent",
"sourceUrl": "https://github.com/agentic-aviation/Warranty-Engineer-Agent",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/agentic-aviation-warranty-engineer-agent/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/agentic-aviation-warranty-engineer-agent/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/agentic-aviation-warranty-engineer-agent/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/agentic-aviation-warranty-engineer-agent/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to Warranty-Engineer-Agent and adjacent AI workflows.