Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@appifex/report

Package Overview
Dependencies
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@appifex/report

Pipeline run reporting for the appifex-dtc toolkit

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
7
40%
Maintainers
2
Weekly downloads
 
Created
Source

@appifex/report

Generate final pipeline reports with test results, fix history, and token usage.

Usage

import { buildReport, formatMarkdown, formatJson } from '@appifex/report'

const report = buildReport({
  projectName: 'Pet Adoption App',
  platforms: ['swiftui', 'kotlin-compose'],
  designIterations: 2,
  validation: { swiftui: swiftValidation, 'kotlin-compose': ktValidation },
  fix: { swiftui: swiftFix },
  tokenUsage: { design: 5000, codegen: 15000, fix: 3400 },
  totalDuration: 120000,
})

// Output as Markdown
console.log(formatMarkdown(report))

// Output as JSON
fs.writeFileSync('report.json', formatJson(report))

Report contents

  • Project summary (total tests, pass rate, fix attempts, tokens)
  • Per-platform breakdown (UI tests, unit tests, fix results)
  • Token usage by phase

Keywords

appifex

FAQs

Package last updated on 20 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts