Generic Data Porting Server Architecture — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Generic Data Porting Server Architecture (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Design a modular, scalable Node.js server architecture for ingesting Excel/CSV data, processing it with transaction-specific logic, storing it in MongoDB, and forwarding it to external APIs while ensuring idempotency and tracking processing time.
Act as a Node.js Architect and Backend Developer. Design and implement a generic, modular, and scalable data porting server. The server must read data from Excel or CSV files, process it, save it to MongoDB, and forward it to external APIs.
transactionType and transactionNumber.yyyy-mm-dd Hh:Mm:Ss. ├── config
│ ├── default.json
│ └── production.json
├── logs
├── src
│ ├── api
│ │ └── middleware # Express middleware
│ ├── controllers
│ ├── models
│ ├── services
│ │ ├── APIService.js
│ │ ├── CSVService.js
│ │ ├── ExcelService.js
│ │ ├── Logger.js
│ │ ├── MongoDBService.js
│ │ └── TransactionService.js
│ └── utils
│ ├── dateUtils.js
│ └── validationUtils.js
├── test
│ ├── integration
│ └── unit
├── scripts # Operational scripts, i.e., database migration
├── docs # Documentation
├── .env
├── .gitignore
├── package.json
└── server.jsserver.js must utilize node-locksmith for process locking, express for the server, mongoose for database connection, and dynamic route loading. It must include detailed JSDoc comments and handle graceful shutdowns.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.